Search
Iran makes $10M import with crypto, plans 'widespread' use by end of Sept
10.8.2022
Prolonged economic sanctions against the Islamic state have forced Iran to start using crypto as a medium of exchange for international trade deals
Iran Places First Official Import Order With Cryptocurrency Worth $10 Million
10.8.2022
Iran has placed its first official import order using cryptocurrency worth $10 million, according to a government official. “By the end of September, the use of cryptocurrencies and smart contracts will be widespread in foreign trade with target countries,” the official added. Iran...
Iran Places First Crypto-Funded Import Order, Worth $10M: Report
9.8.2022
The order came after the government amended the country's digital assets laws to allow locally mined crypto to be used to pay for imports
Kosovo Renews Crypto Mining Ban Amid Rising Energy Prices
5.8.2022
The government of Kosovo has adopted measures tailored to maintain energy supply in the coming months, including a ban on cryptocurrency mining. The move comes amid a sharp increase in import prices and the restrictions can be extended for up to six months. Authorities in Kosovo Reinstate Ban...
Thunderbird 102 přidává navigační panel a nástroj na snadný import a export dat
7.7.2022
Po necelém roce vývoje přináší Thunderbird 102 řadu vylepšení. Pro navigaci napříč e‑maily, kalendářem, adresářem a dalšími moduly a doplňky slouží postranní lišta, která pošťáka připodobňuje k nástrojům jako Outlook. Barevně si ji přizpůsobíte. Barevná je také nová sada ikon pro
India Hikes Duty on Imported Gold, Seeking to Bring Down Trade Deficit
6.7.2022
In its attempt to relieve the pressure against the rupee, the Indian government announced on July 1 that it had hiked the duty on imported gold by five percentage points to 12.5%. However, there are fears the import duty hike will spur a resurgence in the smuggling of the commodity. India’s...
Thunderbird 102 nabídne nový vzhled a usnadní import i export e-mailů
30.3.2022
Mozilla na letošek chystá další velkou aktualizaci poštovního klientu. Thunderbird 102, který vyjde zřejmě někdy během léta, ukazuje chystané novinky na oficiálním twitterovém kanálu.
Tvůrci do programu pro Windows, macOS a Linux zařadí boční navigační panel, který bude sloužit k
Jarní úklid v aplikaci Fotky Google. Snímky budou konečně řazeny do složek, těšte se i na import a digitalizaci
24.3.2022
Google si konečně vzpomněl i na mobilní aplikaci Fotky • Konečně nabídne pokročilý způsob filtrace fotek • A změn se dočká i práce se screenshoty či samotné sdílení fotografií
ECMAScript proposal: JSON modules
21.7.2021
Dr. Axel Rauschmayer looks at JSON modules, which is already live in Chrome 91 (but nothing else). It looks just like an ES Modules-style import, only you asset the type at the end.
import configData from './config-data.json' assert {type:
…
The post ECMAScript proposal: JSON modules...
VS Code node:console Fix
23.3.2021
I’ve been using Microsoft’s Visual Studio Code text editor for years with great success. The app has always been stable, flexible, and the best compliment I can give it: an afterthought. Recently, however, every time I added a console.log to a JavaScript file, VS Code would add import...
Web Frameworks: Why You Don’t Always Need Them
10.3.2021
Richard MacManus explaining Daniel Kehoe’s approach to building websites:
There are three key web technologies underpinning Kehoe’s approach:
ES6 Modules: JavaScript ES6 can support import modules, which are also supported by browsers.
Module CDNs: JavaScript modules can now
…
The...
You Can Finally Import Your Owned Levels Into Hitman 3 On PC
18.2.2021
Hitman 3 PC players who own Hitman 1 or 2 can finally import their owned levels for free, developer IO Interactive announced today.Read more
Never Import Messy Spreadsheets Again
8.2.2021
Meet Flatfile, the startup helping companies spend less time formatting spreadsheet data, and more time using it.
The post Never Import Messy Spreadsheets Again appeared first on Codrops
Life with ESM
19.1.2021
ESM, meaning ES Modules, meaning JavaScript Modules. Like, import and friends.
Browsers support it these days. There is plenty of nuance, but as long as you’ve dropped IE, the door is fairly open.
Before ESM, the situation for JavaScript …
The post Life with ESM appeared first...
Dynamic, Conditional Imports
13.1.2021
With ES Modules, you can natively import other JavaScript. Like confetti, duh:
import confetti from 'https://cdn.skypack.dev/canvas-confetti';
confetti();
That import statement is just gonna run. There is a pattern to do it conditionally though. It’s like this:
(async ()
…
The post...
Netlify & Next.js
14.12.2020
Cassidy Williams has been doing a Blogvent (blogging every day for a month) over on the Netlify Blog. A lot of the blog posts are about Next.js. There is a lot to like about Next.js. I just pulled one of Cassidy’s starters for fun. It’s very nice that it has React Fast-Refresh built-in....
HSBC Bangladesh uses blockchain to import 20,000 tons of fuel oil from Singapore
3.11.2020
HSBC Bangladesh has completed the country’s first blockchain-powered cross-border trade settled using a letter of credit
Collective #630
26.10.2020
Three.js Journey * Phosphor Icons * Understanding Modules, Import and Export in JavaScript
The post Collective #630 appeared first on Codrops
The failed promise of Web Components
20.10.2020
Lea has some words:
Perusing the components on webcomponents.org fills me with anxiety, and I’m perfectly comfortable writing JS — I write JS for a living! What hope do those who can’t write JS have? Using a custom element from the directory often needs to be preceded by a ritual of...
Import Non-ESM libraries in ES Modules, with Client-Side Vanilla JS
7.9.2020
We’re living through a weird era where there are tons of JavaScript libraries that were meant to be used as <script> tags that expose available globals. AND there are tons of JavaScript libraries that are meant to be used through module loaders. AND there are tons of JavaScript...