Category: Programming

Drupal:: How to Add User Pictures

Unlike most basic things in drupal, adding a user pictures to nodes like the forum, is not such an easy intuitive task. So after looking around i gathered this: To

Close a Php page by IP

If you need to only show a php page to a certain ip, a quick dirty way would be : if ($_SERVER[‘REMOTE_ADDR’] != ‘82.76.167.52’) { exit(); }

(Ogre) Embedding Python in C++ Example

I decided that I want to find a good way to put Python in my C++ Ogre applications. Now, one method of doing this would be to write an interface

Psyco and PyPy

After working with an issue in PyOgre I decided to take a closer look at Psyco (the Python JITer). Taking a look at how Psyco works is like learning how