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
git diff -w --no-color | git apply --cached --ignore-whitespace |
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
MISSING LINKS | |
/ask_an_expert | |
/better_categories/cell-line-construction/wares | |
/better_categories/metabolomics/wares | |
/better_categories/natural-products/wares | |
/better_categories/neurological/wares | |
/category/cell-assay-kits-87785 |
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
/better_categories/cell-line-construction/wares | |
/better_categories/metabolomics/wares | |
/better_categories/natural-products/wares | |
/better_categories/neurological/wares | |
/category/cell-assay-kits-87785 | |
/category/cell-based-assays-9 | |
/category/chemical-properties-16 | |
/category/cyp450-assays-388 |
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
require 'formula' | |
class Sshpass < Formula | |
url 'http://sourceforge.net/projects/sshpass/files/sshpass/1.05/sshpass-1.05.tar.gz' | |
homepage 'http://sourceforge.net/projects/sshpass' | |
sha256 'c3f78752a68a0c3f62efb3332cceea0c8a1f04f7cf6b46e00ec0c3000bc8483e' | |
def install | |
system "./configure", "--disable-debug", "--disable-dependency-tracking", | |
"--prefix=#{prefix}" |
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
MACOS SIERRA UPGRADE | |
UPDATE SYSTEM | |
- Install macOS Sierra 12.1 | |
- Update apps via App Store | |
- Update apps via third party downloads | |
PHOTOS.APP | |
- Update Photo library |
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
# Heroku account switcher | |
function switch() { | |
rm -rfd ~/.heroku/credentials | |
cp ~/.heroku_logins/$1 ~/.heroku/credentials | |
} |
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
def initialize(file) | |
if File.directory?(file) | |
file = file + "/data.plist" | |
end | |
if File.read(file, 2).unpack('CC') == [0x1f, 0x8b] | |
file = Zlib::GzipReader.open(file).read | |
end | |
@stencil = Plist::parse_xml(file) |
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
def initialize(file) | |
if File.directory?(file) | |
file = file + "/data.plist" | |
end | |
begin | |
file = Zlib::GzipReader.open(file).read | |
rescue | |
end | |
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
def initialize(file) | |
begin | |
file = Zlib::GzipReader.open(file).read | |
rescue | |
end | |
@stencil = Plist::parse_xml(file) | |
end |
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
# Customize prompt | |
export DISPLAY=:0.0 | |
export PS1="\h:\w $ " |
NewerOlder