An introduction to curl using GitHub's API
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
| import { Component } from "React"; | |
| export var Enhance = ComposedComponent => class extends Component { | |
| constructor() { | |
| this.state = { data: null }; | |
| } | |
| componentDidMount() { | |
| this.setState({ data: 'Hello' }); | |
| } | |
| render() { |
| var s; | |
| // s is undefined | |
| new Date(s) | |
| // -> Invalid date | |
| new Date(s) < new Date() | |
| // -> false | |
| var s = null; | |
| // s is null | |
| new Date(s) |
| let arr1 = [3, 5, 2, 2, 5, 5]; | |
| let arr2 = [2, 1, 66, 5]; | |
| let unique = [...new Set([...arr1,...arr2])]; | |
| console.log(unique); | |
| // [ 3, 5, 2, 1, 66 ] |
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 lead 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'
| man() { | |
| env \ | |
| LESS_TERMCAP_mb=$(printf "\e[1;31m") \ | |
| LESS_TERMCAP_md=$(printf "\e[1;31m") \ | |
| LESS_TERMCAP_me=$(printf "\e[0m") \ | |
| LESS_TERMCAP_se=$(printf "\e[0m") \ | |
| LESS_TERMCAP_so=$(printf "\e[1;44;33m") \ | |
| LESS_TERMCAP_ue=$(printf "\e[0m") \ | |
| LESS_TERMCAP_us=$(printf "\e[1;32m") \ | |
| man "$@" |
| async.parallel({ | |
| card_count: function (cb) { | |
| db | |
| .Card | |
| .findAll({ | |
| where: {course_id: 'some id'} | |
| }) | |
| .then(function (results) { | |
| var t = []; | |
| results.forEach(function (result) { |