A colleague at work just sent me this interesting list of the most dangerous programming errors.
I think it a very thorough list considering the type of error the average programmer does and normally does not have the time (or interest, or knowledge, or whatever... :)) to care on a daily basis.
The comments on what each error is and how to avoid are quite useful!
Enjoy it!
Tuesday, January 20, 2009
Top 25 most dangerous programming errors
Posted by Daniel @ 2:32 AM 0 comments
Thursday, January 15, 2009
Scrum - info and links for starters
Being a Certified Scrum Master and working with Scrum for over a year, people quite often come to me asking for directions about information on Scrum.
I created this post to keep this information handy for me next time I am asked for this and to share it with the community.
Is "the home of the Certified ScrumMasters organization, offering training, gatherings, information, and materials regarding Scrum, including frequent articles". Amongst their resources you can find this brief overview of Scrum and
- Videos
- Books
Have fun!
Posted by Daniel @ 11:07 AM 0 comments
Labels: Agile, Agile Scrum, Scrum, Software Development
Tuesday, January 13, 2009
Take Care of your passwords
Now that even Barack Obama had his twitter password hacked by some kids using a brute force attack using a simple dictionary, makes a lot of sense to spread the word: take good care of your passwords.
There is an interesting site called passwordmeter.com with some functions that check how strong is a password. Try using it before adopting a new password.
The site whatsmypass just published a list with the worst 500 passwords ever. Do you use any of those? :)
Here are the top 10:
- 123456
- password
- 12345678
- 1234
- pussy
- 12345
- dragon
- qwerty
- 696969
- mustang
By the way, this list was compiled in a book by Mark Burnett called "Top 500 Worst Passwords Of All Time".
Posted by Daniel @ 1:22 AM 0 comments
Saturday, January 10, 2009
Change Netbeans 6.5 IDE language
I downloaded and installed today the Netbeans 6.5 and for my surprise its IDE was in Portuguese. I prefer using the IDE in English, so I tried to change it using the way I remembered from previous versions, i.e. at the Tools menu. As it happens, it is not possible to change the language of the IDE through the interface, because it is based on the locale of your machine.
After some experimenting and searching I found out that it is necessary to pass the locale to the IDE and force it to use something different from your system. So, go to the shortcut which starts your IDE (yep, using Windows here) and pass "--locale en:US" in the command line.
It should look like something like this:
"C:\Program Files\NetBeans 6.5\bin\netbeans.exe" --locale en:US
Posted by Daniel @ 6:59 PM 2 comments