As an Engineer, Write
A post on behalf of my team about why growing in your craft requires writing more than just code.
Read ItA post on behalf of my team about why growing in your craft requires writing more than just code.
Read ItA guest post on CSS Tricks in which I explore some of the times you might consider using “old school” approaches in JavaScript in order to avoid particularly heavy Babel transformations.
Read ItModern iterations of JavaScript have introduced some nice methods that make writing code a lot more legible, performant, and fun to write. Take, for example, the find() method on the Array prototype, which allows you to elegantly retrieve the first item in an array that meets some condition.const players =
Read ItA while back, I started working in a Rails application in which I needed to introduce a JavaScript file that’d be compiled with Webpacker. To do so, I created the file in my packs directory and loaded it up via content_for: <% content_for(: body_assets) do %> <%= javascript_pack_tag("some-file") %><% end %>Locally,
Read ItI’m writing a Gutenberg block for TypeIt that’ll allow content creators to easily drop typewriter effects into WordPress. The Gutenberg infrastructure is heavily rooted in the React ecosystem, so building a block feels very much like building a React application.One piece of this ecosystem that’s new to me, however, is
Read ItI’ve been seeing my preference change in how I write simple conditional statements in JavaScript. Consider the following: if (snack) { eat(snack);}Back in the day, that’s how just about every “if I have this, then do this” statement looked. As complexity and context changed, I might have pivoted a bit,
Read ItBernieSanders.js - a helper library for making next-generation punch card programs for the browser.ElizabethWarren.js - a probability and statistics library widely used in reservation casinos.AmyKlobuchar.js - a highly opinionated alternative to ESLint, providing harsher, more demanding errors (no warnings).JoeBiden.js - a battle-tested framework for building RPG games for the browser,
Read ItKristoff, seeking a career more marketable than being an iceman, enrolls in a coding bootcamp in the Southern Isles, where a bitter and vengeful Prince Hans has been forced by his brothers to maintain a legacy Backbone application.Faking a change of heart, Hans befriends Kristoff, hoping to leverage his connection
Read ItI’ve been tinkering with the Web Worker API lately, and as a result, I’m really feeling the guilt of not looking into this well-supported tool a lot sooner. Modern web applications are seriously upping demands on the browser’s main thread, impacting performance and the ability to deliver smooth user experiences.
Read ItThe front-end development space is exhausting. It moves too fast, contains too much, and it won’t wait for you to catch up. It’s hard. One thing that makes it eaiser is writing about it all — the problem solving, the tinkering with new technologies, the rubber duck attempts to wrap
Read It