Search
Build a dynamic JAMstack app with GatsbyJS and FaunaDB
23.1.2020
In this article, we explain the difference between single-page apps (SPAs) and static sites, and how we can bring the advantages of both worlds together in a dynamic JAMstack app using GatsbyJS and FaunaDB. We will build an application that pulls in some data from FaunaDB during build time...
Crypto Custody Provider Ledger Extends Reach in Asia With New Institutional Client
23.1.2020
Ledger is partnering with dapp provider FLETA, offering legally compliant custody solutions as part of its push to expand in Asia
JAMstack vs. Jamstack
21.1.2020
It's just a word to evoke the idea that serving as much as you can statically while using client-side code and hitting serverless APIs for any needs after that.
The "official website" changed their language from JAMstack (evoking the JavaScript, APIs, and Markup acronym) to Jamstack. It's nothing...
Canada’s DMG Blockchain Installs 1,000 New Bitcoin Mining Rigs for US Client
9.1.2020
DMG Blockchain Solutions has set up 1,000 new Bitcoin mining rigs at its British Columbia facility for an unnamed U.S. client
The Ultimate Guide to Dark Mode for Email Marketers
7.1.2020
On the regular web (I suppose) we handle "dark mode" with the CSS prefers-color-scheme media query. But, and to nobody's surprise, it's way weirder in the land of HTML email. The weirdness is that across different email clients, they handle the dark mode thing differently, starting with the fact...
A Deep Dive Into Satoshi’s 11-Year Old Bitcoin Genesis Block
3.1.2020
11 years ago today, Satoshi Nakamoto launched the Bitcoin network at approximately 18:15:05 UTC and the world hasn’t been the same since. The Bitcoin blockchain came to life on January 3, 2009, and so far, more than 600,000 blocks have been mined into existence. Nakamoto’s genesis block...
Ethereum Completes Muir Glacier Hard Fork But Leaves One Client Behind
2.1.2020
Muir Glacier hard fork goes live on Ethereum mainnet, but not everyone is ready
Google Bans Crypto App Metamask From Play Store
29.12.2019
Soon after Google-owned Youtube has swung the strikes hammer against video content creators that talked about cryptocurrency-related topics, another arm of the search monopoly has taken down a popular ethereum dapps client. Also Read: Youtube ‘Christmas Purge’ Has Content Creators...
Having a Little Fun With Custom Focus Styles
2.12.2019
Every front-end developer has dealt or will deal with this scenario: your boss, client or designer thinks the outline applied by browsers on focused elements does not match the UI, and asks you to remove it. Or you might even be looking to remove it yourself.
So you do a little research and find...
Oh, the Places JavaScript Will Go
19.11.2019
I tend to be pretty vocal about the problems client-side JavaScript cause from a performance perspective. We're shipping more JavaScript than ever to our user's devices and the result is increasingly brittle and resource-intensive experiences. It's... not great.
But that doesn't mean I don't like...
Paxos Debuts Fiat Gateway With Binance Crypto Exchange as Its First Client
12.11.2019
Major cryptocurrency exchange Binance has integrated Paxos’ newly released Fiat Gateway
Binance Exchange Is First Client for Paxos’ New Dollar Gateway
12.11.2019
The regulated firm is opening up its stablecoin-to-USD swaps facility to third parties, starting with Binance
Ripple's Client Base Up 50%, c. 7% Use XRP for Cross-Border Liquidity
7.11.2019
California-based blockchain startup focusing on payment technologies, Ripple, has seen its client base grow 50% this year, while some 7% use XRP for cross-border liquidity.
“This year has been our strongest for Ripple yet,” Brad Garlinghouse, CEO of Ripple, said in a recent interview with a Forbes...
CME Group Publishes Bitcoin Options Specifications
2.11.2019
In mid-September, the foreign exchange company CME Group announced the launch of options on its bitcoin futures contracts in Q1 2020, pending regulatory review. CME Group executive Tim McCourt said there was “increasing client demand” for the firm’s bitcoin derivatives and now...
The Teletype Text Element Lives On… at Least on This Site
11.10.2019
It was this: <tt>
I say "was" because it's deprecated. It may still "work" (like everybody's favorite <marquee> in some browsers), but it could stop working anytime, they say. The whole purpose of it was to display text in a monospace font, like the way Teletype machines used...
Bitcoin History Part 18: The First Bitcoin Wallet
6.10.2019
Bitcoin users today are blessed with a panoply of feature-rich software and hardware wallets. When Bitcoin launched, however, there were no wallets. It took Satoshi Nakamoto to engineer the first desktop client, and his creation proved surprisingly resilient, serving the community faithfully...
International Crypto Exchange Luno Adds Bitcoin Cash Trading
29.9.2019
Luno exchange has added bitcoin cash trading to the platform following feedback from its client base. BCH is now only the third cryptocurrency available for trading on the exchange, in addition to BTC and ETH, but more options could be on the way once Luno determines that they are credible enough....
Preloading Pages Just Before They are Needed
27.9.2019
The typical journey for a person browsing a website: view a page, click a link, browser loads new page. That's assuming no funny business like a Single Page App, which still follows that journey, but the browser doesn't load a new page — the client fakes it for the sake of a snappier...
Meeting GraphQL at a Cocktail Mixer
26.9.2019
GraphQL and REST are two specifications used when building APIs for websites to use. REST defines a series of unique identifiers (URLs) that applications use to request and send data. GraphQL defines a query language that allows client applications to specify precisely the data they need from...
Filtering Data Client-Side: Comparing CSS, jQuery, and React
24.9.2019
Say you have a list of 100 names:
<ul>
<li>Randy Hilpert</li>
<li>Peggie Jacobi</li>
<li>Ethelyn Nolan Sr.</li>
<!-- and then some -->
</ul>
...or file names, or phone numbers, or whatever. And you want to filter them...