|
You are here |
www.destroyallsoftware.com | ||
| | | | |
www.java-tv.com
|
|
| | | | | 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. | |
| | | | |
mbuffett.com
|
|
| | | | | In working on Chessbook recently, I often found myself referring to (position, move) pairs. Specifically positions that are stored as EPDs, and moves that are stored in San notation. let difficulty_by_epd_san = //...; let existing_epd_sans = //...; let unique_moves_by_epd_san = //...; fn epd_san_plus_to_condition((epd, san_plus): &(String, String)) -> _ //...; I got so used to thinking of these things together as pairs, and wished I had a name for it. I couldn't think of an existing name that worked well and wasn't a mouthful like MoveFromPosition. So I made up a name. Anything that's an EPD and a San, is now a Kep. Because that's the first thing that popped in my head. It's a short, made-up name to nicely refer to a position string and a move notation. | |
| | | | |
anthonysciamanna.com
|
|
| | | | | Code katas provide an opportunity to practice our software development skills, recognize patterns, and learn how to apply techniques. In general, we pro... | |
| | | | |
www.red-gate.com
|
|
| | | Jeff Foster, Director of Technology & Innovation at Redgate, is interviewed about the best way to introduce GitHub Copilot to an engineering team. | ||