PHP.net Hacked and Malware Injected

Submitted by admin on
PHP.net, the number one scripting language used in the World Wide Web was reportedly hacked last October 24, 2013. The official site said that the method by which their servers were compromised is still unknown at this time. The attackers may have accessed the private key of the php.net SSL Certificate and is now being shut down and will be replaced with a new certificate. There were two servers

Developer Convicted Of “Like Hacking” Charge – Computer Seized By Idaho Court

Submitted by Saad Arif on
An interesting news has emerged from Idaho where a local court ordered to seize the computer of a developer, who said in one of his statements that he likes hacking. This statement was not given by the developer to anyone or in the court but the same words were written on his website. The name of the developer is Corey Thuen and as per the order released by Idaho court last week, the computer of

Stationary Information System

Submitted by cngirwa on
Stationary Information System Enables Administrator to; - post news to his/her workers - manage users - view sales - view/add stock - change his/her password - backup and restore database - send backup copy to the email - check for updates Enables Normal user to; - view news - sale a product - view stock - change his/her password For any question, please contact me via email or sourcecodester

Drivers Got Delayed Due To A Computer Glitch At DFW Airport Again

Submitted by Saad Arif on
This has happened for the second time in a week that the traffic woes were caused due to a computer glitch at DFW (Dallas/ Fort Worth) Airport. This happened on Monday when the new automated system installed on airport was not accepting and registering the toll tag transactions. The issue was addressed and fixed but the system was not working at its best as it was causing a delay of 10-15 minutes

Try Catch

Submitted by joken on
Visual Basic Programming has an Exception to handle errors and other exceptional events. As a programmer, it is the best way to use a try catch to deal with unhandled exceptions. Especially when your program has disrupted the normal flow of instructions. Syntax:
Try
    [ tryStatements ]
    [ Exit Try ]
[ Catch [ exception [ As type ] ] [ When expression ]
    [ catchStatements ]
    [ Exit Try ] ]
[ Catch ... ]
[ Finally
    [ finallyStatements ] ]
End Try
The main purpose of exceptions is to manage errors.