Search
Wendy McElroy: The Narrative and Philosophy of Cryptocurrency
5.2.2020
“The central banks of Britain, Japan, the euro zone, Sweden and Switzerland have grouped up to assess potential use cases for digital currencies. Talk of such currencies gained momentum after Facebook announced plans last year to introduce a cryptocurrency called libra,” – CNBC....
Git Branch Autocompletion
4.2.2020
Naming git branches is something most of us have down to a science. My branch naming pattern is usually {issue number}-short-feature-description, though many developers prefer to lead with the description and end with the issue. Regardless of the pattern you use, having a feature like autocomplete...
Government Think Tank Niti Aayog Identifies Key Blockchain Use Cases for India
4.2.2020
The policy think tank for the government of India, Niti Aayog, has published a strategy document identifying a number of key areas blockchain technology can significantly benefit the country. “By empowering citizens through features of transparency, decentralization and accountability...
Winklevoss Patents Tout Use Case for Gemini Stablecoin Tech in Banking
3.2.2020
Banks and other "trusted entities" could become licensed issuers of the stablecoin, the patents suggest
US Presidential Candidate Andrew Yang Says Regulations Cannot Impede Crypto, Affirms Priorities
1.2.2020
Andrew Yang, who is running for U.S. president in the 2020 election, has explained what his priorities will be regarding cryptocurrency under his administration. He said that crypto investors are finding a way to make use of their investments and regulations cannot impede it. Yang advocates for...
Hierarchies of Money: Why You Use Bank Money But the Bank Wants Reserve Currency
31.1.2020
While people tend to think of money as being all the same, the fact is governments and banks use different types of money than the everyday individual. From the top of the economic pyramid of world reserve currencies, down through central bank and commercial bank money, the capacities and function...
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...
Mercedes Will Use Blockchain to Track Carbon Emissions in Cobalt Supply Chain
30.1.2020
A joint pilot by Mercedes Benz and Circulor will track carbon emissions in the cobalt supply chain
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...
How To Start Using Bitcoin: Buying, Storing, and Spending Crypto for a Total Newb
30.1.2020
For the already initiated, there is a little spoken of land outside of crypto world where legions of normal people hear about Bitcoin and are interested, but don’t know where to begin. This is a problem considering the creator of Bitcoin, Satoshi Nakamoto, designed it as a peer-to-peer...
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...
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...
Uphold App Now Lets Users Easily Trade Directly Between Over 60 Cryptos, Fiat Currencies and Metals
29.1.2020
The new Uphold mobile app features an ‘Anything to Anything’ interface, which lets users easily trade directly between more than 60 assets. This means that Uphold users in the UK for example, can now directly buy bitcoin cash (BCH) with their local GBP fiat without having to use...
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...
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...
How to Use Business.Club to Your Advantage
28.1.2020
Disclaimer: The text below is a sponsored article that was not written by Cryptonews.com journalists.
_________
Building your own business is tricky. What’s even trickier is attracting both potential customers and partners that have a similar vision in terms of security, transparency...
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...
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...