These are helping me level-up so much faster than just reading the Python docs! Thanks for cranking out great content @treyhunner
https://t.co/rmBu8NDfLv
Excited to start teaching with @CodeWizardsHQ this week. Here's some great resources if you have a young one learning Python: https://t.co/dMItYt7q6P via @codewizardshq
@nybblr I'm almost through your 'Functional Design Patterns for Express.js', and wow, this is one of the better books I've had the pleasure of reading on software development. Please, keep being awesome!
Loving all of Tyler's writing. This really cleared up some jargon for me.
"Imperative vs Declarative Programming" by @tylermcginnis https://t.co/0fxRvrlF4j
Here's something a lot of JS devs are doing, but they should change their approach:
if (whatever) {
// .. a dozen lines of code
let someData = ..
// use `someData`
// .. more lines of code
}
`let` (or `const`) in the middle of a block is a code smell.