I hereby claim:
- I am afischer on github.
- I am aff (https://keybase.io/aff) on keybase.
- I have a public key ASCihyClihN94y3xmgaJQZaqBgBt7JurtnFcCBpUueeWcwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Forked from https://gist.github.com/brandonb927/3195465 | |
# Edited by Andrew Fischer - github.com/afischer | |
# EDIT THIS LIST to change the optional binaries homebrew installs | |
binaries=( |
<eSummaryResult> | |
<DocSum> | |
<Id>24846185</Id> | |
<Item Name="PubDate" Type="Date">2014 Aug</Item> | |
<Item Name="EPubDate" Type="Date">2014 May 20</Item> | |
<Item Name="Source" Type="String">Cancer Biol Ther</Item> | |
<Item Name="AuthorList" Type="List"> | |
<Item Name="Author" Type="String">Maas NL</Item> | |
<Item Name="Author" Type="String">Singh N</Item> | |
<Item Name="Author" Type="String">Diehl JA</Item> |
body { | |
color: red; | |
} |
http://www.thedp.com/article/2016/09/penn-mens-soccer-rejuvenated-offense | |
http://www.thedp.com/article/2016/09/penn-mens-soccer-american-seton-hall-recap | |
http://www.thedp.com/article/2016/09/penn-mens-soccer-moving-past-2015 | |
http://www.thedp.com/article/2016/09/penn-mens-soccer-nebraska-trip-preview | |
http://www.thedp.com/article/2016/09/penn-mens-soccer-fine-outlook-column-90f5 | |
There is other stuff that didn't make it on web in print! Use that too! See back pages of https://issuu.com/dailypenn/docs/0906 |
Fallout 1 was originally designed to run at 640x480 resolution. I wanted to run the Mac OS X version of Fallout on my MacBook 11", which has a 1366x768 display. There is a [high resolution patch][hi-res], but it only supports the Windows version of Fallout.
Turns out that the OS X version of Fallout runs through Wine, so we can get this patch working with just a few configuration changes:
Note for Fallout 2 users: The process for Fallout 2 is essentially the same, with a different patch, and some minor pathing differences. Other than that, the process is exactly the same!
<a href="https://www.bountysource.com/teams/rvm?utm_source=RVM&utm_medium=shield&utm_campaign=raised"><img src="https://api.bountysource.com/badge/team?team_id=506&style=raised" align="center"></a> | |
| |
Master | |
<a href="https://travis-ci.org/rvm/rvm/branches"><img src="https://travis-ci.org/rvm/rvm.svg?branch=master" align="center"></a> | |
# What's RVM | |
RVM is the acronym of Ruby enVironment Manager. It manages Ruby application environments and enables switching between them. | |
Homepage and more info: https://rvm.io/ |
usage: rvm [--default][--debug][--trace][--nice][—version][-v] <command> | |
rvm has a number of common commands. Additional information about any command | |
can be found by executing `rvm help <command>` | |
rvm versioning, updates, and configuration | |
get <version> Get a version of rvm, using `stable`, `master` or a | |
specific <branch branch/title>. | |
alias define aliases for `rvm use` | |
autolibs tweak settings for installing dependencies automatically |
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"id": "http://json-schema.org/geojson/geometry.json#", | |
"title": "geometry", | |
"description": "One geometry as defined by GeoJSON", | |
"type": "object", | |
"required": [ "type", "coordinates" ], | |
"oneOf": [ | |
{ | |
"title": "Point", |
find -E . -regex '\.\/[0-9]{8}_.*' | while read filename | |
do | |
strippedindex=$(expr "$filename" : "\.\/[0-9]*_[a-zA-Z0-9]*") | |
strippedname=${filename:2:strippedindex-2} | |
mkdir -p "$strippedname" | |
mv "$filename" "$strippedname" | |
done |