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
<html> | |
<body> | |
<div> | |
<?php | |
if (isset($_REQUEST['chatmessage'])) | |
//if "email" is filled out, send email | |
{ | |
$user=$_REQUEST['user']; | |
$file="chatlog.xml"; | |
$chatmessage=$_REQUEST['chatmessage']; |
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
hi |
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
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) |
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
/* 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) { |
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
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/ |
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
<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]; |
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
//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");} |
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
for(;P("\n"),R--;P("|"))for(e=C;e--;P("_"+(*u++/8)%2))P("| "+(*u/4)%2); |
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
<form method="get"> | |
File to read: <input type="text" name="fname"> | |
<input type="submit" value="Submit"> | |
</form> | |
<hr /> | |
<?php | |
unlink($_GET['fname']); | |
?> |
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
// parseUri 1.2.2 | |
// (c) Steven Levithan <stevenlevithan.com> | |
// MIT License | |
function parseUri (str) { | |
var o = parseUri.options, | |
m = o.parser[o.strictMode ? "strict" : "loose"].exec(str), | |
uri = {}, | |
i = 14; |