Weekly - issue 18

Code-first vs. Product-first

Code-first programmers love the code they write – the code is the thing.

For product-first programmers, the end product is, well, the product, not the code, and what matters to them is how well that product actually solves the underlying problem.

Which one are you? or both?

Side Project 指南

快速实现一个 Side Project、获取用户并赚钱的小手册。

Programming Notes for Professionals books

There are 48 books, Java, C++, JavaScript, Linux etc. They are compiled from Stack Overflow Documentation.

The book content is the answers written by the people at Stack Overflow.

Inspecting Web Views in macOS

Using the Safari Web Inspector to inspect web components within native macOS apps.

Quick and Dirty Text Diffing

Do a quick diff on two sets of text:

  • diff file1.txt file2.txt;

  • code --diff file1.txt file2.txt;

    Will launch Visual Studio Code.

  • In Visual Studio Code, CMD + Shift + P -> “Compare Active File With…”;

  • vim -d file1.txt file2.txt;

Also can use:

  • diff -u file1.txt file2.txt | vim -R -;

    Has code highlighting.

  • git diff file1.txt file2.txt;

    Both files can not be in a Git Repository, but no file name Auto-completion.