Hari's Corner
Humour, comics, tech, law, software, reviews, essays, articles and HOWTOs intermingled with random philosophy now and thenMy web development toolkit
Filed under:
Software and Technology by
Hari
Posted on Wed, Oct 10, 2007 at 13:39 IST (last updated: Thu, May 7, 2009 @ 21:14 IST)
In this series | < Previous | Next > |
Platform: Linux, Apache, MySQL, PHP with firewall
On my Debian system, I've installed Apache 2.0 web server, along with MySQL and PHP 5. This makes for a fairly standard web setup and although my router acts as a firewall, I've also installed and configured guarddog which acts as an excellent graphical front-end to iptables, the Linux kernel firewall. This makes up a good "sandbox" setup which is great for development and local testing before uploading content to the web.Web editor of choice: Quanta Plus
Quanta Plus is an excellent web development editor for KDE. Optimized for PHP development with syntax highlighting, code auto-completion and function parameter tooltips, this resource is great for editing HTML, XHTML and CSS along with PHP and other code. I cannot imagine writing PHP code without this editor and it has served me well in editing, creating and optimizing my website offline. It has a large set of tools which automate creation of HTML forms and tables as well as a fully integrated style editor which allows you to create CSS in an integrated GUI environment. It has many more features which make life easier for developers, but I'll just say that this is one tool that every PHP programmer needs to check out before using commercial, proprietary web editors.Graphic designer: GIMP
GIMP is another tool I really over-use for creating cool web graphics. It has many scripts which make this easy, but I generally like to experiment with this tool to try out new effects. In fact, the current theme for this blog was designed using GIMP. Once again, for those who cannot paid, proprietary tools like Photoshop, GIMP is the way to go, particularly for web graphics design.Miscellaneous development aids
Here are a list of other programming tools which I find useful in my web development work.- MySQL Navigator - while the MySQL command line is the most flexible and powerful way of manipulating databases, sometimes you need a graphical tool just to examine and view table structures and contents. This is one such tool I found in the Debian repositories. Features include exporting/importing databases as well as running SQL queries on the server.
- KRegExpEditor - a KDE application which allows you to create regular expressions in a graphical, intuitive way. An excellent companion for all programmers, particular those who need to parse textual data in a powerful, flexible manner.
- KColorChooser - this is a KDE widget which is bundled along with the
kdegraphics
package. What this makes easy is picking colours from anywhere on the desktop which is very handy when editing CSS files. - KDiff3 - a useful front-end to
diff
andpatch
, this allows me to easily compare two versions of the same file for changes/modifications. This is handy if you find the command linediff
tools inconvenient. - rsync and ssh -
rsync
allows me to securely upload/sync files on my server (a much better, faster, safer alternative to FTP), while the OpenSSH client allows me to securely login to my user account on the remote server (access kindly provided by Drew).
In this series
- Free Software/Open Source photo editing/management toolkit
- My toolkit for digital artwork: free software
- Random software: ASCII Art Editor - Aewan
- RTS gaming in Linux
- kPovModeler - Easy 3D Rendering Tool
- FOSS video software for all your needs
- Linux games I want to try out
- Visual Basic (almost) on Linux
- Static image gallery generators
- Obscure blog software you might not be aware of
- Linux games you might not be aware of
- Rosegarden: Compose Music in Linux
- My web development toolkit
- 3D modelling tool that's easier to use than Blender
- Random Linux games for your enjoyment
Comments closed
The blog owner has closed further commenting on this entry.
8 comment(s)
For any type of editing, it's vi for me. Yeah that's right, not vim, not emacs, gedit, nano or pico, just plain old vi.
I do love the gimp for graphic manipulation.
Unless it's webmail, any other mail is usually checked with mutt and I guess my most used tool would actually be bash, preferred shell. I use it to administer iptables, networking and even using mysql CLI or console to administer databases.
And of course, rsync to transfer files back and forth from servers or machines and ssh.
Comment by drew (visitor) on Wed, Oct 10, 2007 @ 17:56 IST #
Secondly I use these tools because I feel that they are Free!
Comment by hari (blog owner) on Wed, Oct 10, 2007 @ 18:29 IST #
I don't have access to the shell, or I'd be using rsync as well. I'm left with just FTP.
Comment by RT Cunningham (visitor) on Wed, Oct 10, 2007 @ 19:45 IST #
Comment by hari (blog owner) on Wed, Oct 10, 2007 @ 19:52 IST #
But rsync comes into play if you already have most of the files on the remote location, as it will not overwrite any files that have not changed, thus making it seem faster in technical terms as it does not actually need to transfer all the files, unless it's a full dump of course.
Another advantage I think it has is that it doesn't require so much interaction, especially if you have ssh keys and don't need logins and prompts to start the transfer of files.
But again and if I'm not mistaken, the FTP protocol itself is actually a faster protocol on speed measurements of actual data going across the pipe.
Comment by drew (visitor) on Wed, Oct 10, 2007 @ 22:37 IST #
Comment by drew (visitor) on Wed, Oct 10, 2007 @ 22:40 IST #
I would agree that rsync might be slightly slower technically, but because it allows compression and encryption, you might get better utilization of bandwidth.
Comment by hari (blog owner) on Wed, Oct 10, 2007 @ 22:44 IST #
Comment by drew (visitor) on Thu, Oct 11, 2007 @ 00:19 IST #