Monthly Archives: August 2010

Ubuntu Linux on Acer Aspire AO751h

Don’t use the Ubuntu Netbook Remix but the Desktop version. To fix the monitor resolution: https://wiki.ubuntu.com/HardwareSupportComponentsVideoCardsPoulsbo/ Wi-fi should work out of the box

Posted in Debian / Ubuntu / Kubuntu | Leave a comment

Process forking in PHP on Linux

Command Line with PHP _ Introduced with PHP 4.3 (2002-12-27) _ PHP packed with very useful functions: exec, shell_exec, passthru _ PEAR package Console_CommandLine to easily handle arguments and options _ You can do system administration and release management with … Continue reading

Posted in PHP, System Administration | Leave a comment

How to benchmark apache+php

This is to see whether you server is CPU-bound or RAM-bound. We have to stress it and see which one of those components gets saturated first. If that is the RAM, we can add easily more RAM. The amount of … Continue reading

Posted in Apache, PHP, System Administration | Leave a comment

Create video tutorial

_ recordmydesktop (CONTROL-C to stop) _ mencoder out.ogv -o out.avi -ovc lavc -oac pcm _ avidemux __ cut start __ cut end __ don’t crop the video __ video: mpeg4 (x264) __ format: AVI __ add subtitles (if any) __ … Continue reading

Posted in Business | Leave a comment

Linux command Line – copy a file from remote to local

Copy a file from a remote location to a local directory (for example to burn a backup on DVD): scp backups@server1:backup20100105 local/path

Posted in Linux Command Line | Leave a comment

Android – test application with different APIs

This is to change the device used by the emulator Run button > its menu > Run configurations > Target tab This is to change the actual API used for the application: Menu > Project > Properties > Android >

Posted in Android | Leave a comment

How to make a transparent background/selection on an image using GIMP

http://geekswithblogs.net/TimH/archive/2006/03/20/72797.aspx

Posted in Web Design | Leave a comment

PHP Conference – London 2010 – Summary

Free notes from the PHP London Conference 2010  - http://www.phpconference.co.uk Lost art of Simplicity by Josh Holmes (working in Microsoft)   –  http://www.slideshare.net/joshholmes/the-lost-art-of-simplicity – http://www.joshholmes.com/blog/2009/04/29/TheLostArtOfSimplicity.aspx _ NIH (not invented here) syndrome   -  people want to develop everything internally _ The … Continue reading

Posted in PHP | Leave a comment

Checklist before releasing Android app

_ Cross-Android-API testing _ Securing Your Private Key _ Versioning Your Application http://developer.android.com/guide/publishing/versioning.html _Specifying Your Application’s System API Requirements http://developer.android.com/guide/topics/manifest/uses-sdk-element.html _ http://developer.android.com/guide/publishing/preparing.html _ http://developer.android.com/guide/publishing/publishing.html

Posted in Android | Leave a comment

PHP – Plurilize

This is a very good post: http://kuwamoto.org/2007/12/17/improved-pluralizing-in-php-actionscript-and-ror/ We have test it in the office and it works great!

Posted in PHP | Leave a comment