Search
Kraken Users’ Report Difficulties With Connecting to Site and API
13.8.2019
Kraken has warned the public that it is receiving reports of clients having issues connecting to the site and API
Binance KYC Breach — Did It Happen, and If So, Who’s to Blame?
10.8.2019
Hacker demands 300 Bitcoin from Binance in lieu of alleged stolen KYC data
Coinbase Exploring Eight New Assets in Bid to Expand Market Access
5.8.2019
Coinbase announced it is exploring support for eight new cryptos, and ultimately wants to support a vast majority of digital assets globally
then on Objects
5.8.2019
Promises were a revelation in JavaScript development, allowing us to enjoy async processing and avoid callback hell. Many new APIs like Battery API, Cache API, and others use the promise API. One fact you may not know is that you can add a then method to any object to make it Promise-like!...
Fetching Data in React using React Async
1.8.2019
You’re probably used to fetching data in React using axios or fetch. The usual method of handling data fetching is to:
Make the API call.
Update state using the response if all goes as planned.
Or, in cases where errors are encountered, an error message is displayed to the user.
There will always...
A More Accessible Portals Demo
31.7.2019
The point of the <portal> element (behind a flag in Chrome Canary) is that you can preload another whole page (like <iframe>), but then have APIs to animate it to the current page. So "Single Page App"-like functionality (SPA), but natively. I think that's pretty cool. I'm a fan...
Creating Dynamic Routes in a Nuxt Application
30.7.2019
In this post, we’ll be using an ecommerce store demo I built and deployed to Netlify to show how we can make dynamic routes for incoming data. It’s a fairly common use-case: you get data from an API, and you either don’t know exactly what that data might be, there’s a lot of it, or it might change....
JavaScript Proxy with Storage
26.7.2019
The JavaScript Proxy API provides a wealth of “magic” within JavaScript, allowing you to use any object as sort of an alias that allows a wall of validation, formatting, and error throwing. Did you know that you could also employ the Proxy API as an abstraction to different types...
Pseudo Code
23.7.2019
Yonatan Doron wrote a post on Medium not long ago called "Art of Code — Why you should write more Pseudo Code." Love that title, as a fan of pseudo code myself. That is, writing "code" that describes something you want to do or communicate, but that isn't of any particular language and doesn't...
5 Minute Serverless Functions in Azure without an IDE
22.7.2019
Microsoft Azure makes it incredibly easy to get a basic API/microservice up and running quickly! If you are unfamiliar with building serverless architectures in the Microsoft ecosystem, using Azure
Improving Video Accessibility with WebVTT
17.7.2019
"The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect."
- Tim Berners-Lee
Accessibility is an important element of web development, and with the ever-growing prevalence of video content, the necessity for captioned content is growing...
A Peek at New Methods Coming to Promises
16.7.2019
Promises are one of the most celebrated features introduced to JavaScript. Having a native asynchronous artifact baked right into the language has opened up a new era, changing not only how we write code but also setting up the base for other freat APIs — like fetch!
Let's step back a moment...
Liquid Exchange Launches BCH/USDC Trading Pairs
10.7.2019
The global cryptocurrency trading platform Liquid has announced the release of its new BCH/USDC trading pairs allowing anyone to swap bitcoin cash for the popular stablecoin USDC. Moreover, Liquid users will soon be able to connect their accounts to Bitcoin.com’s new Bitcoin Cash Register...
Blockchain Browsers — How DLT Could Affect Web Surfing
5.7.2019
Blockchain browsers have begun to gain popularity, but will the new technology overthrow global search giants?
Collective #528
1.7.2019
Bounds.js * CSS Animation Worklet API * Numverify * HTML can do that? * Using Basis Textures in Three.js
Collective #528 was written by Pedro Botelho and published on Codrops
Multicoin, Intel Capital Invest $3.6 Million in Startup Demystifying Blockchain Data
26.6.2019
Multicoin Capital and Intel Capital have led a $3.6 million seed round for blockchain API startup, dfuse
Opera Releases iOS Version of its ‘Blockchain-Ready’ Mobile Web Browser
26.6.2019
Web browser Opera has released new iOS version, complete with an Ethereum wallet and support for Ethereum dApps
Spam Detection APIs
25.6.2019
I was trying to research the landscape of these the other day — And by research, I mean light Googling and asking on Twitter. Weirdly, very little comes to mind when thinking about spam detection APIs. I mean some kind of URL endpoint, paid or not, where you can hit it with a block of text...
Spam Detection APIs
25.6.2019
I was trying to research the landscape of these the other day — And by research, I mean light Googling and asking on Twitter. Weirdly, very little comes to mind when thinking about spam detection APIs. I mean some kind of URL endpoint, paid or not, where you can hit it with a block of text...
Handling File Uploads in GraphQL and Vue
19.6.2019
In this tutorial, I'll be showing you how to hand file uploads in GraphQL by building a fullstack app. The tutorial will be divided into two main sections: building the GraphQL API and the frontend