start new:
tmux
start new with session name:
tmux new -s myname
######################### | |
# .gitignore file for Xcode4 and Xcode5 Source projects | |
# | |
# Apple bugs, waiting for Apple to fix/respond: | |
# | |
# 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation? | |
# | |
# Version 2.6 | |
# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
# |
from os import path, environ | |
import datetime | |
import json | |
import sys | |
appdata = environ['APPDATA'] | |
sublime_path = 'Sublime Text 2' | |
settings_path = 'Packages\User\Preferences.sublime-settings' | |
day_profile = 'Packages/Color Scheme - Default/Solarized (Light).tmTheme' | |
night_profile = 'Packages/Color Scheme - Default/Solarized (Dark).tmTheme' |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
<?php | |
$env = $app->detectEnvironment(function() { | |
return getenv('[APPNAME]_ENV') ?: 'development'; | |
}); | |
// go on you labels pages | |
// eg https://github.com/cssnext/cssnext/labels | |
// paste this script in your console | |
// copy the output and now you can import it using https://github.com/popomore/github-labels ! | |
var labels = []; | |
[].slice.call(document.querySelectorAll(".label-link")) | |
.forEach(function(element) { | |
labels.push({ | |
name: element.textContent.trim(), |