What is EditorConfig? EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs. The EditorConfig project consists of a file format for defining coding styles and a collection of text editor plugins that enable editors to read the file format
How we rolled out one of the largest Python 3 migrations ever | Dropbox Tech Blog
Dropbox is one of the most popular desktop applications in the world: You can install it today on Windows, macOS, and some flavors of Linux. What you may not know is that much of the application is written using Python.
Creations – Kano World
259,013 CONNECTED KANOS  57,825,320 LINES OF CODE  682,309 CREATIONS SHARED Source: world.kano.me/creations Intro about Kano: One of the 10 most innovative companies in the world in 2017. Our achievements 150,000+ kits shipped to 86 countries 30m+ lines written by
Learn to code, the hard way – freeCodeCamp.org
Bài này viết trào phúng, muốn học lập trình thì cần đọc ngược lại, như đoạn kết của bài nói. Learn to code, the hard way These quick tricks will make learning to code as difficult and unrewarding as possible! *
How to use assertions in C
See an example of assertion to put condition on pointer not NULL: void resize( int *value ) { assert( value != NULL ); … measure( value, 0 ); … How to use assertions in C John Reekie This document describes