Search
Every dog has its day: Dogecoin and Shiba Inu fetch 50% gains as altcoins rally
10.8.2021
New use cases and a massive token burn signal that the dog days of summer could be over for DOGE and SHIB
How to Cancel Pending API Requests to Show Correct Data
25.6.2021
I recently had to create a widget in React that fetches data from multiple API endpoints. As the user clicks around, new data is fetched and marshalled into the UI. But it caused some problems.
One problem quickly became evident: …
The post How to Cancel Pending API Requests to Show Correct...
Fetch.ai Collaborates with IOTA - A Deep Dive
11.6.2021
Fetch.ai finally announced entering into a partnership with IOTA for connecting the Autonomous Economic Agents with the resourceful data network of IOTA. The collaboration between Fetch.ai and IOTA resolves data discoverability by establishing a smooth, real-time, and seamless connection between...
Fetch.ai and IOTA announce new data sharing IOT partnership
9.6.2021
“The fundamental goal of this collaboration is to enable granular control over data and to reduce the reliance on centralized systems that take advantage of data,” said Humayun Sheikh, CEO of Fetch.ai
Ma, Fetch The RTX 3090, Red Dead Redemption 2’s Gone VR
22.5.2021
After releasing a virtual reality mod for Grand Theft Auto V last year, developer Luke Ross is back with a similar project for its wild west cousin, Red Dead Redemption 2.Read more
A South African NFT Marketplace Officially Launches After Trial Phase Nets Over $10,000 for Rugby Star Bryan Habana
2.5.2021
A South African non-fungible token (NFT) marketplace, Momint has officially launched following the end of the two-week trial phase which saw the artwork of former rugby player Bryan Habana fetch over $10,000. More than 800 people from 25 countries took part in the auction. The Momint marketplace...
Fetch.ai (FET) hits a 2-year high after DeFi integration and Bosch partnership
7.3.2021
Strong fundamentals, high-profile partnerships and a pivot toward DeFi back FET's rally to a multi-year high
Fetch.ai spinoff launches decentralized commodities exchange
26.2.2021
Mettalex claims to be fully decentralized, meaning “no counterparty and no single point of control.”
Bosch teams up with Fetch.ai to launch blockchain and develop Web 3.0 tech
18.2.2021
The two companies are cooperating to develop practical use cases for blockchain technology
Using AbortController as an Alternative for Removing Event Listeners
15.2.2021
The idea of an “abortable” fetch came to life in 2017 when AbortController was released. That gives us a way to bail on an API request initiated by fetch() — even multiple calls — whenever we want.
Here’s a super …
The post Using AbortController as an Alternative for Removing Event Listeners...
Fetch.ai to Develop Decentralized Marketplace for Global Manufacturer FESTO
12.2.2021
Fetch.ai's technology stack will be leveraged to "transform" FESTO's existing legacy control systems
Fetch and Yoti join forces to bring KYC to autonomous DeFi agents
19.1.2021
Fetch believes regulatory compliance is necessary to bring real world usage to the sector
Cloudinary Fetch with Eleventy (Respecting Local Development)
4.12.2020
This is about a wildly specific combination of technologies — Eleventy, the static site generator, with pages with images on them that you ultimately want hosted by Cloudinary — but I just wanna document it as it sounds like a decent amount of people run into this situation.
The deal:
Cloudinary...
Digital Currency Group IPO could easily fetch $4 billion, says Messari
12.11.2020
Could Digital Currency Group be the first major crypto company to go public?
cookieStore: Async Cookie API
20.10.2020
One pattern in the JavaScript API world that web development veterans will notice is that we’ve been creating new methods to accomplish what older, grosser APIs once achieved. XMLHttpRequest became the fetch API, some APIs like Battery became async, and there are dozens of other examples....
Netlify Edge Handlers
13.10.2020
Some very cool news from Netlify: Edge Handlers are in Early Access (request it here). I think these couple of lines of code do a great job in explaining what an Edge Handler is:
export function onRequest(event) {
console.log(`Incoming request for ${event.request.url}`);
...
5 Awesome JavaScript Promise Tricks
14.9.2020
The Promise API changed the game in JavaScript. We went from abusing setTimeouts and settling for synchronous operations to doing everything possible to leverage this new async API. Let’s check out a handful of awesome Promise API tricks! Cancel a fetch Request One problem we instantly...
Waves Tech Partners with Fetch.ai to Boost AI Services
25.8.2020
DeFi focused blockchain ecosystem Waves Tech has announced a partnership with autonomous artificial intelligence accelerator Fetch.ai, to make AI solutions more accessible to multiple blockchain networks via the Gravity Protocol. Together, Waves Tech and Fetch.ai will conduct a joint R&D...
Coinbase Reviewing 19 Crypto Assets for Listing, Including Wrapped Bitcoin and Paxos Gold
1.8.2020
Crypto exchange Coinbase said Friday that it is reviewing 19 cryptocurrencies for possible listing. These new assets are: Ampleforth, Band Protocol, Balancer, Blockstack, Curve, Fetch.ai, Flexacoin, Helium, Hedera Hashgraph, Kava, Melon, Ocean Protocol, Paxos Gold, Reserve Rights, tBTC, The Graph...
WordPress-Powered Landing Pages on a Totally Different Site via Cloudflare Workers
22.7.2020
What if you have some content on one site and want to display that content on another site? We can do this in the browser no problem. We can fetch it, and plunk it onto the page.
Ajax, right? Ugh. Now we’re in client-side rendered site territory, which isn’t great for performance...