/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.markhorsell.com
| | endormi.io
9.9 parsecs away

Travel
| | I maintain a couple of open source projects and contribute to many projects. Here are just a few of the projects that I maintain: automation - Collection of my automated tasks written in Python. awesome-dj - List of reasons why Django is awesome for web development && Django bootstrap boilerplate. devisle/advanced-react-cli - An NPM package which aims to provide a better way to install packages for your react application through an intuitive CLI.
| | blog.martinig.ch
9.9 parsecs away

Travel
| | Informations and opinions about software architecture, developers on call, holacracy, Scrum, continuous testing, product management, saying thank you, tech leadership, customer journey maps, code reviews, code sharing, good bugs, android testing and open source project management.
| | jrsinclair.com
5.6 parsecs away

Travel
| | In the last article, we saw how functional programming can be used with arrays. In this article we examine higher-order functionsfunctions for making functions.
| | www.hillelwayne.com
16.7 parsecs away

Travel
| What does this print? x = 1 x -> 0 Think it through, then try it in a browser console! Answer and explanation in the dropdown. Show answer It prints 1. wait wtf At the beginning of a line (and only at the beginning of a line), -> starts a comment. The JavaScript is parsed as x=1; x; // 0 The browser then displays the value of the last expression, which of course is 1.