Search
Working around the viewport-based fluid typography bug in Safari
28.6.2021
Sara digs into a bug I happened to have mentioned back in 2012 where fluid type didn’t resize when the browser window resized. Back then, it affected Chrome 20 and Safari 6, but the bug still persists today in Safari …
The post Working around the viewport-based fluid typography bug...
Regulator Extends South Korean Crypto Exchanges’ AML Window by 6 Months
15.6.2021
South Korean crypto exchanges have been given a short extension in their race to get anti-money laundering (AML) protocols in place – although the nation’s top regulator has promised to place the industry under “intense scrutiny” in the months ahead.
The nation’s first piece of crypto-specific...
Latin American MPs Widen Overton Window For Bitcoin
8.6.2021
Lawmakers across the Latin American region are expressing their support for bitcoin (BTC) adoption – in the wake of the groundbreaking announcement over the weekend from the President of El Salvador that the nation aims to adopt BTC as legal tender.
MPs from Brazil, Argentina, Paraguay, and Panama...
Ripple Partner Mercury FX Accepted Into ‘First Cohort’ of a South African Regulatory Sandbox
4.4.2021
South Africa’s Inter-governmental Fintech Working Group (IFWG) recently accepted Mercury FX, a UK-based e-money firm, into the first cohort of its regulatory sandbox. The firm, which harnesses the Ripplenet blockchain, says it wants to demonstrate its technology’s ability “to...
New Details About India Banning Cryptocurrency Emerge — Crypto Community Sees Mixed Messages
16.3.2021
New details have emerged suggesting that the Indian government will go ahead with banning cryptocurrency, in contrast to what the crypto community believes. In her latest interview regarding cryptocurrency legislation, India’s finance minister said that there will be a window...
India to have a ‘window’ for Bitcoin, says minister amid crypto ban FUD
15.3.2021
The Ministry of Finance of India continues to form a careful position on private cryptocurrencies
Get 40% off This 9-in-1 Car Charger Which Also Functions as a Seatbelt Cutter and Window Breaker
13.2.2021
POVO Multifunctional Car Tool | $18 | Amazon | Promo code 3AEXKTXERead more
The Raven Technique: One Step Closer to Container Queries
10.11.2020
For the millionth time: We need container queries in CSS! And guess what, it looks like we’re heading in that direction.
When building components for a website, you don’t always know how that component will be used. Maybe it will be render as wide as the browser window is. Maybe two of them...
Quick LocalStorage Usage in Vue
5.11.2020
localStorage can be an incredibly useful tool in creating experiences for applications, extensions, documentation, and a variety of use cases. I’ve personally used it in each! In cases where you’re storing something small for the user that doesn’t need to be kept permanently...
Using Markdown and Localization in the WordPress Block Editor
23.9.2020
If we need to show documentation to the user directly in the WordPress editor, what is the best way to do it?
Since the block editor is based on React, we may be tempted to use React components and HTML code for the documentation. That is the approach I followed in my previous article, which...
Interaction Media Features and Their Potential (for Incorrect Assumptions)
14.9.2020
The Media Queries Level 4 Interaction Media Features — pointer, hover, any-pointer and any-hover — are meant to allow sites to implement different styles and functionality (either CSS-specific interactivity like :hover, or JavaScript behaviors, when queried using window.matchMedia), depending...
DeFi: A shrinking window of opportunity
12.9.2020
With regulators unlikely to change old-fashioned rules in favor of the emerging market, DeFi might be burdened under fraud and new portions of restrictions
One Action, Multiple Terminal Windows Running Stuff
8.9.2020
Many development environments require running things in a terminal window. npm run start, or whatever. I know my biggest project requires me to be running a big fancy Docker-based thing in one terminal, Ruby on Rails in another, and webpack in another. I’ve worked on other projects that...
Comparing Browsers for Responsive Design
1.9.2020
There are a number of these desktop apps where the goal is showing your site at different dimensions all at the same time. So you can, for example, be writing CSS and making sure it’s working across all the viewports in a single glance.
They are all very similar. For example, they...
Using Flexbox and text ellipsis together
22.7.2020
You can truncate a single line of text with an ellipsis (…) fairly easily with text-overflow and a few friends. But, as you might expect, that truncation happens at the end of the line of text. What if you want to truncate content in the middle?
Leonardo Faria details good use cases for this...
How-to guide for creating edge-to-edge color bars that work with a grid
1.7.2020
Hard-stop gradients are one of my favorite CSS tricks. Here, Marcel Moreau combines that idea with CSS grid to solve an issue that’s otherwise a pain in the butt. Say you have like a 300px right sidebar on a desktop layout with a unique background color. Easy enough. But then say you want...
CSS Tips for New Devs
27.5.2020
Amber Wilson has some CSS Tips for New Devs, like:
It’s not a good idea to fix shortcomings in your HTML with CSS. Fix your HTML first!
And…
You can change CSS right in your browser’s DevTools (to open them, right-click the browser window and choose “inspect”...
The Death of the ICO: Has the US SEC Closed the Global Window on New Tokens?
23.5.2020
As Telegram learned, regulators in the U.S. are a major barrier to new projects looking for funding anywhere in the world
A “new direction” in the struggle against rightward scrolling
21.5.2020
You know those times you get a horizontal scrollbar when accidentally placing an element off the right edge of the browser window? It might be a menu that slides in or the like. Sometimes we to overflow-x: hidden; on the body to fix that, but that can sometimes wreck stuff like position:...
How I Put the Scroll Percentage in the Browser Title Bar
12.5.2020
Some nice trickery from Knut Melvær.
Ultimately the trick boils down to figuring out how far you’ve scrolled on the page and changing the title to show it, like:
document.title = `${percent}% ${post.title}`
Knut’s trick assumes React and installing an additional library. I’m sure...