Solving Failure To Forward Emails in Mozilla Thunderbird by Message Filters; Understanding Thunderbird Account ArchitectureSeptember 28th, 2007 I faced a vexing problem with the otherwise excellent Mozilla Thunderbird email client. I was unable to forward emails to another account using the rules in Message Filters.
ExtJS Hack: Dynamic ComboBox & Remote On-Demand Loading With Local FilteringAugust 20th, 2007 In ExtJS you can create ComboBox which loads data from the server. You can also code so that new data is loaded from the server in response to an event like changing selection of another ComboBox.
How To Connect To OpenFire XMPP Server From Gaim / PidginAugust 17th, 2007 I faced quite some problems, to say the least, in configuring Pidgin / Gaim to connect to OpenFire XMPP Server on Fedora Core 6. Here are the detailed steps for a no-brainer configuration of Gaim for OpenFire:
1.
Ghost DNS Lookup Puzzle on NIS ClientsMay 15th, 2007 I faced an extremely weird problem of ghost DNS lookups on machines configured as NFS clients. It took quite an effort to solve it.
How to auto-start synergyc in Fedora / CentOS / RHEL LinuxSeptember 14th, 2009 You may find several instructions to autostart synergyc during login and after login. I had a hard time using them.
How To Append File Using SSHOctober 12th, 2008 Have you ever searched scp manual for ways to append a file using it? scp is an excellent command to rapidly copy files and directories to / from a remote location. Unfortunately it is of no help when you just want to append a file over ssh connection.
How do I Enable Remote Access To MySQL Database?April 27th, 2009 Suppose you want to change and enable the remote access to MySQL DB on your linux server (Debian). By default, you don't get such privileges so you will have to work your way through this.
How To: Server Socket Hijacking in JavaJune 6th, 2006 Overview
Socket hijacking allows you to override a server socket opened on the same port by a different process. There are several good uses of socket hijacking like developing a port blocker application (poor man's firewall) and some bad uses too.
How To: ICMP Ping in Java (JDK 1.5 and above)January 6th, 2007 Programatically using ICMP Ping is a great way to establish that a server is up and running. Previously you couldn't do ICMP ping (what ping command does in Linux/Unix & Windows) in java without using JNI or exec calls.
Ngnix: Solution for Directory Resolution Problem in Virtual HostingJuly 9th, 2008 Nginx displays a peculiar but logical behavior when handling directories specified without the ending slash. For example you have a directory like http://www.example2.com/dir/.
Server Security: How To Prevent Socket Hijacking on WindowsJune 14th, 2006 You can forcibly bind to the same address and port to which there is an open server socket by using SO_REUSEADDR option (ServerSocket.setReuseAddress(boolean on) in Java). Such reuse can be exploited by malicious applications to disrupt the functioning of the original server application and worse.
Understanding Java: Simplified Hello World for Socket ProgrammingApril 15th, 2006 In my experience much of the complexities a newcomer faces in the Java world is understanding extraneous stuff like handling exceptions or formatting data etc. Today I was requested for the nth time (n -> infinity) how to write a simple socket client and server (actually debug one).
How To Use GMail for Corporate Email Filtering (Free)June 24th, 2008 GMail overall has a nice spam filter. You can leverage the GMail spam filtering capability even for your corporate emails without paying a dime.
How To Resolve Tomcat - Openfire Port ConflictNovember 13th, 2007 Openfire (Jabber/XMPP server) by default binds on port 8080 which is also used by Tomcat. This causes Tomcat to fail when openfire is started before it.
Simple Hack To Protect SSH Against Brute-Force Hacking AttemptsNovember 4th, 2007 All SSH servers on the internet are heavily targeted for brute-force cracking of passwords. Easy passwords can and are often cracked to gain full control over the machine.