Search
Sotheby’s Cancels Cryptopunks NFT Auction After Consignor ‘Decided to Hodl’ Collectibles
25.2.2022
On February 8, the multinational luxury auction company Sotheby’s announced the firm would be auctioning 104 Cryptopunk non-fungible token (NFT) collectibles, but before the event started Sotheby’s canceled the event. It seems “0x650d,” the owner of the Cryptopunks NFTs...
Reliably Send an HTTP Request as a User Leaves a Page
22.2.2022
On several occasions, I’ve needed to send off an HTTP request with some data to log when a user does something like navigate to a different page or submit a form. Consider this contrived example of sending some information to …
Reliably Send an HTTP Request as a User Leaves a Page originally...
Luxury Auction House Sotheby’s Plans to Auction 104 Cryptopunks Worth an Estimated $20M
9.2.2022
On Tuesday, the British-founded American multinational luxury auction company Sotheby’s, headquartered in New York City, announced the auction house is planning to auction a lot of 104 non-fungible token (NFT) Cryptopunks. The lot of 104 NFTs is predicted to fetch around $20 million to...
Proxying Third-Party JavaScript as First-Party JavaScript (and the Potential Effect on Analytics)
2.11.2021
First, check out how incredibly easy it is to write a Cloudflare Worker to proxy another URL:
addEventListener("fetch", (event) ={
event.respondWith(
fetch("https://css-tricks.com")
);
});
It doesn’t have any error handling or anything, but hey, it works:
Now imagine how …
The...
Web Streams Everywhere (and Fetch for Node.js)
29.9.2021
Chrome developer advocate Jake Archibald called 2016 “the year of web streams.” Clearly, his prediction was somewhat premature. The Streams Standard was announced back in 2014. It’s taken a while, but there’s now a consistent streaming API implemented …
The post Web Streams...
Fetch.ai (FET) ignores the Bitcoin-led market meltdown by notching a 60% gain
8.9.2021
FET price spiked by 60% in an otherwise red market thanks to a growing number of real-world use cases and protocol upgrades
Doge meme hits $220M valuation, as Sotheby's Bored Apes auction is tipped to fetch $18M
3.9.2021
After a successful fractionalization into $DOG Tokens, the total implied value of the Original Doge meme NFT has gone through the roof
Fetch.ai launches NFT platform for AI-generated art
24.8.2021
Artificial intelligence could provide nonfungible token creators with a more streamlined approach for creating and selling their digital art
British Court Orders Binance to Identify and Freeze Hackers’ Accounts After a User Claims Funds Stolen
14.8.2021
A U.K. judge has reportedly ordered cryptocurrency exchange Binance to identify hackers and freeze their accounts after one of its users claimed to be the victim of a $2.6 million hack. Binance Ordered to Help Recover Funds Allegedly Stolen in a Hack A London high court has ordered global...
London court orders Binance to trace hackers behind $2.6M Fetch.ai attack
13.8.2021
"We need to dispel the myth that cryptoassets are anonymous. The reality is that with the right rules and applications they can be tracked, traced and recovered," said Syedur Rahman
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...