Lerouxdelens.com

Web engineer & Startup enthusiast

iMac SD card booting : About the SD and SDXC card slot

Can I install Mac OS X on an SD storage device and use it as a startup volume?

Yes. Change the default partition table to GUID using Disk Utility, and format the card to use the Mac OS Extended file format to do so.

1 month ago -

yongfook: Design is Horseshit!

yongfook:

In direct response to: http://designerfund.com/infographic

I’ve created products / services in the past that have garnered praise for their design. I love good design in all forms - copywriting in particular fascinates me. I’ve never called myself a designer.

Here’s my pitch. This…

1 month ago - 202 -
2011 october 5th, Steve Jobs passed away. RIP

2011 october 5th, Steve Jobs passed away. RIP

bonjourlesgeeks:

Geek ou Geeker est utilisé comme verbe. En voici une belle définition.

bonjourlesgeeks:

Geek ou Geeker est utilisé comme verbe. En voici une belle définition.

sending HTTP header with PHP : examples

5 months ago -

Lion doesn’t like my WiFi

MacOSX Lion do not like my WiFi

This summer, like many people, i upgraded to MacOSX Lion. I started with my laptop and everything was fine, no bugs, so i decided to upgrade my wife’s iMac. After a while she started complaining about the WiFi. It always get disconnected and have troubles to find the network again. here are a list of posts talking about this issue and trying to bring a solution :

The first link (on thatdanny.com) point out that it’s most probably a problem of latency that cause the disconnect. I have to try it but, a screen ping my-server-ip should fix temporarly the problem. Let me know if you have such a problem and how you fixed it ;-)

Usefull ASCII symbols

This is probably one of the funniest way to customize your social’s status. do not overuse [-ิ_•ิ]

5 months ago -

Find all large files on a Linux machine

Finds all files over 20,000KB (roughly 20MB) in size and presents their names and size in a human readable format:

find / -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'

Big files

6 months ago - 9 -

How to handle AJAX authentication redirects in Symfony2

The scenario: 

User logs in successfully, idles for X number of minutes.
User returns and clicks on something that sends an AJAX request.
The security component automatically logs out the user because X > logout threshold and redirects to the login page.
The login page is rendered inside of the AJAX target container.

7 months ago -

unix command : find a string in a file

find . -name “*” -exec grep -l “somestring” {} \;

source : http://www.unix.com/unix-dummies-questions-answers/24563-find-file-does-exist-under-unix.html