This file contains 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 + ":"); |
This file contains 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 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 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 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 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 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Focus sessions</title> | |
<meta name="description" content="pomodoro"> | |
<meta name="author" content="Chris Parnin"> |
This file contains 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
@Test | |
public void postMessage() | |
{ | |
driver.get("https://csc510-fall16.slack.com/"); | |
// Wait until page loads and we can see a sign in button. | |
WebDriverWait wait = new WebDriverWait(driver, 30); | |
wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("signin_btn"))); | |
// Find email and password fields. |
This file contains 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
name: brain-jupyter | |
vm: | |
ip: 192.168.88.11 | |
ports: 8888 | |
lang: | |
- python2 | |
tools: | |
- jupyter | |
commands: | |
serve: jupyter notebook --no-browser --NotebookApp.token='' |
This file contains 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
name: hibernate-spring | |
vm: | |
ip: 192.168.8.8 | |
ports: 8080 | |
vars: | |
- mysql_password: | |
prompt: Type your password for mysql server | |
tools: | |
- maven | |
services: |
OlderNewer