start new:
tmux
start new with session name:
tmux new -s myname
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: supervisord | |
| # Required-Start: $remote_fs | |
| # Required-Stop: $remote_fs | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Example initscript | |
| # Description: This file should be used to construct scripts to be | |
| # placed in /etc/init.d. |
| ▟███▙ *** | |
| █ █ * * | |
| ▕█████▏ *** | |
| █ █ * * | |
| ▜███▛ *** | |
| ╭─╮╭─╮ | |
| ├─╮├─┤ | |
| ╰─╯╰─╯ | |
| ╺┓ ╺━┓╺━┓╻ ╻┏━╸┏━╸╺━┓┏━┓┏━┓┏━┓ | |
| ┃ ┏━┛╺━┫┗━┫┗━┓┣━┓ ┃┣━┫┗━┫┃ ┃ ╏ |
| machine github.com | |
| login technoweenie | |
| password SECRET | |
| machine api.github.com | |
| login technoweenie | |
| password SECRET |
| #!/bin/bash | |
| # Copyright (c) 2012 Yu-Jie Lin | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| # this software and associated documentation files (the "Software"), to deal in | |
| # the Software without restriction, including without limitation the rights to | |
| # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | |
| # of the Software, and to permit persons to whom the Software is furnished to do | |
| # so, subject to the following conditions: | |
| # |
| // | |
| // gorun - Script-like runner for Go source files. | |
| // | |
| // https://wiki.ubuntu.com/gorun | |
| // | |
| // Copyright (c) 2011 Canonical Ltd. | |
| // | |
| // Written by Gustavo Niemeyer <[email protected]> | |
| // | |
| package main |
| #!/bin/sh | |
| # Command-line world clock | |
| # Taken from http://stackoverflow.com/questions/370075/command-line-world-clock | |
| # .worldclock.zones file looks like: | |
| # US/Pacific | |
| # Europe/Berlin | |
| # Chile/Continental | |
| : ${WORLDCLOCK_ZONES:=$HOME/.worldclock.zones} |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
A list of amazingly awesome PHP libraries, resources and shiny things.
| #!/bin/bash | |
| # Copyright (c) 2010, 2013 Yu-Jie Lin | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| # this software and associated documentation files (the "Software"), to deal in | |
| # the Software without restriction, including without limitation the rights to | |
| # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | |
| # of the Software, and to permit persons to whom the Software is furnished to do | |
| # so, subject to the following conditions: | |
| # |