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
curl -s https://github.com/docker/compose/releases/latest | sed -e 's#<html><body>You are being <a href="https://github.com/docker/compose/releases/tag/##g' -e 's#">redirected</a>.</body></html>##' | xargs -0 -I % curl -L https://github.com/docker/compose/releases/download/%/docker-compose-`uname -s`-`uname -m` | sudo tee /usr/local/bin/docker-compose > /dev/null; sudo chmod +x /usr/local/bin/docker-compose |
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
#!/usr/bin/env bash | |
#βββββββββββββββββββββββββββββββββ | |
#β Print cask packages thet need β | |
#β to be updated β | |
#βββββββββββββββββββββββββββββββββ | |
caskList=( $(brew cask list) ) | |
for i in "${caskList[@]}"; do | |
info=( $(brew cask info $i) ) |
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
# | |
# Gzip Generation Plugin For Jekyll | |
# | |
module Jekyll | |
# | |
# Polymorphic Monkey-Patching | |
# | |
# Page, Post, and StaticFile have very different interfaces, but this plugin |
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 | |
#--------------------------------------- | |
# Node.JS Raspberry Pi Package builder | |
# Raspbian | |
# http://nodejs-news.com | |
#--------------------------------------- | |
echo "-> Getting fpm (Effing package managers) Ruby gem" | |
sudo gem install fpm --no-ri --no-rdoc |
NewerOlder