Posted on June 9, 2009 by Guillaume
I’ve been quite busy those past weeks, working on some great projects and cool devices (Stay tune one will be available in all high tech shops soon).
Recently, I faced a very simple Flex problem. I had to work with a Textarea but I needed it to be autoresizable, and ALSO I had be able to [...]
Filed under: Dev, Flex | Tagged: Adobe, AdvancedTextarea, autoresize, Component, Flex, Textarea | Leave a Comment »
Posted on October 9, 2008 by Guillaume
I’m pretty sure you already heard about pixel bender, if not check Adobe’s or Lee Brimelow’s website for awsome tutorials.
Today I gonna share with you, my first pixel bender code ever, which is a bright pass filter. This filter set the dark pixels to black according a threshold value for the ‘darkness’.
<languageVersion : 1.0;>
kernel BrightPassFilter
< namespace [...]
Filed under: Dev, Pixel Bender | Tagged: Adobe, bright pass, filter, pixel bender | Leave a Comment »
Posted on July 17, 2008 by Guillaume
[a part II of this post is available here]
It’s been a long long time since my last post but I recently move to my new apartment and it ISP forgot to move my internet access…It was a bit annoying at the beginning since I could not work on the version of NURVE, but I had [...]
Filed under: Dev, Flex | Tagged: Component, Flex, Skin, Slider, UI | 25 Comments »
Posted on June 27, 2008 by Guillaume
I received several emails about my phpWebRequest php class, asking how we can create HTTPs POST request. Before I answer this I think it’s important to understant the HTTP authentication mechanism.
There are 2 kinds of authentication: Basic and Digest. I gonna describe only Basic since it’s very is to use in the phpWebRequest class.
Basic is the [...]
Filed under: Dev, php | Tagged: Authentication, Basic, HTTP, php, phpWebRequest, Request | 1 Comment »
Posted on June 19, 2008 by Guillaume
I was about cleansing my old blog archives, and I discovered a post that I never publish. The post was about a hack used to increase the number of visit of an web page. 2 years ago, friends of mine were playing an online game which consisted in forwarding more people as they can, on a [...]
Filed under: Dev, Perl | Tagged: cloaked connection, IEAutomation, Perl, traffic | Leave a Comment »
Posted on June 18, 2008 by Guillaume
One of my current professional dev project is to write an ETL from scratch using a lot of technologies. I had to play a lot with T-SQL (Transact-SQL) which was quite interesting to work with.
The code I will share today (not about RIA at all) is a cool trick when using sp_executesql. In some case, when [...]
Filed under: Dev, SQL | Tagged: ETL, Microsoft, multi OUTPUT, T-SQL | Leave a Comment »
Posted on June 13, 2008 by Guillaume
I’m pretty excited today since I’m releasing the first public alpha version of a project I’m working on, based on Adobe AIR/FLEX and Papervision3D , called NURVE.
NURVE is 3D, film trailers browser with an iTunes coverflow like navigation experience. NURVE allows you to browse the newest films trailers and watch them in HD quality on any, internet [...]
Filed under: Dev, Flex | Tagged: Adobe, AIR, Flex, NURVE, Papervision3D | 2 Comments »
Posted on June 12, 2008 by Guillaume
This post is actually a follow-up to my last one called http post streaming where I tried to create a php class that provides a way to send a HTTP POST request. I recoded the class and added new features (e.g. a way to read the body of an HTTP request, a dynamic way of [...]
Filed under: Dev, php | Tagged: HTTP, php, POST, socket, Stream, webRequest | 7 Comments »
Posted on June 10, 2008 by Guillaume
Yesterday I’ve been asked by a friend how we can easily http stream data from php. That was a really intersting question because it can be very useful in some case (e.g. when working with EDI). So I just made him a proof of concept.
I used socket to generate a POST HTTP request
<?php
class PostRequest{
//SERVER
var $address;
var [...]
Filed under: Dev, php | Tagged: php, POST, socket, Stream, webRequest | 2 Comments »