Ipapi: A Simple, Scalable IP Lookup Tool
WordPress 5.0 Beta 1 Now Available for Testing
Demystifying JavaScript Testing
Many people have messaged me, confused about where to get started with testing. Just like everything else in software, we work hard to build abstractions to make our jobs easier. But that amount of abstraction evolves over time, until the only ones who really understand it are the ones who built the abstraction in the first place. Everyone else is left with taking the terms, APIs, and tools at face value and struggling to make things work.
One thing I …
The post Demystifying JavaScript Testing appeared first on CSS-Tricks.
Torque Toons: Ouija Dashboard
The post Torque Toons: Ouija Dashboard appeared first on Torque.
WCEU Team is Working on PWA Support for All WordCamp Websites
Minimalist Graphic Design: 10 Examples & Tips
Hand roll charts with D3 like you actually know what you’re doing
Charts! My least favorite subject besides Social Studies. But you just won’t get very far in this industry before someone wants you to make a chart. I don’t know what it is with people and charts, but apparently we can’t have a civilization without a bar chart showing Maggie’s sales for last month so by ALL MEANS — let’s make a chart.
Yes, I know this is not how you would display this data. I’m trying to make a point…
The post Hand roll charts with D3 like you actually know what you’re doing appeared first on CSS-Tricks.
New Plugin Adds Elementor Templates as Gutenberg Blocks
How to stop using console.log() and start using your browser’s debugger
Whenever I see someone really effectively debug JavaScript in the browser, they use the DevTools tooling to do it. Setting breakpoints and hopping over them and such. That, as opposed to sprinkling console.log()
(and friends) statements all around your code.
Parag Zaveri wrote about the transition and it has clearly resonated with lots of folks! (7.5k claps on Medium as I write).
I know I have hangups about it…
- Part of debugging is not just inspecting code once as-is;
…
The post How to stop using console.log() and start using your browser’s debugger appeared first on CSS-Tricks.