Search
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...
Never Build a CSV Importer Again
20.8.2020
(This is a sponsored post.)
CSV import as a process is broken. Messy customer data, edge cases, encoding formats, error messages, non-technical users: importing data into applications is a huge pain! Ingesting data has been long neglected as a software product experience, leading to customer...
Building Custom Data Importers: What Engineers Need to Know
6.8.2020
Importing data is a common pain-point for engineering teams. Whether its importing CRM data, inventory SKUs, or customer details, importing data into various applications and building a solution for this is a frustrating experience nearly every engineer can relate to. Data import, as a critical...
Bitcoin Taxation Support Growing Industry – Here are 5 Useful Cryptocurrency Tax Calculators
10.2.2020
For crypto owners looking to estimate how much they owe in taxes, there are some platforms with a free crypto tax calculator. They integrate with major crypto exchanges and wallets, allowing you to import your crypto transaction data and start calculating your taxes for free. Some of them also...
German Economy in Risk of Recession Amid Weak Demand, Tariff Threat, and Epidemic
8.2.2020
Germany, the economic powerhouse of Europe, is facing renewed challenges that may soon push it towards recession. Falling industrial production and dwindling factory orders are the prime cause of concern. The negative results have been announced on the backdrop of weak demand from Eurozone...
Snowpack
14.1.2020
Snowpack. Love that name. This is the new thing from the Pika people, who are on to something. It's a bundler alternative, in a sense. It runs over packages you pull from npm to make sure that they are ES module-compatible (native imports).
This is how I digest it. When you write a line of code...