Search
Another Crypto Exchange Discourages the Use of Bitcoin Mixing Services
30.1.2020
The cryptocurrency exchange Binance was recently scrutinized for flagging a customer’s funds because the individual had used a bitcoin mixing application. Now the platform Paxos Global is discouraging the use of crypto mixers after a customer allegedly sent coins to a mixing service. Also...
Sticky Table of Contents with Scrolling Active States
30.1.2020
Say you have a two-column layout: a main column with content. Say it has a lot of content, with sections that requires scrolling. And let's toss in a sidebar column that is largely empty, such that you can safely put a position: sticky; table of contents over there for all that content in the main...
“resize: none;” on textareas is bad UX
30.1.2020
Catalin Rosu:
Sometimes you need to type a long reply that consists of many paragraphs and wrapping that text within a tiny textarea box makes it hard to understand and to follow as you type. There were many times when I had to write that text within Notepad++ for example and then just paste...
Bank Frick Expands Range of Crypto Assets to Offer Trading and Custodian Services for Bitcoin Cash
30.1.2020
Bank Frick, a leading European blockchain bank, has expanded its range of cryptocurrencies for which it offers trading and custodian services. Bank Frick now offers trading and secure custody of bitcoin cash (BCH) for professional market participants and wealthy private clients. Trading takes place...
Understanding Immutability in JavaScript
30.1.2020
If you haven’t worked with immutability in JavaScript before, you might find it easy to confuse it with assigning a variable to a new value, or reassignment. While it’s possible to reassign variables and values declared using let or var, you'll begin to run into issues when you try that with...
Uses This
30.1.2020
A little interview with me over on Uses This. I'll skip the intro since you know who I am, but I'll republish the rest here.
What hardware do you use?
I'm a fairly cliché Mac guy. After my first Commodore 64 (and then 128), the only computers I've ever had have been from Apple. I'm...
Free Website Builder + Free CRM + Free Live Chat = Bitrix24
30.1.2020
(This is a sponsored post.)
You may know Bitrix24 as the world’s most popular free CRM and sales management system, used by over 6 million businesses. But the free website builder available inside Bitrix24 is worthy of your attention, too.
Why do I need another free website/landing...
Swiss Resort Town Zermatt Accepts Bitcoin for Government Services
30.1.2020
Zermatt, a municipality in Switzerland at the foot of the Matterhorn known for its ski resort, has started accepting bitcoin for government services. The Zermatt town hall now has a point-of-sale solution, installed by Zug-based Bitcoin Suisse, to accept the cryptocurrency. A spokesperson for...
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...