More than 30 international security companies and organisations have agreed on a list of the top 25 most dangerous programming errors that can lead to security issues, which may be exploited by criminals. For example, in 2008, just two of the errors on the list led to over 1.5 million security breaches. Many of the … Continue reading The 25 most dangerous programming errors
stackoverflow.com
Stack Overflow is a collaboratively edited question and answer site for programmers — regardless of platform or language. You can answer and ask questions to your heart's content as an anonymous user, much like Wikipedia. URL: http://stackoverflow.com/ It is still a public beta, but looks very interesting.
Fun with Infinite Loops in Delphi and Java
Look at the Java and Delphi source codes below. Which one will compile, and which one will run in an infinite loop? (click on 'more...' to see the answer) Java: void loop() { while (true) { try { return; } finally { continue; } } } Delphi: procedure Loop; begin while True do try Exit; … Continue reading Fun with Infinite Loops in Delphi and Java