Description : ISSANI GNUSL3S LINUX OS provides a rare and huge collection of pre-installed software, including a well-organised graphical user interface and useful recovery tools for system administrators. A full range of development tools, editors, and current libraries is included for users who wish to develop or compile additional software. With this distribution you just […]
Month: March 2010
Typo3 Reference Manuals – A Google Chrome Extension
Following is the link to my first google extension. It’s a collections of Typo3 reference manuals taken straight from typo3.org website. It’s not nearly what I’d call a cool extension, but hey it helps. 🙂 Anyway, this google chrome extension is for : Those who don’t have good internet connection. Link in India. And those […]
How To Find Which Linux Distro you are Using
Just type the following command : > cat /etc/issue Output will be something like this : >Â Debian GNU/Linux 4.0 \n \l
SVN – revision control – slides – pdf
SVN – revision control Download pdf : Coordinating projects â—Ź Problem: How to coordinate and synchronize code  between multiple developers on a project? – Work on the same computer, take turns coding  Nah…  – Send files by e-mail or put them online. Lots of  manual work. – Put files on a […]
Scrum Development Model – steps
Scrum Development Model Download pdf : Required Steps 1) Get your backlog in order 1. Involve stakeholders 2. Create list of product actions 3. Prioritize this list 4. Get list confirmed with product owner 5. Discuss list with team 2) As a team, estimate your Product backlog 1. Provide a high-level guess/estimate 2. Product owner reviews […]
Learning and knowledge is so important of course so try the following:
Learning and knowledge is so important of course so try the following: 1) Get Certified by a recognized professional organization. 2) Write publications, books, ebooks, info articles and yes white papers (a fine suggestion John). Being published adds credibility. 3) Make presentations to universities, schools or nonprofit organizations and video tape it, then edit the […]
How to Install PHP 5.3.1 on Ubuntu 64 bit and 32 bit
…yes just 2 lines … For Ubuntu x64 1) sudo su 2) cd /tmp && mkdir php53 && cd php53 && wget && wget && dpkg -i *.deb && echo “deb http://php53.dotdeb.org stable all” >> /etc/apt/sources.list && aptitude update && aptitude install libapache2-mod-php5=5.3.1 apache2 Â Â For Ubuntu 32 bit i386 1) sudo su 2) […]
Perl – How to Read a Text File into a Variable – 6 ways to do it
6 Ways to Read a Text File into a Variable If you are working with large file(s) you might consider using File::Slurp. It is much fast than the conventional: { local $/=undef; open FILE, “myfile” or die “Couldn’t open file: $!”; binmode FILE; $string = <FILE>; close FILE; } { local $/=undef; open FILE, “myfile” […]
Restarting a Project from Scratch !
There’s a subtle reason that programmers always want to throw away the code and start over. The reason is that they think the old code is a mess. And here is the interesting observation: they are probably wrong. The reason that they think the old code is a mess is because of a cardinal, fundamental […]
Road construction in Goa
Its been 4 days now they are constructing that road that comes after Verna (although not much work is done), on the way to Panjim. And guess what, they still haven’t changed their timings. Road work starts at around 9:30 every morning. If you don’t know 9:00am – 11:00 am and 6:00pm to 7:30 pm […]