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> | |
input { | |
margin-top: auto; | |
margin-bottom: auto; | |
background-color: transparent; | |
font-size: 150px; | |
width: 100%; | |
height: 100%; | |
text-align: center; | |
border: 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
var PRINT = false; | |
var LOG = 1; | |
var SEL = ".pin"; | |
var COND = function($node) { | |
var ret = true; | |
ret = checkNum($node, ".pinPrice", ">=", 10); | |
if (!ret) { return false; } |
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
(function() { | |
var appName = ""; | |
var jQueryVersion = "2.0.3"; | |
var jQueryUIVersion = "1.10.3"; | |
var jQueryUITheme = "redmond"; | |
function loadPrerequisites(callback) | |
{ | |
loadJQuery(function() { |
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
table | |
{ | |
text-align:center; | |
border-collapse:collapse; | |
border:none; | |
font-size:0.85em; | |
display:inline-block; | |
line-height:1.4em; | |
} | |
.tablepadding |
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
robocopy /b /mir "C:\EmptyDir" "C:\DirToEmpty" |
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
robocopy /b /e /xa:s /xjd /sl /a-:hs /mt /v /fp /eta /log:"D:\To\Directory\transfer.log" /tee "C:\From\Directory" "D:\To\Directory" | |
(Note that the paths don't have a trailing backslash.) | |
/b -- backup mode (there's a /zb option for restart mode, but it's a whole lot slower) | |
/e -- copies subdirectories (including empty directories) in addition to files | |
/xa:s -- exclude system files | |
/xjd -- exclude junction points | |
/sl -- copy symbolic links as links | |
/a-:hs -- remove hidden/system attributes from files |
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 java.io.IOException; | |
import java.io.FileOutputStream; | |
import java.io.File; | |
import java.io.FilenameFilter; | |
import java.util.Map; | |
import java.util.HashMap; | |
import com.itextpdf.text.Document; | |
import com.itextpdf.text.DocumentException; | |
import com.itextpdf.text.Image; | |
import com.itextpdf.text.Rectangle; |
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 java.io.IOException; | |
import java.io.FileOutputStream; | |
import java.io.File; | |
import java.io.FilenameFilter; | |
import java.util.Map; | |
import java.util.HashMap; | |
import com.itextpdf.text.Document; | |
import com.itextpdf.text.DocumentException; | |
import com.itextpdf.text.Image; | |
import com.itextpdf.text.Rectangle; |
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 __main__ | |
import os | |
_ansi_color_codes = { | |
"black":30, | |
"red":31, | |
"green":32, | |
"yellow":33, | |
"blue":34, | |
"magenta":35, |
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
# This script continues the work of gdc-downloader.py and actually combines the video and audio | |
# into a single video file. The underlay.png file specifies the dimensions of the video. | |
# Personally, I use an all-black 1024x768 rectangle for optimal iPad viewing. | |
# As with gdc-downloader.py, code quality is crappy and quickly assembled to work for my | |
# nefarious purposes. | |
# Usage is as follows: | |
# | |
# gdc-encoder.py [video name] [video path] [output name] [GDC name] |
NewerOlder