Use line breaks in Zoom Chat on your Mac
Did you know you can use line breaks in Zoom chat on your Mac?! I’m willing to accept that I’m the last person to know this …
Read more ⇨code, design, and digital products in austin-ish, texas
Did you know you can use line breaks in Zoom chat on your Mac?! I’m willing to accept that I’m the last person to know this …
Read more ⇨Whether you prefer “schema first” or “resolver first”, GraphQL development should definitely be “types first”. One aspect of planning your data types is nullability, and this is important to get right. Nullability in GraphQL is different than how we handle null values in other environments, like REST or gRPC APIs.
Read more ⇨While adding the plumbing for a new JavaScript website project, I knew it needed an ESLint config to keep my code linted and clean. So I installed ESLint the usual way, answered a few questions to customize my install, and I went along my merry way.
Here’s how to fix “Parsing error: Unexpected token” errors from ESLint when working in Visual Studio Code …
Read more ⇨To kick off 2019, I wanted to start the new year off with cleaner code, with more automation and less effort. This post should help you and your team kick your new year off with consistently beautiful code, too!
Most importantly, read through to the end to find out how to turn on the “auto-format on save” settings for ESLint, which allows auto-fixing of many problems every time a file is saved!
Read more ⇨Developers are increasingly working across multiple projects, and we need a sane method of changing contexts within our local development environment very quickly – or running them all at once – to remain efficient. Keep reading to learn how to run an Nginx proxy on your local machine to shepherd requests to port 80 to other apps running on various ports, using the path of the request to determine which app to forward to.
Read more ⇨Sure, you can add file globbing patterns to a CLI arg to run a single JavaScript test, or group of tests, but it’s not super convenient and often requires a trip to your README to remember how to do it. Here’s a quicker way.
Read more ⇨The linter-phpmd plugin for Atom is popular with PHP and WordPress developers, but it relies on having phpmd installed and available on your PATH. Without it, you might see an error: “[Linter] Error running PHPMD Error: Failed to spawn command `phpmd`. Make sure `phpmd` is installed and on your PATH”
If you’ve seen this error in your Atom Developer Tools, the fix is quite simple …
Read more ⇨Have you seen your WebDriver tests fail with vague errors or timeouts when trying to locate and interact with elements on your page?
Following the best practices in this post will help you minimize random failures while running automated browser tests via WebDriver.io and Selenium.
Read more ⇨I never mind reviewing PRs from my coworkers, but I do want to minimize interruptions knowing I typically have other tasks in-flight. To help make the overhead of switching contexts (and branches) more efficient, try using the git pr command found in https://github.com/tj/git-extras …
Read more ⇨