This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| wget | |
| A program adapted from HttpTest, by Epsen: | |
| http://www.computercraft.info/forums2/index.php?/topic/82-121-httptest-v13/page__hl__http__fromsearch__1 | |
| Credit for the original work goes to him. Additional modifications have been | |
| made to the file to make it suitable for my own purposes. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Sternenfeld | |
| -- Windows 98 Bildschirmschoner Emulator auf einem ComputerCraft Monitor. | |
| -- | |
| -- Mindestens 1 Bildschirm muss mit dem Computer verbunden sein. | |
| -- Um Bildschirmschoner zu beenden STRG + T kurz gedrueckt halten. | |
| -- | |
| -- Arguments: | |
| -- sterne [ANZAHL] [GESCHWINDIGKEIT] [FARBE] [ZEICHEN] | |
| -- | |
| -- ANZAHL - Anzahl der Sterne (normal 25). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ----------------------------------------------------------------------------- | |
| -- JSON4Lua: JSON encoding / decoding support for the Lua language. | |
| -- json Module. | |
| -- Author: Craig Mason-Jones | |
| -- Homepage: http://json.luaforge.net/ | |
| -- Version: 0.9.40 | |
| -- This module is released under the MIT License (MIT). | |
| -- Please see LICENCE.txt for details. | |
| -- | |
| -- USAGE: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| Mouse File Browser | |
| by: | |
| Stiepen irc(Kilobyte) | |
| Cruor | |
| BigSHinyToys | |
| note: send link to nightin9ale on CC forums | |
| --]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="author" content="" /> | |
| <meta name="copyright" content="" /> | |
| <meta name="robots" content="index, follow" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $h = //... stunden angabe | |
| if ($h == '0') $bild = 'gutenacht.gif'; | |
| if ($h == '12') $bild = 'mittag.jpg'; | |
| if ($h == '16') $bild = 'nachmittag.gif'; | |
| print "<IMG SRC="\http://www.server.de/img/$bild\" BORDER=0 ALT=\"\">"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Suche --> | |
| <div class="row"> | |
| <div class="col-lg-6"> | |
| <div class="input-group"> | |
| <span class="input-group-btn"> | |
| <button class="btn btn-default" type="button"><span class="glyphicon glyphicon-search" aria-hidden="true"></span></button> | |
| </span> | |
| <form method="get" action="http://www.google.de/search" name="googlesearch"> | |
| <input type="text" class="form-control" placeholder="Suchen..." name="q"> | |
| </div><!-- /input-group --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $ip = $_SERVER["REMOTE_ADDR"]; | |
| echo "$ip"; | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script> | |
| function startTime() { | |
| var today = new Date(); | |
| var h = today.getHours(); | |
| var m = today.getMinutes(); | |
| var s = today.getSeconds(); | |
| m = checkTime(m); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="refresh" content="0;url=pages/index.html"> | |
| <title>Seitentitel</title> | |
| <script language="javascript"> | |
| window.location.href = "pages/index.html" | |
| </script> | |
| </head> | |
| <body> |
OlderNewer