Explore >> Select a destination


You are here

wpsoftware.net
| | mazzo.li
2.2 parsecs away

Travel
| | [AI summary] The author announces the open-sourcing of TernFS, a distributed filesystem used in production, and highlights its development history and available code repository.
| | cowlark.com
4.1 parsecs away

Travel
| |
| | hjr265.me
4.6 parsecs away

Travel
| | Git has this great feature that I think is well-known but under-used. I am talking about Git hooks. With Git hooks, you can run scripts during different Git actions. Like this one: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #!/bin/sh GOFILES=`git diff --name-only --cached | grep -e '.go$' | grep -ve 'vendor/'` UNFMTFILES=() for f in $GOFILES; do if [ -n "`gofmt -l -s .
| | www.java-tv.com
16.1 parsecs away

Travel
| This video reveals the long lost secret of how to write readable Java code. Self explaining method names, fluent interfaces, DSLs, helpful frameworks... We are always looking for ways to make our code more readable. But in our quest, we seem to have forgotten something. The most effective way to make any code more readable.