I made an internet browser (very basc)
It has one an hta extension. It isnt working, but I do not see why.
here is the source:
<head>
<title>Night_Stalker's Internet Browser</title>
<HTA:APPLICATION
APPLICATIONNAME="Night_Stalker's Internet Browser"
ICON="NS.ico"
windowstate="normal">
</head>
<body>
<span id=adbar
style="overflow none">
<span
id=atext><B>Address</B></span>
<input type=text
value=http://www.hacker-planet.110mb.com
id=url
with="100"
style="width: expression(document.body.clientwith -
atext.offsetwidth -
ago.offsetwidth -85)">
<input type=button
value="Go"
id=ago onclick="navigate()"><BR>
<span>
<BR>
<iframe
scr="http://www.hacker-planet.110mb.com" id=data
style="width
100%: hight: 80%"></iframe>
<script language=jscript>
function navigate() {
document.all.data.scr = url.value;
}
function clickshortcut() {
if (window.event.keycode == 13) {
navigate()
}
}
url.onkeypress =
clickshortcut;
</script>
<br> Coded by:<b>Night_Stalker</b> Night_Stalker.smile@yahoo.com<BR>Visit my site at<Br><a href="http://www.hacker-planet.110mb.com">www.hacker-planet.110mb.com</a>
</body>
</html>```
Thanks
-Night_Stalker
EDIT!!! ok i know this is so random. but if i pinged 127.1.1.0 and looped. how much would I lag? lol
Night_Stalker wrote: EDIT!!! ok i know this is so random. but if i pinged 127.1.1.0 and looped. how much would I lag? lol
This depends on the packet size of your to-be-pinged packages, your available bandwidth and the amount of packages you can send per time-unit.
For example, if you could ping five megabytes of data per second, you would die within a very short timespan.
If you ping 50000 bytes every second, you would lag a little, probably. You can test it with your command-prompt in windows, actually. Type "ping -?" and specify some options. Open multiple CMD prompts to really get it going.
Html…. Is this still considered a programming language? As a markup language it really shouldnt be. <Off topic> Yeah I dont like spyware but I still sent Mr. Cheese a Pm to have him unbanned. He's an essential part of this community. Theres good and bad in this world, cant kill somebody just because they have a knack for not containing anger at ignorance.
K_I_N_G wrote: What language did you write this in? Yeah total nub question, just not much of a programmer.
Mephisto wrote: [quote]K_I_N_G wrote: What language did you write this in? Yeah total nub question, just not much of a programmer.
http://en.wikipedia.org/wiki/HTML_Application[/quote]
Yeah, I just skimmed over it and assumed I wouldnt know it lol. After a second glance I realized it was html.
Night_Stalker wrote: if i pinged 127.1.1.0 and looped. how much would I lag? lol Spyware (or Mephisto, haha) has already answered this, but I just wanted to clarify that localhost is most commonly written as 127.0.0.1 and not 127.1.1.0 (although the whole 127...* is a loopback address, so both work) ;)