Monthly Archives: February 2010

Facebook Uses HipHop To Transform PHP to C++

On the Facebook Developers site, Haiping Zhao writes about how Facebook uses HipHop to transform PHP code to C++ and compiles them using g++. In his article titled, HipHop for PHP: Move Fast, he mentions: HipHop for PHP isn’t technically … Continue reading

Posted in Applications | Tagged , , | Leave a comment

How To View Column Names For A Table In T-SQL

SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ‘<TABLE NAME>’ ORDER BY ORDINAL_POSITION    

Posted in Programming | Tagged | Leave a comment