Executes or Calling Programs with timer via Batch Line

After I search how to execute some programs with timer via batch line on google, finally I found it and here's the code I make it simple:

ping -n 60 127.0.0.1>nul
calc.exe

You can make it as batch file. From the code above, the number "60" means that 60 seconds. It needs 60 seconds to execute calculator after you click the batch file. You can change it into 120 for 2 minutes, and so on.

Easy Way to Parse HTML for Bloggers

An easy way to parse HTML for bloggers, please enter http://www.blogcrowds.com/resources/parse_html.php, convert your HTML code on that site, then paste into your template code. It's easy huh?

Create an Inline Frame (Iframe)

Iframe or Inline frame is a floating frame which sits within a web page document. The content is an external web document that is put inside the floating frame.

To create an iframe on your page, create a new HTML file and add some text then save it as yourpage.html. And then create one more new HTML file and then add the code below within the <BODY> </BODY> tags and name it as inlineframe.html:

<iframe src="inlineframe.html" width="200" height="200" frameborder="0" scrolling="auto" name="myInlineFrame"></iframe>

If you've done it, try to open yourpage.html. This will place inlineframe.html inside the floating frame, within yourpage.html. For width and height, you can change it into a number you want.

Calling Firefox with URLs via Batch Line

Sometimes it is useful to call firefox with some URLs, maybe for business or maximizing the traffic purpose, or some else. Here's the code, you can make it as a BAT file by copy it into notepad and then save it as .BAT file.

"C:\Program Files\Mozilla Firefox\firefox.exe" www.google.com www.gmail.com www.yahoo.com http://momonkecil.blogspot.com

The code above is an example to call firefox and it automatically opens google, gmail, yahoo, and my blog. After you edit and make it as a .BAT file, for example named as OPEN.BAT, just with one click it opens those URLs.

Make a Web Page Auto Refresh

Here is the code to make your web page or blog automatically refresh. Put it within <HEAD> </HEAD> section.

<META HTTP-EQUIV="REFRESH" CONTENT="10">

"10" means that the code will refresh every ten seconds. If you want the page to refresh more or less frequently, replace "10" with the number you want.

Then, don't forget to save. Your web page will now automatically refresh every ten seconds. It's simple, right?