Having trouble installing the latest stable version of tmux?
I know, official package for your OS/distro is outdated and you just want the newest version of tmux.
Well, this script should save you some time with that.
- gcc
| gem 'lograge' # more readable logs | |
| gem 'logstash-event' # for logstash json format | |
| gem 'mono_logger' # threadsafe logging |
Having trouble installing the latest stable version of tmux?
I know, official package for your OS/distro is outdated and you just want the newest version of tmux.
Well, this script should save you some time with that.
| require 'dalli' | |
| require 'memcachier' | |
| module Sprockets | |
| module Cache | |
| # A simple Memcache cache store. | |
| # | |
| # environment.cache = Sprockets::Cache::MemcacheStore.new | |
| # | |
| class MemcacheStore |
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: deluge-daemon | |
| # Required-Start: $local_fs $remote_fs | |
| # Required-Stop: $local_fs $remote_fs | |
| # Should-Start: $network | |
| # Should-Stop: $network | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Daemonized version of deluge and webui. |
| #!/bin/bash -xe | |
| #Set locale | |
| echo "export LANGUAGE=en_AU.UTF-8" > /tmp/locale | |
| echo "export LANG=en_AU.UTF-8" >> /tmp/locale | |
| echo "export LC_ALL=en_AU.UTF-8" >> /tmp/locale | |
| cat /etc/bash.bashrc >> /tmp/locale | |
| cp /tmp/locale /etc/bash.bashrc | |
| locale-gen en_AU.UTF-8 | |
| dpkg-reconfigure locales |
| #!/usr/bin/env ruby | |
| # Complete rake tasks script for bash | |
| # Save it somewhere and then add | |
| # complete -C path/to/script -o default rake | |
| # to your ~/.bashrc | |
| # Xavier Shay (http://rhnh.net), combining work from | |
| # Francis Hwang ( http://fhwang.net/ ) - http://fhwang.net/rb/rake-complete.rb | |
| # Nicholas Seckar <[email protected]> - http://www.webtypes.com/2006/03/31/rake-completion-script-that-handles-namespaces | |
| # Saimon Moore <[email protected]> |
| function rbenvsudo(){ | |
| executable=$1 | |
| shift 1 | |
| sudo $(rbenv which $executable) $* | |
| } |
| # Update, upgrade and install development tools: | |
| apt-get update | |
| apt-get -y upgrade | |
| apt-get -y install build-essential git-core curl libssl-dev \ | |
| libreadline5 libreadline5-dev \ | |
| zlib1g zlib1g-dev \ | |
| libmysqlclient-dev \ | |
| libcurl4-openssl-dev \ | |
| libxslt-dev libxml2-dev |