- Docker on Ubuntu
- Gitlab container with Mailgun mailing support
- nginx reverse-proxy with docker-gen
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
javascript:(function(){void (d=document);void (el=d.getElementsByTagName("link"));void (count=0);for(i=0;i<el.length;i++){if(el[i].getAttribute("rel").indexOf("alternate")!=-1){if(count==0){ty=el[i].getAttribute("type");if(ty.indexOf("application/rss+xml")!=-1||ty.indexOf("text/xml")!=-1){h=el[i].getAttribute("href");if(h.indexOf("comments")==-1){if(h.indexOf("/")==0){window.open("http://www.feedly.com/home#subscription/feed/"+location.protocol+"//"+location.host+h,"_blank")}else{window.open("http://www.feedly.com/home#subscription/feed/"+h,"_blank")}}}}count++}}void 0})() |
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
#!/bin/sh | |
GITHUB_USERS=(mochi udon soba) | |
DESTINATION=~/.ssh/authorized_keys | |
rm -rf "$DESTINATION" | |
for user in ${GITHUB_USERS[@]} | |
do | |
curl -L https://github.com/${user}.keys >> "$DESTINATION" |
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
#!/bin/sh | |
# Usage: brew smash app-name | |
if [ -z "$1" ] ; then | |
echo "Usage: brew smash app-name" | |
exit 1 | |
fi | |
if [ ! -d "Casks" ] ; then | |
KEEP_CLEAN=true |
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
class Platformio < Formula | |
desc "An open source ecosystem for IoT development" | |
homepage "http://platformio.org" | |
url "https://pypi.python.org/packages/source/p/platformio/platformio-2.8.4.tar.gz" | |
sha256 "5728bee3281a10e33f4727da0cdb3f7b1f333fd415fdbbde6ad1591a963344b5" | |
depends_on :python if MacOS.version <= :snow_leopard | |
resource "bottle" do | |
url "https://pypi.python.org/packages/source/b/bottle/bottle-0.12.9.tar.gz" |
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
#!/bin/bash | |
brew cask install basictex | |
export PATH="/Library/TeX/texbin:$PATH" | |
sudo tlmgr update --self --all | |
sudo tlmgr install collection-langjapanese draftcopy | |
# tlmgr search —global foobar |
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
#!/bin/bash | |
export PATH=/usr/local/cuda/bin:$PATH | |
export CPATH=/opt/cudnn/include | |
export LIBRARY_PATH=/usr/local/cuda/lib:/opt/cudnn/lib | |
export LD_LIBRARY_PATH=$LIBRARY_PATH | |
export DYLD_LIBRARY_PATH=$LIBRARY_PATH | |
LDFLAGS="-F/Library/Frameworks -framework CUDA" pip install --no-cache-dir chainer |
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
#!/bin/bash | |
set -eu | |
GOOWNER=uetchy | |
GONAME=nv | |
GOTAG=v2.0.0 | |
if [[ `uname -s` =~ ([Dd]arwin|mac os x) ]]; then | |
GOOS="darwin" |
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
# install CUDA 8.0 | |
brew cask install cuda | |
## add alias for libcuda.dylib to suppress the issue related to TensorFlow - https://github.com/tensorflow/tensorflow/issues/3263 | |
sudo ln -s /usr/local/cuda/lib/libcuda.dylib /usr/local/cuda/lib/libcuda.1.dylib | |
# install cuDNN 5.1 | |
# get cuDNN from https://developer.nvidia.com/rdp/cudnn-download | |
tar xzf cudnn-8.0-osx-x64-v5.1.tgz | |
sudo cp cuda/include/cudnn.h /Developer/NVIDIA/CUDA-8.0/include |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer