| Subcribe via RSS

Remove hotmail spam in Adium

June 29th, 2009 | No Comments | Posted in Mac

Adium is an excellent Instant Messing application, but when I started using it . On my hotmail account I was having a really annoying bug. That for an unknown reason I was receiving a lot of spamming messages, every time from a different email address, but the spam was from the same topic, and I was receiving about 60 messages every day . So after doing some research over the internet , I found the solution and is really simple. More »

Java 1.4 service life has ended according to SUN

June 9th, 2009 | No Comments | Posted in Java

Now that Java 1.4 has been on the market for a long time, recently I receive an email from Sun Microsystems telling me that the Java 1.4 had reached the end of its life cycle. And soon will the Java 1.5 will die too. This is interesting because many of the systems used today still are using the Java 1.4 on their systems, and because it was a very stable version of the Java products many people still are using it. But I guess it is time for all that companies to move to a new version , and I hope the best for the new JEE and Java 7. More »

Tags:

Find out version kernel

January 3rd, 2009 | No Comments | Posted in linux

Hi this as most of the post I have on my blog are little but useful I think.

So now is a simple command to find out which version of kernel we are running on our system the command . The command is uname and print the system information More »

Tags: , ,

Find out the version of debian

January 3rd, 2009 | No Comments | Posted in linux

Hi , one day I forgot wich version of debian I was running , so I decided to put that information on my blog to remember the command, and help others who had that question to , and try to save everybody some time trying to look the information, so here it is the command More »

Tags: , ,

Easy Mockups with Balsamiq Mockup application

October 18th, 2008 | No Comments | Posted in Adobe Air

As most developers know , we are not to good with the implementation of designs for our applications or webpages, and most of the time is very difficult to transfer the idea to the designer and we spend a lot of time trying to explain our idea to be understood, well forget all that, because surfing on the web I found an EXCELENT program called Balsamiq Mockups and just with a few clicks and drags and drop we can put our thoughts into this program and transmit in an easy way to the other peaople about our plans. More »

Tags: , ,

Remove beep from console

October 12th, 2008 | No Comments | Posted in linux

Recently I installed debian on my laptop but always I had been very irratated when I press the TAB key on the console on Linux systems , and a big beep sound is always there and every time I have to look over the internet every time how to remove this annoying sound, and after a while I always find the solution but it is a waste of time and the solution is very easy , so I decided to post the solution on my blog. More »

Tags: ,

Use operator $# in Perl

August 13th, 2008 | No Comments | Posted in Perl

In the last few weeks I have been developing a lot of scripts in Perl, I’m not a fan of this scripting language but is very useful in some cases, but I had some troubles with arrays and list in Perl , and today I saw a mistake in my code, and that was how I was using the operator $#.

The $# operator will get the index value of last element in a specific array, and It will not return the length of the array this was my mistake , that’s what happend when you don’t read the documentation :-s.

A simple example how to use this operator. More »

Tags:

Randomize lines in a file

July 17th, 2008 | No Comments | Posted in text-utils

Last night I was trying to randomize the lines of a given file , for a task I needed to do, but I thought the best way to do that in a simple way was using text-utils from *nix OS. I use Debian at work and Ubuntu at home, so all you have to do is install via aptitutde the following package and the rest is a peace of cake ;-D.

The name of the package is : randomize-lines ; description: randomize lines of input text

More »

Tags: ,

Set image as a submit button

April 28th, 2008 | 1 Comment | Posted in html

Little tutorial of how to set an image as a submit button using css , you will learn how easy is to set it up , and how useful it can be , as I’m going to show you right now. More »

Tags: , , ,

Useful Javascript Field Validation using Regular Expressions

March 8th, 2008 | No Comments | Posted in Javascript

We always need to validate all the fields that the user enters in the forms , and I think the easiest way to validate it is by Javascript and the use of Regular expressions.

In this post we are going to set a few example of how to validate a Date, Currency, Number, Url, Email, Phone number and others.

So now lets go to the examples. More »