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
4x Battlefield Forge | |
4x Bloodsoaked Champion | |
4x Bloodstained Mire | |
2x Brutal Hordechief | |
4x Butcher of the Horde | |
4x Caves of Koilos | |
3x Crackling Doom | |
4x Lightning Strike | |
2x Magma Jet | |
2x Thoughtseize |
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 an introduction to the Page Control template, see the following documentation: | |
// http://go.microsoft.com/fwlink/?LinkId=232511 | |
(function () { | |
"use strict"; | |
WinJS.UI.Pages.define("/pages/browse/byHub/byHub.html", { | |
ready: function (element, options) { | |
// TODO: Initialize the page here. |
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 chai = require('chai'); | |
var mocha = require('mocha'); | |
var sinon = require("sinon"); | |
var sinonchai = require('sinon-chai'); | |
chai.use(sinonchai); | |
var expect = chai.expect; | |
function sinonTest(parameter, callback) { | |
callback(parameter); |
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> | |
<meta charset="utf-8"> | |
<title>Mocha Tests</title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/2.2.5/mocha.css" /> | |
</head> | |
<body> | |
<div id="mocha"></div> | |
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></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
Set WshShell = CreateObject("WScript.Shell") | |
MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId")) | |
Function ConvertToKey(Key) | |
Const KeyOffset = 52 | |
i = 28 | |
Chars = "BCDFGHJKMPQRTVWXY2346789" | |
Do | |
Cur = 0 | |
x = 14 |
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
wget http://archive.raspberrypi.org/debian/pool/main/r/raspi-config/raspi-config_20150706_all.deb | |
wget http://http.us.debian.org/debian/pool/main/l/lua5.1/lua5.1_5.1.5-8_armel.deb | |
wget http://http.us.debian.org/debian/pool/main/t/triggerhappy/triggerhappy_0.3.4-2_armel.deb | |
dpkg -i triggerhappy_0.3.4-2_armel.deb | |
dpkg -i lua5.1_5.1.5-4_armel.deb | |
dpkg -i raspi-config_20130525_all.deb |
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
[alias] | |
# Show last commits in nice format | |
last = log --pretty=format:'%C(yellow)%h %Cred%ad %Cblue%an%Cgreen%d %Creset%s' --date=relative | |
# https://stackoverflow.com/questions/17195861/undo-git-update-index-assume-unchanged-file#17195901 | |
hide = update-index --assume-unchanged | |
unhide = update-index --no-assume-unchanged | |
# https://stackoverflow.com/questions/2363197/can-i-get-a-list-of-files-marked-assume-unchanged#37083903 | |
unhide-all = update-index --really-refresh | |
hidden = !git ls-files -v | grep \"^[a-z]\" |
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
# Git Shortcuts | |
alias g='git' | |
alias gs='git status' | |
alias gst='git status -sb' | |
alias ga='git add' | |
alias gau='git add -u' # Removes deleted files | |
alias gp='git pull' | |
alias gpu='git push' | |
alias gc='git commit -v' | |
alias gca='git commit -v -a' # Does both add and commit in same command, add -m 'blah' for comment |
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
C:\Windows\System32\tscon.exe %sessionname% /dest:console |
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 converter = require('json-2-csv'); | |
var fs = require('fs'); | |
fs.readFile('Vonbismark.json', 'utf8', function (readError,readData) { | |
if (readError) { | |
return console.log(readError); | |
} | |
var dataArray = JSON.parse(readData); | |
// console.log(dataArray.length); |
OlderNewer