Skip to content

Instantly share code, notes, and snippets.

Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry and just ignore them. Thanks!
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry and just ignore them. Thanks!
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by watchman configure 3.3.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ ./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/watchman/HEAD --with-pcre
## --------- ##
## Platform. ##
@sahrens
sahrens / gist:58057ff90c13268b62d0
Created May 1, 2015 20:26
React Native text crash
var TextBug = React.createClass({
getInitialState: function() {
return {seeMore: false};
},
render: function() {
return (
<Text
style={styles.container}
onPress={() => this.setState({seeMore: !this.state.seeMore})}>
<Text>Tap to see more (bugs).</Text>