Redirect old url to a new url RewriteEngine On RewriteRule /oldurl /newurl [R=301,L] Canonical domain rewriting RewriteEngine On RewriteCond %{HTTP_HOST} ^domain\.com$ [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L] See also Apache module mod_rewrite documentation Permanent redirect with nginx Permanent redirect with lighttpd
My Laboratory game
My friend at WeHeartProjects just released his first iOS game, My laboratory. Try it!
Ruby Flickr Uploader
To ease the process of uploading lots of pictures on Flickr, I just wrote a small (quick and dirty) ruby script that lets you upload, add to a set and tag pictures. https://github.com/CharlyBr/ruby-flickr-uploader try it and fork it!
About Instagram
Some interesting links about Instagram: Instagram Engineering What Powers Instagram: Hundreds of Instances, Dozens of Technologies The Instagram Architecture Facebook Bought For A Cool Billion Dollars Mike Krieger, Instagram at the Airbnb tech talk, on Scaling Instagram Secrets to Lightning Fast Mobile Design 8 Things Instagram Did Right
Chase Jarvis TECH: Complete Workflow for Photo and Video
Great video from Chase Jarvis on his complete workflow from shooting to publishing.
Pagination, Vmem, Page fault
Great talk on how OS manage memory, OS mechanisms explained, must see for your culture 🙂
About Android fragmentation
An interesting article about Android fragmentation and supporting the wide range of hardware and os versions. 99.9% of support emails are complaining their device isn’t supported. We currently support 707 devices. Mindblowing. — Natalia Luckyanova (@nattylux) March 27, 2012
Start Developing iOS Apps Today
Apple published a great doc for newcomers. It’s also a good source of links and articles for all the basics in iOS, from enrolling as developer to publish your first app. Find all related docs links below: Tutorial: Your first iOS app Manage your workflow in XCode Write Objective-C code Acquire basic programming skills Survey …
Ubuntu 11.10: setting up Apache2 and SSL with self-signed certificate
Create a self-signed certificate: $ make-ssl-cert generate-default-snakeoil –force-overwrite It creates the following files: /etc/ssl/private/ssl-cert-snakeoil.key /etc/ssl/certs/ssl-cert-snakeoil.pem Activate Apache SSL module: $ a2enmod ssl Activate Apache default ssl virtual host: $ a2ensite default-ssl Restart Apache: /etc/init.d/apache2 restart You should now see the following page on your webserver: It works! This is the default web page for this …
How I upgraded my iPhone 3GS from 3.x to 4.x
When I tried to upgrade my phone 3GS 3.x to a 4.x firmware found on osxdaily.com, I got the famous “this device isn’t eligible for the requested build”. My jailbroken device was on a 3.1.3 firmware with Cydia installed. After trying different 4.x firmwares, I googled this error message and found an interesting thread here. …