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
sudo pacman -S libmagick6 | |
PKG_CONFIG_PATH=/usr/lib/imagemagick6/pkgconfig gem install rmagick | |
# or with bundler: | |
PKG_CONFIG_PATH=/usr/lib/imagemagick6/pkgconfig bundle install |
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
unless defined?(reload!) | |
def reload! | |
original_verbosity = $VERBOSE | |
$VERBOSE = nil | |
$LOADED_FEATURES.select { |f| f.include? Dir.pwd }.each { |f| load f } | |
$VERBOSE = original_verbosity | |
end | |
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
var el = document.createElement('script'); | |
el.src = "https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js"; | |
el.type = "text/javascript"; | |
document.head.appendChild(el) |
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 clone https://github.com/rdkit/conda-rdkit.git | |
- git clone https://github.com/conda/conda-recipes.git | |
- copy -rf conda-recipes/cairo conda-rdkit/ | |
- cd conda-rdkit | |
- conda build boost | |
- conda build cairo | |
- Edit meta.yml (git source, tags) | |
- pandas ==0.19 (https://github.com/rdkit/conda-rdkit/issues/50) |
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 _loadScript = function(path) { | |
var script = document.createElement('script'); | |
script.type = 'text/javascript'; | |
script.src = path; | |
document.head.appendChild(script); | |
}; | |
// Usage: for d3js | |
_loadScript('http://d3js.org/d3.v3.min.js'); |