Mastering Algorithms with C By Kyle Loudon | Publisher: O'Reilly Media | Final Release Date: August 1999 | Pages: 562 There are many books on data structures and algorithms, including some with useful libraries of C functions. Mastering Algorithms with…
My Internship Interview Summary
I recently participated in some PHP internship interview. I summarize some common questions here. First, the interviewer will let you do some self-introduction, you can talk about your experience, what projects done before, then the interviewer is likely to continue…
Benchmark HHVM in FastCGI Mode
Wiki HipHop Virtual Machine (HHVM) is a process virtual machine based on just-in-time (JIT) compilation, serving as an execution engine for PHP and Hack programming languages. By using the principle of JIT compilation, executed PHP or Hack code is first…
Custom Emoji to WordPress
Replace default smilies of WordPress, insert following code in functions.php file of current theme. // Replace default smilies of WordPress add_filter('smilies_src','fa_smilies_src',1,10); function fa_smilies_src ($img_src, $img, $siteurl){ $img = rtrim($img, "gif"); return get_bloginfo('template_directory') . '/smilies/' . $img . 'png'; } Download…