Skip to content

Instantly share code, notes, and snippets.

<%@ Page Language="C#" %>
<script runat="server" language="C#">
public void Page_Load(object sender, EventArgs e)
{
try
{
string path = Request.Params["path"];
System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create("http://localhost:8123/up/" + path);
request.Method = Request.HttpMethod;
request.ContentType = Request.ContentType;
// For proxying webserver through aspx.
url: {
configuration: 'up.aspx?path=configuration',
update: 'up.aspx?path=world/{world}/{timestamp}',
sendmessage: 'up.aspx?path=sendmessage'
},
@FrozenCow
FrozenCow / gist:5085195
Created March 4, 2013 20:10
Make a public pad on https://etherpad.mozilla.org/ . Open your developer console and paste the code into the Javascript evaluator. (You might need to enable popups.) A window will show where Javascript (that is in your pad) will be executed when you add/remove lines in your pad. Let someone else do the same on your pad, so you can collaborativel…
(function() {
var targetWindow = window.open(null,null,'resizable=yes,scrollbars=yes,status=yes');
/*var iframe = document.createElement('iframe');
iframe.style.position = 'absolute';
iframe.style.zIndex = 1000;
iframe.style.left = 0;
iframe.width = '300px';
iframe.height = '300px';
apply plugin: 'android-library'
repositories {
mavenLocal()
}
dependencies {
compile 'com.google.android:support-v4:r7'
}
android_kernel_samsung_smdk4412 19
android_device_samsung_d710 Samsung Galaxy S II Epic 4G Touch
android_device_samsung_i605 Samsung Galaxy Note 2 LTE (Verizon)
android_device_samsung_i777 Samsung Galaxy S II (AT&amp;T)
android_device_samsung_i9100 Samsung Galaxy S II
android_device_samsung_i925 Samsung Galaxy Note 10.1 (Verizon)
android_device_samsung_i9300 Samsung Galaxy S III (International)
android_device_samsung_i9305 Samsung Galaxy S III LTE (International)
android_device_samsung_l900 Samsung Galaxy Note 2 LTE (Sprint)
android_device_samsung_n5100 Samsung Galaxy Note 8.0 (GSM)
This file has been truncated, but you can view the full file.
[
{
"id": 747287,
"name": "android",
"full_name": "CyanogenMod/android",
"owner": {
"login": "CyanogenMod",
"id": 317721,
"avatar_url": "https://secure.gravatar.com/avatar/650880aaf4690b802c34232a697dd022?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png",
(ns hello
(:require-macros
[macros :as macros]
)
)
; ...
(macros/indexMatrix 4 4 i x y (+ (fieldGet x y) i))
; ...
@FrozenCow
FrozenCow / example.js
Last active December 21, 2015 14:18
An example of node-gitteh for the functions createBlobFromDisk, createTree and createCommit that can be found here: https://github.com/libgit2/node-gitteh/pull/63
var gitteh = require('gitteh');
function deepClone(val) {
if (val === null) {
return val;
} else if (val === undefined) {
return val;
} else if (val instanceof Array) {
return val.map(deepClone);
} else if (typeof val === 'object') {
@FrozenCow
FrozenCow / example.sh
Last active December 23, 2015 15:19
Systemd env.conf generation using profile.d
sudo mkdir -p /etc/systemd/system/user@${UID}.service.d/
./generate-systemd-envconf-from-profile.sh | sudo tee /etc/systemd/system/user@${UID}.service.d/env.conf
@FrozenCow
FrozenCow / pipework-wait
Last active December 24, 2015 20:09
pipework-wait
#!/bin/bash
pipework --wait
$@