Category Archives: Programming

Javascript Show Caller Function

arguments.callee.caller.toString()

Posted in Programming | Tagged | Leave a comment

Add custom directory to Python module search path

Ubuntu: Add .pth file to /usr/local/lib/python2.6/dist-packages/ /usr/local/lib/python2.6/dist-packages/workarea.python.modules.pth .pth file contains the path to your modules /home/raymond/workarea/python/modules Modifying Python’s Search Path

Posted in Programming, python | Tagged , , | Leave a comment

How to use .htaccess to change default index page

DirectoryIndex alternative-default-home-page.php

Posted in Apache2, Linux Administration, Programming | Tagged | Leave a comment

How to create reverse traceroute page on your website using PHP

<?php $result = exec(‘traceroute ‘ . $_SERVER["REMOTE_ADDR"], $lines); echo ‘<h1>Your IP is ‘ . $_SERVER["REMOTE_ADDR"] . ‘</h1>’; echo ‘<pre>’; foreach ($lines as $n => $line) { if ($n) echo ‘<br />’; echo $line; } echo ‘</pre>’; echo ‘<p>-end-</p>’; Here’s how … Continue reading

Posted in Linux Administration, PHP, Programming | Tagged , , | Leave a comment

How to Create Database and Add User To It

Here are the SQL commands: create database newdb; grant CREATE,INSERT,DELETE,UPDATE,SELECT on newdb.* to newuser@localhost; SET PASSWORD FOR ‘newuser’@'localhost’ = password(‘newuserpass’); – or – SET PASSWORD FOR ‘newuser’@'localhost’ = old_password(‘newuserpass’); flush privileges;

Posted in Database, MySQL, Programming, SQL | Tagged , | Leave a comment

How to remove .svn folder

Windows: Save the following to the folder to clean to a filename with a .cmd extension (cleansvn.cmd).  After that issue the command, eg., C:\www>cleansvn for /f “tokens=* delims=” %%i in (‘dir /s /b /a:d *svn’) do ( rd /s /q … Continue reading

Posted in Freelancing, Linux, Programming | Tagged | Leave a comment

Tired of entering you svn password everytime?

I have set up svn repositories on dedicated Linux server of my clients but the constant typing of svn password everytime I access the repository makes life for a developer less livable. Until I found the solution… So here it … Continue reading

Posted in Freelancing, Programming, subversion | Tagged , , , | 7 Comments