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
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.
" THIS IS MODIFIED, and IN PROGRESS. I'll make it more official when I'm ready. | |
" | |
" Vim indent file | |
" Language: Php | |
" Authors: Miles Lott <[email protected]>, Johannes Zellner <[email protected]>, Pim Snel <[email protected]> | |
" URL: http://www.vim.org/scripts/script.php?script_id=604 | |
" URL: http://lingewoud.nl/downloads.php | |
" Last Change: 23 feb 2004 | |
" Version: 0.3 | |
" Notes: This is a combination of the PHP indent file of Miles Lott with |
Normally the installation of MySQL can be achieved with a single command, which executes a script provided by MacMiniVault :
bash <(curl -Ls http://git.io/eUx7rg)
However, at the time of writing the script is not compatible with OS X El Capitan (10.11)
An alternative to the aforementioned installation script is installing MySQL using Homebrew. This gist assumes you already have Homebrew installed, if not first read the article "Homebrew and El Capitan"
Make sure Homebrew has the latest formulae, so run brew update
first
using System; | |
class Program | |
{ | |
static void Main() | |
{ | |
// 1: 文字列のローカル日付を取得 | |
var localDate1 = DateTime.Now; | |
Console.WriteLine(localDate1.ToString("yyyy-MM-dd HH:mm:ss")); |
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.
#!/bin/bash | |
# Script for installing tmux on systems where you don't have root access. | |
# tmux will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e | |
TMUX_VERSION=1.8 |