As configured in my dotfiles.
start new:
tmux
start new with session name:
| $ curl -O ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.9.tar.gz | |
| $ tar -xzvf ncurses-5.9.tar.gz | |
| $ cd ./ncurses-5.9 | |
| $ ./configure --prefix=/usr/local \ | |
| --without-cxx --without-cxx-binding --without-ada --without-progs --without-curses-h \ | |
| --with-shared --without-debug \ | |
| --enable-widec --enable-const --enable-ext-colors --enable-sigwinch --enable-wgetch-events \ | |
| && make | |
| $ sudo make install |
| # First install tmux | |
| brew install tmux | |
| # For mouse support (for switching panes and windows) | |
| # Only needed if you are using Terminal.app (iTerm has mouse support) | |
| Install http://www.culater.net/software/SIMBL/SIMBL.php | |
| Then install https://bitheap.org/mouseterm/ | |
| # More on mouse support http://floriancrouzat.net/2010/07/run-tmux-with-mouse-support-in-mac-os-x-terminal-app/ |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| SERVER = 'imap.gmail.com' | |
| USERNAME = 'XXX' | |
| PW = 'XXX' | |
| require 'net/imap' | |
| require 'net/smtp' | |
| require 'tmail' | |
| require 'maruku' | |
| def to_markdown(text) | |
| Maruku.new(text).to_html |
| <?php | |
| //load VDF data either from API call or fetching from file/url | |
| //no matter your method, $json must contain the VDF data to be parsed | |
| $json = file_get_contents("items_game.txt"); | |
| //encapsulate in braces | |
| $json = "{\n$json\n}"; | |
| //replace open braces | |
| $pattern = '/"([^"]*)"(\s*){/'; |
| # Encoding: utf-8 | |
| # | |
| # idle.rb | |
| # | |
| # goal: | |
| # Ruby script to test how to fetch IMAP mails with IDLE mode. | |
| # IMAP IDLE allow a sort of "push" / "real-time" delivery. | |
| # | |
| # I used the script to test LATENCY (end-to-end delivery times) |
| #!/bin/bash -e | |
| # | |
| # Improved backup script for Ubiquiti UniFi controller | |
| # original source: http://wiki.ubnt.com/UniFi#Automated_Backup | |
| # | |
| # must contain: | |
| # username=<username> | |
| # password=<password> | |
| source ~/.unifi-backup |