Search
Comparing Node JavaScript to JavaScript in the Browser
18.2.2022
Being able to understand Node continues to be an important skill if you’re a front-end developer. Deno has arrived as another way to run JavaScript outside the browser, but the huge ecosystem of tools and software built with Node mean …
Comparing Node JavaScript to JavaScript in the Browser...
Introducing Svelte, and Comparing Svelte with React and Vue
4.11.2021
Josh Collingsworth is clearly a big fan of Svelte, so while this is a fun and useful comparison article, it’s here to crown Svelte the winner all the way through.
A few things I find compelling:
One of the
…
The post Introducing Svelte, and Comparing Svelte with React and...
Comparing Google Analytics and Plausible Numbers
8.10.2021
I saw this blog post the other day: 58% of Hacker News, Reddit and tech-savvy audiences block Google Analytics. That’s an enticing title to me. I’ve had Google Analytics on this site literally from the day I launched it. …
The post Comparing Google Analytics and Plausible Numbers...
Comparing HTML Preprocessor Features
30.9.2021
(This is a sponsored post.)
Of the languages that browsers speak, I’d wager that the very first one that developers decided needed some additional processing was HTML. Every single CMS in the world (aside from intentionally headless-only CMSs) …
The post Comparing HTML Preprocessor...
Comparing Methods for Appending and Inserting With JavaScript
24.9.2021
Let’s say we want to add something to a webpage after the initial load. JavaScript gives us a variety of tools. Perhaps you’ve used some of them, like append, appendChild, insertAdjacentHTML, or innerHTML.
The difficult thing …
The post Comparing Methods for Appending...
React usePrevious Hook
23.8.2021
Hooks are essential for the functional component pattern in React. One frequent logic comparison with class components was comparing a previous prop value with a current prop value via lifecycle methods. So what’s an easy pattern for duplicating previous value comparisons in functional...
Analyst Predicts ‘Refreshed Bull Market’ for Bitcoin, Price Heading Toward $100K
6.8.2021
Bloomberg Intelligence analyst Mike McGlone sees “a refreshed bull market” for bitcoin. Comparing the performance of the cryptocurrency to the start of 2019, he explained, “we see performance parallels that could get the benchmark crypto back on track toward $100,000.”...
Polkadot – Vitalik’s Nightmare or a Blockchain Dream Come True?
30.7.2021
Although it’s possible to draw comparisons between almost any two blockchain development platforms, comparing Ethereum with Polkadot is almost an inevitability. Not only on the technical level – they use a comparable architecture and proof-of-stake consensus to achieve scalability...
Comparing the True Costs of Gold Mining in Africa With Those of Bitcoin Mining
24.5.2021
When billionaire Elon Musk announced that Tesla would no longer accept bitcoin as payment for its electric vehicles, the price of the crypto asset tanked. In justifying this decision, Musk cited bitcoin mining’s inefficient use of electricity as well as its impact on the environment. In fact...
Migrating from Parcel to Snowpack
10.5.2021
I find build tooling endlessly interesting, especially right now as we’re in a juicy next-gen transitional period with players like Vite, wmr, Snowpack, and esbuild. Hugh Haworth has a good run-down of the new players, and we’ve chatted on …
The post Migrating from Parcel...
COIN recap: Comparing Coinbase’s first day to other major public listings
15.4.2021
From price volatility to becoming the most valuable U.S. exchange, here is how well Coinbase’s first day of trading tracks with other companies
Why Netlify?
14.4.2021
I think it’s fair to think of Netlify as a CDN-backed static file host. But it would also be silly to think that’s all it is. That’s why I think it’s smart for them to have pages like this, comparing …
The post Why Netlify? appeared first on CSS-Tricks.
You...
Comparing the New Generation of Build Tools
8.4.2021
A bunch of new developer tools have landed in the past year and they are biting at the heels of the tools that have dominated front-end development over the last few years, including webpack, Babel, Rollup, Parcel, create-react-app.
These new …
The post Comparing the New Generation of Build...
Hiding Content Responsibly
24.2.2021
We’ve covered the idea of hiding things in CSS many times here, the most recent post being Marko Ilic’s “Comparing Various Ways to Hide Things in CSS” which did a nice job of comparing different techniques which you’d use in different …
The post Hiding...
Why Comparing Bitcoin to Visa Doesn’t Make Any Sense
14.2.2021
A reading of Nic Carter’s latest essay for CoinDesk on the inappropriateness of comparing the energy consumption of bitcoin and Visa transactions
Painting With the Web
1.12.2020
Matthias Ott, comparing how painter Gerhard Richter paints (do stuff, step back, take a look) to what can be the website building process and what can wreck it:
[…] this reminds me of designing and building for the Web: The unpredictability, the peculiarities of the material,...
Cryptowisser Announces Most Comprehensive Exchange Comparison Tool on the Market
23.11.2020
PRESS RELEASE. Leading crypto service comparison site, Cryptowisser has now released its revolutionary VS comparison tool, which helps you compare cryptocurrency exchanges against each other in an instant. Comparing cryptocurrency exchanges has – up until now – been very difficult...
Copyediting with Semantic HTML
17.11.2020
Tracking changes is a quintessential copyediting feature for comparing versions of content. While we’re used to tracking changes in a word processing document, we actually have HTML elements capable of that. There are a lot of elements that we can use for this process. The main ones we’ll look...
Comparing Static Site Generator Build Times
28.10.2020
There are so many static site generators (SSGs). It’s overwhelming trying to decide where to start. While an abundance of helpful articles may help wade through the (popular) options, they don’t magically make the decision easy.
I’ve been on a quest to help make that decision easier. A colleague...
Comparing Various Ways to Hide Things in CSS
27.10.2020
You would think that hiding content with CSS is a straightforward and solved problem, but there are multiple solutions, each one being unique.
Developers most commonly use display: none to hide the content on the page. Unfortunately, this way of hiding content isn’t bulletproof because now that...