Skip to content

Instantly share code, notes, and snippets.

from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
import logging
from google.appengine.api import urlfetch
from BeautifulSoup import *
class SoapLinks(webapp.RequestHandler):
def get(self, url):
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
import logging
from google.appengine.api import urlfetch
from BeautifulSoup import *
class SoapLinks(webapp.RequestHandler):
def get(self, url):
Imports System
Imports EnvDTE
Imports EnvDTE80
Imports EnvDTE90
Imports System.Diagnostics
Public Module Module1
Sub BeginMe()
# coding: utf-8
import web
urls = (
'/hello/(.*)', 'Hello',
'/upload', 'Upload',
'/list', 'List',
'/getimage/(.*)', 'GetImage',
)
filedir = './upload'
#!/bin/sh
LUA_PATH="/usr/local/share/lua/5.1//?.lua;/usr/local/share/lua/5.1//?/init.lua;/root/.luarocks/share/lua/5.1//?.lua;/root/.luarocks/share/lua/5.1//?/init.lua;/usr/local/share/lua/5.1//?.lua;/usr/local/share/lua/5.1//?/init.lua;/usr/local/share/lua/5.1//?.lua;/usr/local/share/lua/5.1//?/init.lua;./?.lua;/usr/local/share/lua/5.1/?.lua;/usr/local/share/lua/5.1/?/init.lua;/usr/local/lib/lua/5.1/?.lua;/usr/local/lib/lua/5.1/?/init.lua;/usr/share/lua/5.1/?.lua;/usr/share/lua/5.1/?/init.lua;$LUA_PATH"
LUA_CPATH="/usr/local/lib/lua/5.1//?.so;/root/.luarocks/lib/lua/5.1//?.so;./?.so;/usr/local/lib/lua/5.1/?.so;/usr/lib/lua/5.1/?.so;/usr/local/lib/lua/5.1/loadall.so;$LUA_CPATH"
export LUA_PATH LUA_CPATH
exec "/usr/bin/lua" -lluarocks.loader "/usr/local/lib/luarocks/rocks/wsapi-xavante/1.4-1/bin/wsapi" "$@"
module(..., package.seeall)
-- Source: http://keplerproject.github.com/wsapi/manual.html
function run(wsapi_env)
local headers = { ["Content-type"] = "text/html" }
local function hello_text()
local testStr = "aabb"
local testStr2 = "ccdd"
@saga
saga / gist:748095
Created December 20, 2010 06:36
stack calling conversion
#include <stdio.h>
int main (int argc, char *argv[])
{
int a = 99;
int b = a;
int* pLocala = NULL;
int* pLocalb = NULL;
int d = 1;
@saga
saga / gist:748098
Created December 20, 2010 06:38
local variable address
#include <stdio.h>
int main (int argc, char *argv[])
{
int a = 99;
int b = a;
int* pLocala = NULL;
int* pLocalb = NULL;
int d = 1;
; Listing generated by Microsoft (R) Optimizing Compiler Version 16.00.30319.01
TITLE C:\Documents and Settings\sun\my documents\visual studio 2010\Projects\aabb\aabb\aabb.cpp
.686P
.XMM
include listing.inc
.model flat
INCLUDELIB MSVCRTD
INCLUDELIB OLDNAMES
// public class List<T> : IList<T>, ICollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable
class CFromList : List<int>{}
// public class ArrayList : IList, ICollection, IEnumerable, ICloneable
class CFromArrayList : ArrayList{}
public partial class Form1 : Form
{
private void button1_Click(object sender, EventArgs e)
{