├── code-reviews.md ├── coffee.md ├── engineering-improvement.md └── writing.md /code-reviews.md: -------------------------------------------------------------------------------- 1 | # Code Reviews 2 | 3 | - [How to write the perfect pull requests](https://blog.github.com/2015-01-21-how-to-write-the-perfect-pull-request/) 4 | - [Code Review Guidelines - Thoughtbot](https://github.com/thoughtbot/guides/tree/master/code-review) 5 | -------------------------------------------------------------------------------- /coffee.md: -------------------------------------------------------------------------------- 1 | ### [Extraction Calculator](http://coffeekaizen.com/calculators/extcalculator/) 2 | -------------------------------------------------------------------------------- /engineering-improvement.md: -------------------------------------------------------------------------------- 1 | ### [On being a senior engineer](https://www.kitchensoap.com/2012/10/25/on-being-a-senior-engineer/) 2 | -------------------------------------------------------------------------------- /writing.md: -------------------------------------------------------------------------------- 1 | ### [Everything I know about blogging](https://ferrucc.io/posts/starting-a-blog/): 2 | - No one has time to read your article, write the first lines like they’re a TLDR. 3 | - The design of your site is irrelevant. 4 | - To start out you don’t need any software. 5 | - Define your audience. 6 | - Figure out where your audience is. 7 | - For SEO don’t write short articles (>2000 words) 8 | - One well researched article is better than a lot of mediocre content 9 | - Spend half of the time writing, half promoting. 10 | - Spend 50% of the writing time actually writing, the rest tweaking, reading and illustrating. Details are important. 11 | - Spill all your secrets. Don’t be worried about the fact that you’ll run out of content, you won’t. 12 | - There are no rules, slowly craft your unique style. 13 | - Go back in your old posts and link them to newer ones. 14 | - Start a Newsletter. 15 | - Do what everyone else is afraid to do. 16 | - Reach out to people asking for things or offering tips. 17 | 18 | ### [How to write a technical paper](https://news.ycombinator.com/item?id=18225197) 19 | --------------------------------------------------------------------------------