Monthly Archives: January 2014

A trick to show wide screen layout if you’re using sharepoint 2010

1. In IE, go to your list. 2. Save it as a favorite link. 3. Edit the favorite link properties to replace the url with the javascript code below and save it: javascript:(function(){document.getElementById(‘maincontent’).style.width = ‘100%’;document.getElementById(‘s4-mytitlerow’).style.display = ‘none’;document.getElementById(‘s4-leftpanel’).style.display=’none’;document.getElementById(‘MSO_ContentTable’).className = ”;})() 4. … Continue reading

Posted in Uncategorized | Leave a comment

How to install node on Ubuntu

Follow this steps to install node on Ubuntu: git clone git://github.com/ry/node.git cd node ./configure make sudo make install echo ‘PATH=$PATH:$HOME/local/bin’ >> $HOME/.bashrc source ~/.bashrc

Posted in Uncategorized | Leave a comment

How to clear firefox 26 cache on Linux?

You need to do this: Ctrl + F5 to override cache. Clear Cache button on firefox preferrences is not working.

Posted in Uncategorized | Leave a comment