Monthly Archives: October 2013

iPython Notebook on MACBOOK: Solved

the Launcher Install by Anaconda does not launch ipython notebook. this due to locale issues on MAC OS X. hence the fix is change the locale before launching notebook

> export LAN=en_US.UTF-8
> export LC_ALL=en_US.UTF-8
> ipython notebook

Its not easy to remember this all the time, hence step 3~5 and because I had issues while installing and the following steps 1 & 2 make life a bit easy
Continue reading

WordPress Theme Arjuna-X Fixed after Upgrading to 3.5

WordPress 3.5 broke the Arjun-X Theme. The developer is not supporting anymore, hence it was left to the user adopting the theme to fix it. Test and proved method is detailed in post by Samuel Wood (Otto) Tech Ninja post.

The Issue is with JQuery Custom File in the theme. WordPress 3.5 has included the correct copies of JQuery-UI, hence the custom file “jquery-ui-1.8.10.custom.min.js is not required hence delete it and ref to this file in “function.php” hs to edit to as follows

// comment this line 
// wp_enqueue_script('arjunaJQueryMinJS', get_template_directory_uri() .'/lib/jquery-ui-1.8.10.custom.min.js');
// and add this line
wp_enqueue_script('jquery-ui-draggable');

Python Script to Reboot the LinkSys EA3500 router

this is followup of How to SSH on LINKSYS ROUTER with USB Port, I shall now detail the Python Script which is running on my Synology NAS 712 connected to the LINKSYS EA3500 router.

pls read the post Rebooting the ADSL Router when it cannot Access Internet to ready the NAS for running the python script. module required is “pexpect”.

Continue reading

How to SSH on LINKSYS ROUTER with USB Port

Recently had issues of Hanging on the LinkSys EA3500 router.. going to the router and doing power reset was not a option which I fancied. LinkSys Insist that using the smart wifi firmware and using the app on the iPhone, I would reset the router.. but when the router is hanged ie it was no longer routing to the WAN, there is no way the app worked.

I either had to buy a new router and gift this EA3500 to a good friend or find a work around to access the router through Telnet or SSH but…

Continue reading