<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4752597819281181319</id><updated>2011-04-21T15:24:17.833-07:00</updated><title type='text'>A nerdy blog??</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://nerdycalypso.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://nerdycalypso.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Robin</name><uri>http://www.blogger.com/profile/07040518505626745564</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>9</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4752597819281181319.post-1600944798373474494</id><published>2009-01-23T00:35:00.000-08:00</published><updated>2009-01-23T00:43:17.513-08:00</updated><title type='text'>SVN calypso!!!</title><content type='html'>My linux installation was not having svn and I wanted to checkout the webkit code to my system. The steps I did for it are-&lt;br /&gt;&lt;br /&gt;- Get the latest code from svn&lt;br /&gt;- Running the configure script asked for apache runntime(apr) and apr-util and errored out.&lt;br /&gt;- After downloading apr and apr-util and compiling it I run configure script of svn again. This time, there where some warnings regarding neon and berkeley db. Unfortunately I did pay much attention to it and proceeded with make and make install.&lt;br /&gt;&lt;br /&gt;Allas, everything went fine but the svn doesnot run!!!!! It errored out with the following message-&lt;br /&gt;                     &lt;span style="font-weight: bold; font-style: italic;"&gt;svn: Unrecognized URL scheme    &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;A bit of googling and I found that its caused because of the libraries that I skipped!! The neon and berkeley db. Getting those libraries and bingo, svn is working fine!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4752597819281181319-1600944798373474494?l=nerdycalypso.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nerdycalypso.blogspot.com/feeds/1600944798373474494/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4752597819281181319&amp;postID=1600944798373474494' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/1600944798373474494'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/1600944798373474494'/><link rel='alternate' type='text/html' href='http://nerdycalypso.blogspot.com/2009/01/svn-calypso.html' title='SVN calypso!!!'/><author><name>Robin</name><uri>http://www.blogger.com/profile/07040518505626745564</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4752597819281181319.post-2137760709644303530</id><published>2009-01-14T18:24:00.000-08:00</published><updated>2009-01-26T23:49:11.978-08:00</updated><title type='text'>Webkit calypso</title><content type='html'>AIM: Try out the webkit browser engine.&lt;br /&gt;&lt;br /&gt;STEPS:&lt;br /&gt;Read this link-&lt;br /&gt;http://webkit.org/&lt;br /&gt;It has very good information about how to get the code, build it etc...&lt;br /&gt;&lt;br /&gt;svn checkout http://svn.webkit.org/repository/webkit/trunk WebKit&lt;br /&gt;&lt;br /&gt;Update the checkout-&lt;br /&gt;WebKit/WebKitTools/Scripts/update-webkit&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Specifically, I was trying to build for QT on a Linux platform in red hat. This link was very useful&lt;br /&gt;http://trac.webkit.org/wiki/BuildingQtOnLinux&lt;br /&gt;&lt;br /&gt;Also I didnt have QT version 4.4.3 which I downloaded from the QT website. Because of this, I had to struggle a bit to figure things out.&lt;br /&gt;&lt;br /&gt;Basically you need to do the following before compilation-&lt;br /&gt;- set QTDIR&lt;br /&gt;- add $QTDIR/bin in the path so that we will get the latest&lt;br /&gt;- set a soft link&lt;br /&gt;                ln -s $QTDIR /usr/local/Trolltech/Qt-4.4.3.&lt;br /&gt;  Alternatively, you can do a "make" and "make install" of qt. This will copy QT sources to the system. But then again you need sqlite sources which resides in QTDIR/src/3rdparty/sqlite. Since the build system looks for sqlite in QTDIR, we might need to manually copy it to the location.&lt;br /&gt;&lt;br /&gt;- set &lt;em&gt;QMAKESPEC&lt;br /&gt;  export &lt;/em&gt;&lt;em&gt;QMAKESPEC=&lt;/em&gt;$QTDIR/mkspec/default&lt;br /&gt;&lt;br /&gt;After this, its all ready to go!!!&lt;br /&gt;WebKit/WebKitTools/Scripts/build-webkit --qt&lt;br /&gt;&lt;br /&gt;After around 40 mins, I got the following error&lt;br /&gt;/home/robbinm/sandbox/mytests/browser/webkit/WebKit/WebKitBuild/Release/lib/libQtWebKit.so: undefined reference to `WebCore::JSWebKitCSSMatrixConstructor::JSWebKitCSSMatrixConstructor(JSC::ExecState*, WebCore::ScriptExecutionContext*)'&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This I couldnt do easily-&lt;br /&gt;- download webkit in cygwin and compile. The downloading it self was failing with errors. I tried the svn checkout as well as downloading the tar file, but both bailed out with errors&lt;br /&gt;&lt;br /&gt;- compile for GTK-webkit. It was failing for wanting libicu-dev. Checking the net showed that it required many more!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4752597819281181319-2137760709644303530?l=nerdycalypso.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nerdycalypso.blogspot.com/feeds/2137760709644303530/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4752597819281181319&amp;postID=2137760709644303530' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/2137760709644303530'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/2137760709644303530'/><link rel='alternate' type='text/html' href='http://nerdycalypso.blogspot.com/2009/01/webkit-calypso.html' title='Webkit calypso'/><author><name>Robin</name><uri>http://www.blogger.com/profile/07040518505626745564</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4752597819281181319.post-1760077650864030416</id><published>2008-12-28T14:45:00.001-08:00</published><updated>2008-12-28T15:14:11.089-08:00</updated><title type='text'>Malayalam mp3 download sites</title><content type='html'>I was searching for latest mallu/hindi/tamil songs and these seems to be good sites-&lt;br /&gt;&lt;br /&gt;http://indian-musiq.com/&lt;br /&gt;       Has lots of latest movie songs&lt;br /&gt;&lt;br /&gt;http://beemp3.com&lt;br /&gt;&lt;br /&gt;http://music.cooltoad.com/music/&lt;br /&gt;       This site has a big collection of ever green hits&lt;br /&gt;&lt;br /&gt;http://www.4shared.com/&lt;br /&gt;       This site has lots of songs but make sure that you play the songs as the names and songs does always match&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4752597819281181319-1760077650864030416?l=nerdycalypso.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nerdycalypso.blogspot.com/feeds/1760077650864030416/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4752597819281181319&amp;postID=1760077650864030416' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/1760077650864030416'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/1760077650864030416'/><link rel='alternate' type='text/html' href='http://nerdycalypso.blogspot.com/2008/12/malayalam-mp3-download-sites.html' title='Malayalam mp3 download sites'/><author><name>Robin</name><uri>http://www.blogger.com/profile/07040518505626745564</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4752597819281181319.post-5457225123712919521</id><published>2008-03-23T01:02:00.000-07:00</published><updated>2009-01-23T00:45:12.923-08:00</updated><title type='text'>LFS calipso</title><content type='html'>LFS seems to be the ultimate karma for Linux nerds. For those of you who are new to LFS like me,  it's Linux From Scratch. Its a quest to build Linux and all Software that go in the system from their sources rather than use prebuild binaries. It is definitely not for the faint hearted.&lt;br /&gt;&lt;br /&gt;The following are useful links-&lt;br /&gt;This link gives a nice prelude to what it takes to build software from scratch-&lt;br /&gt;http://www.tldp.org/HOWTO/Software-Building-HOWTO.html&lt;br /&gt;http://www.linuxfromscratch.org/hints/downloads/files/essential_prereading.txt&lt;br /&gt;&lt;br /&gt;Start on LFS with the link-&lt;br /&gt;http://www.linuxfromscratch.org/lfs/view/stable/index.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4752597819281181319-5457225123712919521?l=nerdycalypso.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nerdycalypso.blogspot.com/feeds/5457225123712919521/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4752597819281181319&amp;postID=5457225123712919521' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/5457225123712919521'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/5457225123712919521'/><link rel='alternate' type='text/html' href='http://nerdycalypso.blogspot.com/2008/03/lfs-calipso.html' title='LFS calipso'/><author><name>Robin</name><uri>http://www.blogger.com/profile/07040518505626745564</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4752597819281181319.post-5054659271080198838</id><published>2008-01-16T14:35:00.000-08:00</published><updated>2008-05-03T18:04:40.079-07:00</updated><title type='text'>Makefile calypso</title><content type='html'>This was about my tango with Makefile intricacies&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Mission:&lt;/span&gt;&lt;br /&gt;How to check whether a directory is present inside makefiles?&lt;br /&gt;&lt;br /&gt;It first seems to be  a trivial problem but soon I realized it was an illusion!!!&lt;br /&gt;&lt;br /&gt;I saw the following solution-&lt;br /&gt;http://loxos.blogspot.com/2005/08/file-and-directory-check-in-makefile.html&lt;br /&gt;But unfortunately it does not work because the "echo exists" is never called.&lt;br /&gt;&lt;br /&gt;Another nice resource to look for is-&lt;br /&gt;http://www.gnu.org/software/make/manual/make.html&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solutions:&lt;br /&gt;&lt;/span&gt;Finally I realized that I am on my own and needs to work out a solution. I did some reading on Makefile functions and found a generic solution using shell and call macros-&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;Solution 1:&lt;br /&gt;&lt;/span&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 102);"&gt;#    Check for directory&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 102);"&gt;isDirectoryExists = $(shell if [ -d $1 ]; then echo "exists"; fi )&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 102);"&gt;ifeq ($(call isDirectoryExists,DIRECTORY_YOU_LOOK_FOR, exists)&lt;/span&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 102);"&gt;&lt;br /&gt;#    DO SOMETHING&lt;br /&gt;&lt;/span&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 102);"&gt;else&lt;br /&gt;&lt;/span&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 102);"&gt;#   DO SOMETHING&lt;br /&gt;&lt;/span&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 102);"&gt;endif&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;&lt;/span&gt;This is the solution I really liked!!&lt;br /&gt;&lt;br /&gt;Another way to do it is to you pure shell syntax in some rules-&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Solution 2:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 102);"&gt;RULE_XXX:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 102);"&gt;        if [ -d DIRECTORY_YOU_LOOK_FOR ]; then \&lt;br /&gt;     // DO SOMETHING \&lt;br /&gt;     else \&lt;br /&gt;     // DO SOMETHING \&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 102);"&gt;       fi&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(255, 102, 102);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;I think this solution cannot really work without a rule. Atleast I was not able to get it working without a rule :(&lt;/span&gt;&lt;/span&gt;&lt;span style="font-style: italic; color: rgb(255, 102, 102);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4752597819281181319-5054659271080198838?l=nerdycalypso.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nerdycalypso.blogspot.com/feeds/5054659271080198838/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4752597819281181319&amp;postID=5054659271080198838' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/5054659271080198838'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/5054659271080198838'/><link rel='alternate' type='text/html' href='http://nerdycalypso.blogspot.com/2008/01/makefile-calipso.html' title='Makefile calypso'/><author><name>Robin</name><uri>http://www.blogger.com/profile/07040518505626745564</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4752597819281181319.post-612854526153334315</id><published>2008-01-10T18:24:00.000-08:00</published><updated>2008-01-13T06:58:43.058-08:00</updated><title type='text'>Titbits on Cygwin :)</title><content type='html'>The following are small tidbits of information that I can comeback to refer... and hopefully helpful to others too...&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Cygwin:&lt;/span&gt;&lt;br /&gt;Cygwin is an interesting tool for those who are familiar with linux and wants to do something similar in windows. It gives a bash shell in a windows system and permits compilation of most linux programs.&lt;br /&gt;&lt;br /&gt;Well one interesting thing to keep in mind while installing cygwin is to remember that you need to choose the components that you may want to install. The default installation of cygwin does NOT install the gcc compilers and most of the libraries which might interest a developer.&lt;br /&gt;&lt;br /&gt;The installation takes quite sometime as it downloads stuffs from internet. Maybe a wiser choice is to download it locally and then install it as the internet installation fails often.&lt;br /&gt;&lt;br /&gt;waiting... waiting... for the downloading to finish. Probably I am downloading more stuffs that I really need...&lt;br /&gt;&lt;br /&gt;Finally cygwin is installed with compiler on my PC!!!&lt;br /&gt;&lt;br /&gt;My aim is to compile squashfs tools in windows so that I will have the utility available to make a squash fs image in windows AND Linux.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;SquashFS:&lt;/span&gt;&lt;br /&gt;The following are some leads on squashfs filesystem-&lt;br /&gt;http://www.roseindia.net/linux/tutorial/linux-howto/SquashFS-HOWTO/creatingandusing.html&lt;br /&gt;&lt;br /&gt;The source code for the tools can be found at the following link-&lt;br /&gt;http://sourceforge.net/projects/squashfs&lt;br /&gt;&lt;br /&gt;It compiles cleanly in Linux. I am trying to see whether its the same case with windows cygwin compilation too. &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;SquashFS tools Compilation on Cygwin:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;In cygwin, squashFS tools does not compile cleanly. Its to be expected as the squashFS providers does not claim to support windows platform.&lt;br /&gt;&lt;br /&gt;Compilation fails because it references system header files. Looking a bit closely in the code, it looks like the mksquashfs.c is trying to get the number of processors in the system.&lt;br /&gt;&lt;br /&gt;My aim is to compile the code in a Windows PC with one processor. So thats it. #ifdef away the code thats trying to get the number of processors and #else to processors=1..&lt;br /&gt;&lt;br /&gt;Summerising the changes required to compile squashFS(version3.1r2)  in cygwin-&lt;br /&gt;-Define linux macro in the Makefile to make the compilation work similar to linux&lt;br /&gt;-#ifdef away a few calls done to get the number of processors and include files&lt;br /&gt;&lt;br /&gt;Bingo it works!!! I have mksquashfs that work on windows. I am able to mount the squashFS image made in windows in the target Linux!!!!&lt;br /&gt;&lt;br /&gt;If this tool is to be invoked without cygwin, we will have to copy the following cygwin DLLs to the same directory as the executable mksquashfs.exe is.&lt;br /&gt;-cygwin1.dll&lt;br /&gt;-cygz.dll&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4752597819281181319-612854526153334315?l=nerdycalypso.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nerdycalypso.blogspot.com/feeds/612854526153334315/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4752597819281181319&amp;postID=612854526153334315' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/612854526153334315'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/612854526153334315'/><link rel='alternate' type='text/html' href='http://nerdycalypso.blogspot.com/2008/01/tidbits-on-cygwin.html' title='Titbits on Cygwin :)'/><author><name>Robin</name><uri>http://www.blogger.com/profile/07040518505626745564</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4752597819281181319.post-7499321173288680089</id><published>2008-01-10T06:46:00.000-08:00</published><updated>2008-01-13T07:02:57.519-08:00</updated><title type='text'>Useful Linux links - Linuks</title><content type='html'>The following are some interesting articles that I came across internet&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;General Linux kernel-&lt;/span&gt;&lt;br /&gt;http://www.ibm.com/developerworks/library/l-embdev.html&lt;br /&gt;http://lwn.net/Articles/21835/&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Block devices driver in Linux-&lt;/span&gt;&lt;br /&gt;http://www.linuxjournal.com/article/2890&lt;br /&gt;http://lwn.net/images/pdf/LDD3/ch16.pdf&lt;br /&gt;http://lwn.net/Articles/58720/&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Flash FS on Linux-&lt;/span&gt;&lt;br /&gt;http://www.linuxjournal.com/article/4678&lt;br /&gt;http://en.wikipedia.org/wiki/Cramfs&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Static/Shared/Dynamic linking in Linux-&lt;/span&gt;&lt;br /&gt;http://www.faqs.org/docs/Linux-HOWTO/Program-Library-HOWTO.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4752597819281181319-7499321173288680089?l=nerdycalypso.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nerdycalypso.blogspot.com/feeds/7499321173288680089/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4752597819281181319&amp;postID=7499321173288680089' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/7499321173288680089'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/7499321173288680089'/><link rel='alternate' type='text/html' href='http://nerdycalypso.blogspot.com/2008/01/useful-links-on-linux.html' title='Useful Linux links - Linuks'/><author><name>Robin</name><uri>http://www.blogger.com/profile/07040518505626745564</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4752597819281181319.post-7518357589020776749</id><published>2007-05-25T22:56:00.000-07:00</published><updated>2008-01-10T19:12:25.259-08:00</updated><title type='text'>Database calypso!!!</title><content type='html'>Well I wanted to play around with mysql. Reason being its free, and database is a subject i almost flunked during my college days!! Flunked not literally though. Luckily for me the examinar was able to see things in my paper that I didnt!!&lt;br /&gt;&lt;br /&gt;Anyways cut the crap!! Here is a list of usefull SQL statement syntax. The statements themselves are self explanatory..&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;CREATE USER 'username'@'localhost' IDENTIFIED BY 'mysqlpassword';&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;SHOW DATABASES;&lt;/span&gt;&lt;br /&gt;Am I digressing to a windows calypso?? Well in any case this might be of some use later!!! To remove mySQL as a service, execute the following in windows command-&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;sc /delete mysql&lt;br /&gt;&lt;/span&gt;&lt;span&gt;&lt;br /&gt;&lt;br /&gt;I will add to it &lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4752597819281181319-7518357589020776749?l=nerdycalypso.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nerdycalypso.blogspot.com/feeds/7518357589020776749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4752597819281181319&amp;postID=7518357589020776749' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/7518357589020776749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/7518357589020776749'/><link rel='alternate' type='text/html' href='http://nerdycalypso.blogspot.com/2007/05/database-calypso.html' title='Database calypso!!!'/><author><name>Robin</name><uri>http://www.blogger.com/profile/07040518505626745564</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4752597819281181319.post-105457547784882717</id><published>2007-05-25T13:42:00.000-07:00</published><updated>2008-05-03T18:01:53.871-07:00</updated><title type='text'>The first calypso..</title><content type='html'>This is a funny name i got nerdycalypso. How can a nerdy calypso ever look like or hear like? Lets wait and see. Certainly it wont be like the caribbean kind.&lt;br /&gt;&lt;br /&gt;Expect a lot worse!! hulalaahula hulaaahooo&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4752597819281181319-105457547784882717?l=nerdycalypso.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://nerdycalypso.blogspot.com/feeds/105457547784882717/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4752597819281181319&amp;postID=105457547784882717' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/105457547784882717'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4752597819281181319/posts/default/105457547784882717'/><link rel='alternate' type='text/html' href='http://nerdycalypso.blogspot.com/2007/05/first-calipso.html' title='The first calypso..'/><author><name>Robin</name><uri>http://www.blogger.com/profile/07040518505626745564</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
