" Just because something doesn't do what you planned it to do doesn't mean it's useless. "  —  Thomas A. Edison (1847 - 1931)

Posts Tagged  ›  Internet

 

Tutorial: Easy “Spoiler” Show/Hide Element using Javascript

more...

Sometimes we want to hide some content at first page load to reduce bandwidth transferred to the user. Usually when we just want to show the thumbnails of the image and then the original (big) sized image hidden next to it.

more...

 

Solving DownThemAll File Access Error on Windows 7

more...

Mozilla FirefoxIf you are using Mozilla Firefox browser on the latest of Microsoft Windows OS, Windows 7, you may encounter File Access Error while downloading files using DownThemAll plugin. I am using Mozilla Firefox v3.5.4 with DownThemAll v1.1.7.

more...

 

Validating Email Form Field Using PrototypeJS and Regular Expressions

more...

Annoyed with form submitters that keep fills the email form field with an invalid email? You can use javascript’s regular expressions to validate it. There’s so many regular expressions form to validate e-mail on the internet but many of them is very long and difficult to understand to modify to suit my need. The regular expressions is expressed below:

/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,60})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i

more...

 

Download Google Chrome Offline Installer

more...
Google Chrome

Google Chrome

Did you ever fail to download the latest Beta update of Google Chrome? Or maybe you want to install Google Chrome on computer which don’t have an internet connection? Or maybe because of your firewall is blocking or other some reason you can’t update the browser and shows Error code=0×80072f78? Then you need the offline installer of Google Chrome Beta.

more...

 

Free iPhone and iPod From Apple Corp. HOAX

more...

Another HOAX e-mail spreads in my inbox:

Informasi dari Applecorp

Pelanggan yang terhormat,
Kami beritahukan kepada seluruh pelanggan bahwa perusahaan kami, Apple Corporation yang berkantor pusat di Cupertino, California US membuka kantor pemasaran di Jakarta, Indonesia

more...

 

Avoid ARP Packet Data Sniffing Using Static ARP

more...

Did you ever realize that someone on your network could steal your private data such as username and password of your email?

It is possible to do with a method called ARP redirect or sometimes it is called ARP poisoning. This method is also often used by worms or spyware to hijack your private information gathered by those worms or spyware and sending ’silently’ through internet to it’s owner without you to be noticed. This is can be avoided by installing antivirus or anti-spyware that monitor and scan your network packet data activity on your network connections.

more...

 

Tutorial: How to Ping a Specific Port

more...

Actually you can’t ping a specific port by using the ping command to test whether specified port is open or not. The ping command is used to test specified node/host whether it is live or not. It uses ICMP packets (wiki.answers.com).

You can test a port whether it is live or not by telneting the port using the telnet command. The telnet command is a utility to connect over TCP and defaults to port 25 23 (make a TCP connection to port 25 23 on remote computer/server). But if you specify a different port than 25 23, then what the telnet command do is opening a TCP connection on the specified port to the remote computer/server.

more...