Managing your remote site locally – sitecopy.

2009-06-12 2 min read Fedora Linux Uncategorized

If you are managing a remote site, web server that you do not have direct access to (terminal or ssh) and you have to do it with cpanel, then I know how much pain it is. I had the same issue until recently when I discovered <a href="http://http://www.manyfish.co.uk/sitecopy/" target="_blank">sitecopy.

Description of sitecopy:

sitecopy allows you to easily maintain remote Web sites.  The program will upload files to the server which have changed locally, and delete files from the server which have been removed locally, to keep the remote site synchronized with the local site, with a single command. sitecopy will also optionally try to spot files you move locally, and move them remotely.  FTP and WebDAV servers are supported.

Continue reading

Diary and Journal on your linux Desktop

2009-05-26 1 min read Fedora Linux Uncategorized

<a href="http://digitaldump.wordpress.com/projects/rednotebook/" target="_blank">RedNotebook is a diary and journel for the *nix OS. This is a great software with some very good features.

This is available on fedora repo and hence to install you can just type:

sudo yum install rednotebook

Some features to note are:

  • Enter text for individual days and navigate using a fancy calendar
  • Add Categories to days and fill them with small content
  • Tag your entries
  • Format your text bold, italic or <span style="text-decoration: underline;">underlined
  • Insert Images, files and links to websites
  • Links and mail addresses are recognized automatically
  • (Live-) Search
  • Automatic saving
  • Backup to zip archive
  • Word Clouds with most often used words and tags
  • Create a template for each day
  • Export the journal to HTML, Latex or plain text
  • RedNotebook is Open Source Software, you are free to use and redistribute it under the terms of the GPL

RFC Reader – Elegnant way to read RFC and other text documents.

2009-05-25 1 min read Linux Uncategorized

You can find RFC Reader <a href="http://download.cnet.com/RFC-Reader/3000-2383_4-10557406.html" target="_blank">here.

Description of the tool:

RFC Reader is a professional tool for reading RFC document. It can generate a section directory tree. And it provides lots of features to help you reading RFC documents, such as bookmark, highlight, search, and automatically record where you are reading. Version 3.2 is optimized and it is free now! You can use it without any limitation.

Continue reading

Nice articles to spend some time.

2009-03-14 1 min read Linux Uncategorized

Get intoxicated with all kind of crazy languages in the world of computers.

<a href="http://www.tuxradar.com/content/programming-languages-melt-your-brain" target="_blank">http://www.tuxradar.com/content/programming-languages-melt-your-brain

A quite useful vim guide.

<a href="http://www.terminally-incoherent.com/blog/2009/03/03/vim-cheatsheet-revisited/" target="_blank">http://www.terminally-incoherent.com/blog/2009/03/03/vim-cheatsheet-revisited/

Add border to images from command line using montage.

2008-11-20 1 min read Linux Photo

Adding a border to the images from command line is quite simple. But if you have couple of images in a directory that you want to add border to then it may become quite painful 🙂

So what is the solution. You can simply use a one liner to do the job for you.

for i in *.jpg; do montage -geometry 720×576 -background black -quality 100 $i conv-$i; done

Older posts Newer posts