All posts by PF
hotjar – All-in-one Analytics and Feedback
All-in-one Analytics and Feedback –
at a fraction of the cost.
See how visitors are really using your website, collect feedback and turn more visitors into customers.



Andrew Technique – Fresh (Tomy DeClerque Remix)
The Sun (Kamisshake Mix) Fuzzy Hair & Alex D’elia
It says techno but….. it’s smooth! 🙂
ffmpeg, convert to mp4, ogv and webm
ffmpeg -i source_path/movie.mpg -c:v libx264 -vsync 2 -strict -2 dest_path/movie.mp4
ffmpeg -i source_path/movie.mpg -vcodec libtheora -q:v 10 -codec:a libvorbis -q:a 5 -vsync 2 -threads 0 dest_path/movie.ogv
ffmpeg -i source_/movie.mpg -acodec libvorbis -aq 5 -ac 2 -qmax 25 -threads 2 dest_path/movie.webm
PREMIERE: WhoMadeWho – Dreams (The Hacker Remix)
gmail SMTP server and those kinda sh*ts
To send emails using Gmail:
SMTP Host: smtp.gmail.com
SMTP Port: 587
SSL Protocol: OFF
TLS Protocol: ON
SMTP Username: (your Gmail username – email -)
SMTP Password: (your Gmail password)
To receive mail from Gmail
POP3 Host: pop.gmail.com
POP3 Port: 995
TLS Protocol: ON
POP3 Username: (your Gmail username – email -)
POP3 Password: (your Gmail password)
Booka Shade – Charlotte (Dubfire Remix)
As listen on Wally Lopez – La Factoria 27-06-2008.
Ten Walls – Walking With Elephants [Official Video]
header(‘HTTP/1.0 200 OK’) not working!
So, I had to force a script to set a 200 OK … otherwise Apache would set it a 404… due to RewriteEngine On bla bla bla…
So…
header('HTTP/1.0 200 OK')
Wasn’t working… but *everyone* says to use it that way!… ok…
I’v find out that the PHP version on my client server has a bug…
http://bugs.php.net/27026
So I had to set 299 OK.
This might not be the best solution I know…