Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
- ⌘ : Command key
- ⌃ : Control key
- ⌫ : Delete key
- ← : Left arrow key
- → : Right arrow key
- ↑ : Up arrow key
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
Hi Nicholas,
I saw you tweet about JSX yesterday. It seemed like the discussion devolved pretty quickly but I wanted to share our experience over the last year. I understand your concerns. I've made similar remarks about JSX. When we started using it Planning Center, I led the charge to write React without it. I don't imagine I'd have much to say that you haven't considered but, if it's helpful, here's a pattern that changed my opinion:
The idea that "React is the V in MVC" is disingenuous. It's a good pitch but, for many of us, it feels like in invitation to repeat our history of coupled views. In practice, React is the V and the C. Dan Abramov describes the division as Smart and Dumb Components. At our office, we call them stateless and container components (view-controllers if we're Flux). The idea is pretty simple: components can't
The double ampersand -- or as A list apart called it "lobotomized owl selector" -- is a CSS rule that looks like the following:
* + * {
/* some declarations */
}You can also use it with a specific selector:
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Selector test</title> | |
| <link rel="stylesheet" href="test.css" /> | |
| <link rel="stylesheet" href="test2.css" /> | |
| <link rel="stylesheet" href="test3.css" /> | |
| </head> | |
| <body> |
| // ---- | |
| // Sass (v3.4.1) | |
| // Compass (v1.0.1) | |
| // ---- | |
| // where to set the default | |
| // Style shared component or Foundation? | |
| $is-minimal-template: false !default; | |
| // where to set this |
This is helpful if you've previously installed git from source on OSX, and other compilers can't find the correct path. You need to remove the current version of git, then re-install with brew.
which git
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| docker ps | awk {' print $1 '} | tail -n+2 > tmp.txt; for line in $(cat tmp.txt); do docker kill $line; done; rm tmp.txt |
| // Define those colors. | |
| $profiles: ( | |
| bandcamp: #4e9bac, | |
| delicious: #248cff, | |
| facebook: #3b5998, | |
| ficly: #b51c2c, | |
| flickr: #0063db, | |
| github: #4183c4, | |
| googleplus: #dd4b39, |