daemonpe.blogspot.com
daemon.pe: February 2010
http://daemonpe.blogspot.com/2010_02_01_archive.html
Tuesday, February 16, 2010. HipHop for PHP: Move Fast php BINARIES. Http:/ developers.facebook.com/news.php? One night at a Hackathon a few years ago (see Prime Time Hack. Finding new ways to improve PHP performance isn't a new concept. At run time the Zend Engine turns your PHP source into opcodes which are then run through the Zend Virtual Machine. Open source projects such as APC. Cache this output and are used by the majority of PHP powered websites. There's also Zend Server. Compile PHP to C, Quercus.
rojulman.blogspot.com
Perjalanan Rojulman: November 2011
http://rojulman.blogspot.com/2011_11_01_archive.html
Thursday, November 17, 2011. Android : Resep Ibunda. Aplikasi Android ResepIbunda adalah contoh aplikasi yang menggunakan database SQLite, lengkap tutorialnya ada di majalah info linux edisi November dan Desember 2011. Berikut ini screenshoot aplikasinya :. Android : Konverter Suhu Infolinux September 2011. Edisi September 2011 membahas tentang Daur hidup aplikasi android, dengan contoh program konverter suhu. Public interface KonverterSatuan {. Public float konversi(float input);. String asal, tujuan ;.
phpexperts.blogspot.com
PHP EXPERTS: Maio 2007
http://phpexperts.blogspot.com/2007_05_01_archive.html
VISIT OUR WEB SITE. Sábado, 26 de maio de 2007. Extending classes to develop faster with PHP-GTK. Sometimes we need to have some control on the code, in way to implement some new features. Extending classes is a nice trick to build personalized and complex applications. Programming oriented to objects (OOP), ebables a lot of possibilities . Extend an class is a technic that allows to get all properties of main class and add some new ones. On PHP you do it using the reserved word extends. Driver backup ut...
rojulman.blogspot.com
Perjalanan Rojulman: Yes It Is ..
http://rojulman.blogspot.com/2011/11/yes-it-is.html
Saturday, November 05, 2011. Yes It Is . Sejak awal tahun 2010 saya mulai intens ngoprek framework YII (Yes It Is), seperti biasa untuk belajar sesuatu yang baru dalam pemrograman agar cepat proses upgrade knowledge dari software ini tertanam di brainware kita adalah dengan membuat projek ( syukur syukur projek ada yang mendanai . dan dapat profit ). Ternyata framework Yii ini adalah memang framework yang saya cari . untuk menggantikan framework Site Manager. Berikut alasan saya :. Android : Resep Ibunda.
elder-n00b.org
Ramblings of an elder-n00b: 02.09
http://www.elder-n00b.org/2009_02_01_archive.html
Ramblings of an elder-n00b. Irrelevant techno-babble from an irreverent geek. IP Renumbering w/PHP and Compilers. A viewer question led to Darren and Matt discussing renumbering a whole subnet of Windows machines using the netsh command in a script, but how would you specify an IP for each machine with only one script? PHP to the rescue, because it's not just for web pages anymore. On this week's episode of Hak5. I show off a script to do just that, as well as two different PHP runtime compilers. Library...
pitrasacha.blogspot.com
pitrasacha adytia blog: May 2007
http://pitrasacha.blogspot.com/2007_05_01_archive.html
Thursday, May 17, 2007. Dot project untuk manajemen proyek. Satu lagi solusi open sources bagi UKM yang ingin memonitoring sebuah proyek, dan tidak sangup membeli microsof project. maka silahakan download dotproject. Manajemen proyek dengan dot project. Ilustrasi nyata dari dot project :. Misal kita menerima project membuat sistem informasi sekolah :. Berikut petikan salah satu testimonial dot project :. In gratitude for the work done and how much it is helping us, we have added dotProject to the list of...
hak5.org
Episode 502 — Linux RC Rovers, PHP Compiled and Napera | Technolust since 2005
http://www.hak5.org/episodes/episode-502
Episode 502 — Linux RC Rovers, PHP Compiled and Napera. Share this with your friends via:. HakHouse Rover – Web Enabling a RC Tank. There comes a time in every geeks life when building a web enabled, crowd sourced, remote controlled vehicle is an imperative. For us that time is now. Next we connect the leads with a Phidget Interface Kit. This little board talks to our PC via USB and has programming APIs for C/C , Python and Java. If you’d like to build one yourself or contribute ideas, code or otherwise ...
wuduoyi.com
HHVM 是如何提升 PHP 性能的? - wuduoyi
http://wuduoyi.com/note/hhvm
HHVM 是如何提升 PHP 性能的. HHVM 是 Facebook 开发的高性能 PHP 虚拟机,宣称比官方的快9倍,我很好奇,于是抽空简单了解了一下,并整理出这篇文章,希望能回答清楚两方面的问题. 它为什么比官方的 PHP 快很多 到底是如何优化的. 在讨论 HHVM 实现原理前,我们先设身处地想想 假设你有个 PHP 写的网站遇到了性能问题,经分析后发现很大一部分资源就耗在 PHP 上,这时你会怎么优化 PHP 性能. 方案2,通过 RPC 将功能分离出来用其它语言实现,让 PHP 做更少的事情,比如 Twitter 就将大量业务逻辑放到了 Scala 中,前端的 Rails 只负责展现。 方案3,写 PHP 扩展,在性能瓶颈地方换 C/C。 几乎不可行,十年前 Joel 就 拿 Netscape 的例子警告过. 你将放弃是多年的经验积累,尤其是像 Facebook 这种业务逻辑复杂的产品,PHP 代码实在太多了,据称有2千万行 引用自 [PHP on the Metal with HHVM] ,修改起来的成本恐怕比写个虚拟机还大,而且对于一个上千人的团队,从头开始学习也是不可接受的。