Blog Rizauddin
And He found you lost and guided [you]. [93:7]
Pages
Home
Python
LaTeX
Linux
Windows
Travelog
About
Friday, October 3, 2014
Extract Initials from Names using Python
>>> name = "Rizauddin Saian"
>>> ' '.join([n[0] + "." for n in name.split()])
'R. S.'
Friday, September 26, 2014
[nltk_data] Error loading all: HTTP Error 401: Authorization Required
If you get the following error, when downloading the corpus for NLTK,
[nltk_data] Error loading all: HTTP Error 401: Authorization Required
you need to update the current data server setting in "/usr/lib/python2.7/dist-packages/nltk/downloader.py" file on line 370 from
DEFAULT_URL = 'http://nltk.googlecode.com/svn/trunk/nltk_data/index.xml'
to
DEFAULT_URL = "http://nltk.github.com/nltk_data/"
Wednesday, March 19, 2014
How to hide the header of an embedded Google Drive (Docs) Spreadsheet as html
Replace
&widget=true
with
&chrome=false
Thursday, March 13, 2014
Ubuntu: How to enable spellchecker in LyX
Open the Terminal and install Enchant.
sudo apt-get install enchant
Open LyX and select Tools > Preferences > Language Settings > Spellchecker
Select Enchant for Spellchecker Engine.
Click on Apply, Save and finally Close.
Wednesday, March 12, 2014
LaTeX: How to add vertical bar with evaluation or limit
$$\frac{\partial f}{\partial x\partial y}\bigg\vert_{x=y=0}$$
Ubuntu: Missing Date and Time (Clock) in the Indicator Bar
sudo apt-get install indicator-datetime
sudo dpkg-reconfigure --frontend noninteractive tzdata
killall unity-panel-service
Monday, February 24, 2014
Disable Blogger Navbar
Follow this steps to disable the Blogger Navbar:
Click on Layout link.
Look for the Navbar text and click on the Edit link.
When the pop-up window appears, scroll down and select Off, then click on Save button.
Finally, click on Save arrangement button.
Newer Posts
Older Posts
Home
Subscribe to:
Comments ( Atom )