Search
How Do You Do max-font-size in CSS?
30.1.2020
CSS doesn't have max-font-size, so if we need something that does something along those lines, we have to get tricky.
Why would you need it at all? Well, font-size itself can be set in dynamic ways. For example, font-size: 10vw;. That's using "viewport units" to size the type, which will...
Resizing Values in Steps in CSS
30.1.2020
There actually is a steps() function in CSS, but it's only used for animation. You can't, for example, tell an element it's allowed to grow in height but only in steps of 10px. Maybe someday? I dunno. There would have to be some pretty clear use cases that something like background-repeat: space...
Close to $6k in Bitcoin Cash Tips Paid to Read.cash Authors Last Week
29.1.2020
The read.cash blog has been a resource for the Bitcoin Cash (BCH) community for a while now but ever since the recent miner funded development proposal, the blogging site has gathered significant traction. For instance, the front page of read.cash shows that during the last week, more than $5,730...
New Chainalysis Report Sheds Light on Darknet Markets and the Need for Onchain Privacy
29.1.2020
Darknet market activity hit new highs in 2019, as shown in a new report from blockchain forensics firm Chainalysis. Despite concerted attempts from law enforcement (LE) to crack down on darknet markets (DNMs), coupled with several exit scams, crypto inflows and outflows surpassed $800 million last...
Four Layouts for the Price of One
29.1.2020
Pretty notable when a tweet about a flexbox layouts gets 8K+ likes on Twitter!
4 layouts for the price of 1, thanks flex ????
css` form { display: flex; flex-wrap: wrap;
& > input { flex: 1 1 10ch; margin: .5rem;
&[type="email"] { flex: 3...
Practice GraphQL Queries With the State of JavaScript API
29.1.2020
Learning how to build GraphQL APIs can be quite challenging. But you can learn how to use GraphQL APIs in 10 minutes! And it so happens I've got the perfect API for that: the brand new, fresh-of-the-VS-Code State of JavaScript GraphQL API.
The State of JavaScript survey is an annual survey of...
Apollo GraphQL without JavaScript
29.1.2020
It's cool to see progressive enhancement being done even while using the fanciest of the fancy front-end technologies.
This is a button in a JSX React component that has a click handler applied directly to it that fires a data mutation Ajax request through Apollo GraphQL. That is about the least...
India Unveils National Blockchain Strategy, Calling on RBI to Issue Digital Currency
29.1.2020
India’s National Strategy on Blockchain has been published. It recommends, among other things, for the Reserve Bank of India (RBI) to issue a central bank digital currency. The Ministry of Electronics and Information Technology tasked the National Institute for Smart Government with drafting...
Singapore Introduces Licensing for Crypto Platforms, New Payment Services Now Act in Force
29.1.2020
The Monetary Authority of Singapore (MAS) has announced the commencement of the city-state’s new Payment Services Act. The law mandates the implementation of a licensing regime that applies to payment providers, exchanges and other platforms dealing with cryptocurrencies. Their operators...
International Crypto Exchange Liquid Develops Perpetual BTC Contracts With Up to 100x Leverage
28.1.2020
Leverage allows cryptocurrency traders unsatisfied with market volatility to make stronger plays on smaller movements. Trading platforms offer various ways to use leverage in order to capture this segment. The latest example is Liquid, an exchange that developed perpetual BTC contracts with up...
Use and Reuse Everything in SVG… Even Animations!
28.1.2020
If you are familiar with SVG and CSS animations and started to work with them often, here are some ideas you might want to keep in mind before jumping into the job. This article will be about learning how to build and optimize your code with <use> element, CSS Variables and...
Set Type on a Circle… with offset-path
28.1.2020
Here's some legit CSS trickery from yuanchuan. There is this CSS property offset-path. Once upon a time, it was called motion-path and then it was renamed. I sort of rolled my eyes at the time, because the property is so obviously for animating things along a path. But you don't have to use it...
aviationstack
28.1.2020
(This is a sponsored post.)
I wonder how many startup ideas have something to do with air travel? 🤔
It's such a big industry with so many pain points its no wonder that it inspires ideas for building new products. Here's the thing about a lot of startup ideas: you need data. Chances...
Bitcoin.com Update: Dev Fund Proposal ‘Will Not Go Through’ Without More Agreement
28.1.2020
The BCH infrastructure funding proposal initially announced by Jiang Zhuoer on January 22 will not go through as planned without greater agreement in the Bitcoin Cash community, Bitcoin.com has announced via a read.cash post uploaded today. Also Read: Heated Debate Continues Over Bitcoin Cash...
Hearing Concluded: Indian Supreme Court Deliberates on Crypto vs RBI Case
28.1.2020
The Indian supreme court has finished hearing the crypto vs. Reserve Bank of India (RBI) case. The hearing concluded on Tuesday with the counsel for the Internet and Mobile Association of India wrapping up his arguments, followed by arguments by the counsel representing crypto exchanges. The court...
Swiss Bank Julius Baer Offers New Digital Asset Services With Licensed Crypto Bank SEBA
28.1.2020
Switzerland, a nation that’s been quite positive towards crypto business, is facilitating the integration between its traditional financial sector and the blockchain industry. With greater regulatory clarity and stability coming, established banks are plucking up the courage to offer digital...
What does “revert” do in CSS?
28.1.2020
Miriam Suzanne has a Mozilla Developer video on the subject. The revert value is fairly new, supported in Firefox and Safari, but not yet in Chrome-world. We've already got a couple of related keywords that work on any property which are meant to help control inheritance and reset values....
Woodworking SVG (and Other Real Life Encounters)
27.1.2020
Eric Meyer does his woodworking math in SVG.
I’ve been hand-coding SVG schematics to figure out how thing should go together, and as a by-product, guide me in both material buying and wood cutting.
This might sound hugely bespoke and artisanally overdone, but they’re not that complicated, and...
Going Beyond Automatic SVG Compression With the “use” Element
27.1.2020
If you draw your own SVG files or if you download them from the internet, tools like this SVG-Editor or SVGOMG are your friends. Compressing the files with those tools takes only few seconds and reduces your file size a lot. But if you need to use your SVG inline to animate or interact with...
Simple Image Placeholders with SVG
27.1.2020
A little open-source utility from Tyler Sticka that returns a data URL of an SVG to use as an image placeholder as needed.
I like the idea of self-running utilities like that, rather than depending on some third-party service, like placekitten or whatever. Not that I'd advocate for feature...