Skip to content

Instantly share code, notes, and snippets.

@echo off
set desktop_path="%HOMEPATH%\Desktop"
set documents_path="%HOMEPATH%\Documents"
set destination_path="%documents_path%\misc"
if not exist "%destination_path%" mkdir "%destination_path%"
forfiles /p %desktop_path% /m "*" /c "cmd /c move @file %destination_path%"
@seaneshbaugh
seaneshbaugh / README.md
Last active February 23, 2019 20:51
Citrine macOS binaries
@seaneshbaugh
seaneshbaugh / bcpl-instructions.md
Last active November 1, 2018 16:50
Instructions for getting up and running with BCPL

Download the BCPL source code.

$ wget http://www.cl.cam.ac.uk/users/mr/BCPL/bcpl.tgz

Unpack the BCPL source code.

$ tar -xf bcpl.tgz

Go to the BCPL source code directory.

@seaneshbaugh
seaneshbaugh / gatherer.rb
Last active September 5, 2018 10:16
MTG scraper
require 'active_support/core_ext/string'
require 'mechanize'
require 'optparse'
require 'ostruct'
require 'pry'
require 'tempfile'
class CardSet
attr_accessor :name, :cards
Introduction
This article provides bibliographic information on ancient Indian society from 2500 BCE until 300 CE, with most of the relevant publications relating to the period 500 BCE to 300 CE. For both periods we are almost entirely bereft of information about secular (and indeed religious) history, or political and social matters, except as filtered through a priestly lens, and as reported as asides, in their texts. Despite this, there has been a large body of scholarly writing on ancient Indian society, especially after 500 BCE when both the textual and archeological evidence becomes more transparent. There is an abundance of material derived from both sources, yet interpretation of it has always been problematic, as the conceptual frames shaping the contents of the texts must first be understood in order to ascertain how the primary data drawn upon was to be presented. In addition, one of the problems in dealing with ancient Indian society that has become very apparent since the turn of the 21st centur
Fractal meta-analysis and 'causality' embedded in complexity: advanced understanding of disease etiology.
Glattre E, Nygård JF.
https://www.ncbi.nlm.nih.gov/pubmed/15233878
The fractal geometry of evolution.
Burlando B.
https://www.ncbi.nlm.nih.gov/pubmed/8246501
Characterization of failure mechanism in composite materials through fractal analysis of acoustic emission signals
F.E.Silva, L.L.Gonçalves, D.B.B. Fereira, J.M.A. Rebello
@seaneshbaugh
seaneshbaugh / have.txt
Created October 22, 2017 06:44
MTG comic books
Ice Age vol. 1 - Jul 1995 x2
Ice Age vol. 2 - Aug 1995 x2
Ice Age vol. 3 - Sep 1995 x3
Ice Age vol. 4 - Oct 1995
The Shadow Mage vol. 1 - Jul 1995 x3
The Shadow Mage vol. 2 - Aug 1995 x3
The Shadow Mage vol. 3 - Sep 1995 x3
The Shadow Mage vol. 4 - Oct 1995 x2
Fallen Empires vol. 1 - Sep 1995
Fallen Empires vol.2 - Oct 1995 x2
Sean,
Here is the genealogy of the Stebbins
family going back to their coming to
America in 1594.
The 10th generation that shows
Charles C. Stebbins is the generation of
my grandfather George K. Stebbins.
There were 4 brothers that settled in
Jefferson Twp. (Montgomery Co. Ohio)
George, Charles, Howard and Edward.
EXT. STOP LIGHT - IN MIDWEST SUBURB - DAY TIME
The cloudless sky is bright blue and the sun is shining. Four to five cars are
in each lane. A silver BMW is three cars back in the middle lane. It's clearly
hot outside.
@seaneshbaugh
seaneshbaugh / printlist.rb
Last active April 1, 2017 04:56
printlist
#!/usr/bin/env ruby
require 'optparse'
options = {}
OptionParser.new do |opts|
opts.banner = 'Usage: printlist [-d padding] [-n number] [-o offset] [-p prefix] [-s suffix] [-t padstr]'
opts.on('-dPADDING', '--padding=PADDING', 'Set padding for numbers (defaults to the number of digits of the number arg)') do |padding|