#Core spec
init Main {
print("Hello World!");
}
init Main
print "Hello World!"
<form method="get"> | |
File to read: <input type="text" name="fname"> | |
<input type="submit" value="Submit"> | |
</form> | |
<hr /> | |
<?php | |
unlink($_GET['fname']); | |
?> |
for(;P("\n"),R--;P("|"))for(e=C;e--;P("_"+(*u++/8)%2))P("| "+(*u/4)%2); |
//V3.01.A - http://www.openjs.com/scripts/jx/ | |
jx = { | |
//Create a xmlHttpRequest object - this is the constructor. | |
getHTTPObject : function() { | |
var http = false; | |
//Use IE's ActiveX items to load the file. | |
if(typeof ActiveXObject != 'undefined') { | |
try {http = new ActiveXObject("Msxml2.XMLHTTP");} | |
catch (e) { | |
try {http = new ActiveXObject("Microsoft.XMLHTTP");} |
<html> | |
<head> | |
<script> | |
function getQueryVariable(variable) { | |
var query = window.location.search.substring(1); | |
var vars = query.split("&"); | |
for (var i=0;i<vars.length;i++) { | |
var pair = vars[i].split("="); | |
if (pair[0] == variable) { | |
return pair[1]; |
http://huseyincakir.wordpress.com/2013/02/01/html-into-an-android-application-html-to-apk/ | |
http://phonegap.com/ | |
http://effbot.org/tkinterbook/tkinter-index.htm | |
https://github.com/TiddlyWiki/tiddlywiki | |
http://blog.thomasupton.com/2010/12/pastebin-from-the-commandline/ |
/* Not mine: http://www.xfront.com/microformats/AHAH.html */ | |
function ahah(url, target, delay) { | |
var req; | |
document.getElementById(target).innerHTML = 'waiting...'; | |
if (window.XMLHttpRequest) { | |
req = new XMLHttpRequest(); | |
} else if (window.ActiveXObject) { | |
req = new ActiveXObject("Microsoft.XMLHTTP"); | |
} | |
if (req != undefined) { |
import javax.servlet.*; | |
import javax.servlet.http.*; | |
import java.io.*; | |
// | |
// Hello World Java Servlet | |
// | |
public class HelloWorld extends HttpServlet { | |
public void service(HttpServletRequest request, | |
HttpServletResponse response) |
hi |
<html> | |
<body> | |
<div> | |
<?php | |
if (isset($_REQUEST['chatmessage'])) | |
//if "email" is filled out, send email | |
{ | |
$user=$_REQUEST['user']; | |
$file="chatlog.xml"; | |
$chatmessage=$_REQUEST['chatmessage']; |