Skip to main content

Posts

Simultaneous posting on Blogger and MSN Spaces

Now you can easily post your Blogger post on MSN Spaces without doing any cut-copy-paste. The trick is very simple and anybody can use it in no time. STEPS Sign into your MSN Spaces and access Settings > EMail Settings. Turn on e-mail publishing. Specify up-to-three email addresses you want to use to publish blog entries. Enter your Blogger Mail-to-Blogger Address here (BloggerDashboard > Settings > EMail) in one of them. Choose a secret word. (Let us say it is 'agent007'). This secret word is combined with your space name ( Lets say it is mymsnspace ) to form a special e-mail address ( mymsnspace . agent007 @spaces.msn.com) that only you can use to publish entries to your space. Access Settings tabs in you Blogger Dashboard in another window. There is a textfield named BlogSend Address . Here provide an email address to have your blog mailed to whenever you publish it. Enter your special e-mail address that MSN Spaces has created for you (mymsnspace .code007@spa...

JBoss - The Basics

This is not for the experienced JBoss application server user. It is meant to give the JBoss beginner the basics to running and deploying applications to JBoss 4.0.3 SP1. JBoss Layout JBoss is easy to understand if you know the way the directories are setup and how to work with them. First everything you will do to JBoss is in the install directory. bin directory The most important one here is the run.bat or run.sh. This will run the application server and display debug and information messages to the user in the session it is started in. To start JBoss simply use the run command from this directory. To stop the server do a CTRL-C in the session it was started in. There are also some other files there but this is the basics only so I will not discuss them. lib directory This is the "root" server lib directory. You don't usually have to nor want to do anything with these libs. server directory This is where the directories for the server instances are. This ...

[Humor] Compensation

How are you compensated in the Organization for the good work? Is it one of these forms ;)

Javascript plugin for Eclipse

I waas looking for a Javascript editor and came across JSEclipse plugin from Interakt . Its a beautiful plugin and even has a all-features-enabled free version :). The best things I like about JSEclipse are: Code completion for JavaScript function and classes. Code completion for JavaDoc . Function and class names are displayed in the Outline panel for the currently open file. Open declaration i.e. the famous F3 functionality Error reporting Warning reporting Code wrap Support for major JavaScript libraries Code completion uses Rhino for better accuracy Use of JSDoc and inline parameter comments to detect parameter type Suggest parameters to be filled Project dependent code completion Reads all classes in current project Reads classes in currently opened files Scan current file for words Reads XML files for class definitions Add your own XML with class definitions However, it works on Eclipse 3.1.x versions only. I have multiple Eclipse installations. It didnt work on Ecli...

Google Web Toolkit for building AJAX apps in Java

Google has introduced a toolkit for building AJAX applications in Java, though its in beta. It has also supplied some sample applications with the kit. Google Web Toolkit (GWT) is a Java software development framework that makes writing AJAX applications like Google Maps and Gmail easy for developers who don't speak browser quirks as a second language. Writing dynamic web applications today is a tedious and error-prone process; you spend 90% of your time working around subtle incompatabilities between web browsers and platforms, and JavaScript's lack of modularity makes sharing, testing, and reusing AJAX components difficult and fragile. GWT lets you avoid many of these headaches while offering your users the same dynamic, standards-compliant experience. You write your front end in the Java programming language, and the GWT compiler converts your Java classes to browser-compliant JavaScript and HTML. I plan to explore GWT for the next couple of days and then would be wri...