start new:
tmux
start new with session name:
tmux new -s myname
| /* | |
| Possible solution: transparent to :visible pseudoclass. | |
| BTW, it's not Webkit, it's chrome-only bug (at least MAC version 16.0.912.63) | |
| Feel free to comment. | |
| http://kyuumeitai.posterous.com/ | |
| */ | |
| a { | |
| -moz-transition: 1s background; | |
| -ms-transition: 1s background; |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
| /* | |
| * Copyright (c) 2010 Tobias Schneider | |
| * This script is freely distributable under the terms of the MIT license. | |
| */ | |
| (function(){ | |
| var UPC_SET = { | |
| "3211": '0', | |
| "2221": '1', | |
| "2122": '2', |
| #!/bin/bash | |
| # Script to convert PDF file to JPG images | |
| # | |
| # Dependencies: | |
| # * pdftk | |
| # * imagemagick | |
| PDF=$1 |
| # Install Homebrew | |
| # http://mxcl.github.io/homebrew/ | |
| # Install system dependencies | |
| brew install rtmpdump git | |
| # Install perl dependencies | |
| sudo perl -MCPAN -e 'install YAML::Base' | |
| sudo perl -MCPAN -e 'install Crypt::Rijndael' | |
| sudo perl -MCPAN -e 'install WWW::Mechanize' |
| say -v Fred "Fitter, happier, more productive,\ | |
| comfortable,\ | |
| not drinking too much,\ | |
| regular exercise at the gym\ | |
| (3 days a week),\ | |
| getting on better with your associate employee contemporaries,\ | |
| at ease,\ | |
| eating well\ | |
| (no more microwave dinners and saturated fats),\ | |
| a patient better driver,\ |
| // Read full blogpost explaining this at http://labs.lillyapps.no/2014/04/12/handle-timezones-parse-com | |
| var moment = require('cloud/moment-timezone.js'); | |
| moment.tz.add(require('cloud/moment-timezone-data.js')); | |
| Parse.Cloud.define("momentTest", function (request, response) | |
| { | |
| var osloSummerTime = moment.tz('2014-04-12 11:55', 'Europe/Oslo'); | |
| var osloWinterTime = moment.tz('2013-11-18 11:55', 'Europe/Oslo'); |