| From : techgearup.wordpress.com
Not yet published.
Posted by megahacker136 on February 17, 2009
The .NET development framework facilitates writing applications in more than one programming language like VB or C#. While writing a .NET application, y ou can always opt for a language of our choice. You can even write each module (say a Windows form or a Web form) of an application in a different language.
On the other hand, PHP is a popular open source scripting language which is used typically for writing Web based applications. Being a... Read Full Story
| From : techgearup.wordpress.com
Not yet published.
Posted by megahacker136 on February 17, 2009
Thanks to an ingenious new strategy devised by researchers at University of California, Davis and Intel Corporation, computer network administrators might soon be able to mount effective, low-cost defenses against self-propagating infectious programs known as worms.
Many computers are already equipped with software that can detect when another computer is attempting to attack it. Yet the software usually cannot identify newly-minted worms... Read Full Story
| From : techgearup.wordpress.com
Not yet published.
Posted by megahacker136 on February 17, 2009
Electronic implants that dispense medicines automatically or via a wireless medical network are on the horizon. Australian and US researchers warn of the security risks.
Many computers are already equipped with software that can detect when another computer is attempting to attack it. Yet the software usually cannot identify newly-minted worms that do not share features with earlier marauders. When network managers detect suspicious activity... Read Full Story
| From : techgearup.wordpress.com
Not yet published.
Posted by megahacker136 on February 17, 2009
One of the themes of Dan Brown’s The Da Vinci Code is the need to keep vital and sensitive information secure. Today, we take it for granted that most of our information is safe because it’s encrypted. Every time we use a credit card, transfer money from our checking accounts — or even chat on a cell phone — our personal information is protected by a cryptographic system.
But the development of quantum computers threatens to shatter the... Read Full Story
| From : techgearup.wordpress.com
Not yet published.
Posted by megahacker136 on February 17, 2009
If you want to make sure your computer or server is not tricked into undertaking malicious or undesirable behavior, it’s not enough to keep bad code out of the system.
Two graduate students from UC San Diego’s computer science department—Erik Buchanan and Ryan Roemer (picture)—have just published work showing that the process of building bad programs from good code using “return-oriented programming” can be automated and that this... Read Full Story
| From : techgearup.wordpress.com
Not yet published.
Posted by megahacker136 on November 2, 2008
You have installed a new self-updating antivirus program, have the latest firewall, and you do not open any dodgy looking e-mail messages. You think you are reasonably safe from a lot of the harmful content on the Internet. Unfortunately, you are not.
On top of the newer and deadlier versions of the same kind of threats that are out there, there is now a new type of danger altogether — “click-jacking.”
At the Hack-in-the-Box security... Read Full Story
| From : techgearup.wordpress.com
Published to Computer programming
Posted by megahacker136 on October 19, 2008
public class soalan4 {
public static void main (String[] args) {
try {
Thread thread1 = new Thread( new runThread( “Parent Thread” ));
Thread thread2 = new Thread( new runThread( “Child Thread” ));
thread1.start();
thread2.start();
} catch (Exception e) {
System. out .println(e.getMessage());
}
}
}
class runThread implements Runnable {
String threadName ;
runThread(String nama) {
threadName = nama;
}
public void run... Read Full Story
| From : techgearup.wordpress.com
Not yet published.
Posted by megahacker136 on October 14, 2008
Problem
You need to break a string into pieces. For example, you want to access each line that a user
enters in a <textarea> form field.
Solution
Use explode( ) if what separates the pieces is a constant string:
$words = explode ( ‘ ‘ , ‘My sentence is not very complicated’ );
Use split( ) or preg_split( ) if you need a POSIX or Perl regular expression to describe the separator:
$words = split( ‘ +’ , ‘This sentence has some extra... Read Full Story
| From : techgearup.wordpress.com
Not yet published.
Posted by megahacker136 on October 10, 2008
Google wants to know if you have an idea that can improve the lives of as many people as possible. And it wants to know before Oct 20.
“These ideas can be big or small, technology-driven or brilliantly simple — but they need to have impact,” the king of search on the Internet said.
Google has US$10mil (RM33mil) to turn five of the best ideas it receives into reality.
It will first identify 100 best ideas and then ask Google users to vote... Read Full Story
| From : techgearup.wordpress.com
Published to Blogs
Posted by megahacker136 on October 9, 2008
Pros of Blogger (Blogspot)-
It’s run by Google so you know it’s not going anywhere. They have billions of dollars to invest in technology! They won’t be going out of business anytime soon - so you know your blog/journal will be safe with them.
Blogger allows you to integrate with other Google Account tools such as Google Adsense. This allows you to make money with your blog without having to know anything about the online advertising... Read Full Story

