The popular open-source contract for web designers and developers by Stuff & Nonsense
- Originally published: 23/12/2008
- Revised date: 15/12/2013
- Original post
| All times EST. Add your initials next to any slot you can take (preferably 2 - 4 hour consecutive slots), and in a few words what you plan to stream. | |
| NOTE(berkeley) fork to edit just like a repo. Then ask Quincy to merge in changes | |
| Thursday: | |
| 17:00 - | |
| 18:00 - | |
| 19:00 - | |
| 20:00 - | |
| 21:00 - |
| #See fetch_pr script https://gist.github.com/vojtajina/5538170 | |
| # fetch and checkout PR branch from "upstream" remote | |
| fetch_pr 123 | |
| git fetch upstream | |
| # Replay changes on top of master | |
| git rebase upstream/master | |
| # Replace upstream/master with this branch | |
| git push upstream pr-123:master |
| # fetching a single pull request from github | |
| # put it into ~/.profile or ~/.bashrc | |
| function fetch_pr() { | |
| PR=$1 | |
| BRANCH=$2 | |
| if [ -z $PR ]; then | |
| echo "Missing pull request number" | |
| return 1 | |
| fi |
| #!/bin/bash | |
| sudo kextunload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport | |
| sudo kextload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport |
| # npm publish with goodies | |
| # prerequisites: | |
| # `npm install -g trash conventional-recommended-bump conventional-changelog conventional-github-releaser conventional-commits-detector json` | |
| # `np` with optional argument `patch`/`minor`/`major`/`<version>` | |
| # defaults to conventional-recommended-bump | |
| # and optional argument preset `angular`/ `jquery` ... | |
| # defaults to conventional-commits-detector | |
| np() { | |
| travis status --no-interactive && | |
| trash node_modules &>/dev/null; |
| class MyComponent extends React.Component { | |
| constructor() { | |
| this.handleClick = this.handleClick.bind(this, 'Parameter'); | |
| } | |
| handleClick(param, e) { | |
| console.log('Parameter', param); | |
| console.log('Event', e); | |
| } |