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
using Microsoft.Band; | |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace App1 | |
{ |
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 sys | |
import urllib.parse | |
import re | |
import tempfile | |
import os | |
import csv | |
import hashlib | |
from subprocess import STDOUT,CalledProcessError,check_output |
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 sys | |
import urllib.parse | |
import re | |
import tempfile | |
import os | |
from subprocess import STDOUT,CalledProcessError,check_output | |
PATTERN_START = u".py?user_script=" |
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
<style> | |
del { | |
background-color: #fdd; | |
text-decoration: none; | |
color:#000 !important; | |
} | |
ins { | |
background-color: #dfd; | |
text-decoration: none; |
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
<link href="https://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.css" type="text/css" rel="stylesheet" /> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> | |
</script> | |
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.js"> | |
</script> | |
<script> | |
$(document).ready(function() | |
{ | |
$("pre").addClass("prettyprint"); | |
prettyPrint(); |
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
var sum = function(o, tabLevel){ | |
for(var prop in o){ | |
if(o.hasOwnProperty(prop)){ | |
var val = o[prop]; | |
var header = ""; | |
for( var t = 0; t < tabLevel; t++ ) | |
{ | |
header += '\t'; | |
} | |
console.log(header + prop + ":"); |
NewerOlder