├── .editorconfig ├── .gitattributes └── readme.md /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | 10 | [*.md] 11 | trim_trailing_whitespace = false 12 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Ask me anything! 2 | 3 | ## [Ask a question](../../issues/new)     [Read questions](../../issues?q=is%3Aissue+is%3Aclosed) 4 | 5 | My name is Dan Abramov. 6 | 7 | I'm known for contributing to projects in React ecosystem and creating [React Hot Loader](https://github.com/gaearon/react-hot-loader) and [Redux](https://github.com/rackt/redux). 8 | This AMA is a good place to ask me personal or work-related questions. 9 | Ask me anything! 10 | 11 | - 12 | 13 | ### Guidelines 14 | 15 | - Ensure your question hasn't already been answered. 16 | - Use a succinct title and description. 17 | - Bugs & feature requests should be opened on the relevant issue tracker. 18 | - Support questions are better asked on Stack Overflow. 19 | - Be civil and polite :) 20 | 21 | ### Links 22 | 23 | - [Read more AMAs](https://github.com/sindresorhus/amas) 24 | - [Create your own AMA](https://github.com/sindresorhus/amas/blob/master/create-ama.md) 25 | - [What's an AMA?](https://en.wikipedia.org/wiki/Reddit#IAmA_and_AMA) 26 | --------------------------------------------------------------------------------