Search
How to Fix ESLint Errors Upon Save in VS Code
6.5.2020
Two of the most prominent utilities in web development today are ESLint and Microsoft’s Visual Studio Code. I enjoy using both, and I love the integration between both tools, but warnings from ESLint inside Visual Studio Code aren’t fulfilling — I’d rather lint errors...
US Real Estate Market Shudders: Experts Predict 40% Lower Sales, March Contracts Dip by 21%
4.5.2020
According to the National Association of Realtors, pending contracts for property sales dropped by 20.8% in March. Further, the 30-year fixed mortgage interest rate dropped to 3.43%, but a great majority of people are still not interested in buying or renting homes at the moment. Economists predict...
Chrome + System Fonts Snafu
24.4.2020
There was just a bug late last year where system fonts (at least on Mac, I don’t know what the story was on other platforms) in Chrome appeared too thin and tracked-in at small sizes and too thick and tracked-out at larger sizes. That one was fixed, thankfully. But while it was a problem,...
How to use CSS Scroll Snap
27.3.2020
Nada Rifki demonstrates the scroll-snap-type and scroll-snap-alignCSS properties. I like that the demo shows that the items in the scrolling container can be different sizes. It is the edges of those children that matter, not some fixed snapping distance.
I like Max Kohler's coverage...
Long-Festering DeFi Dapp Bug Still Not Fixed by Industry
23.3.2020
ZenGo is renewing a debate over personal responsibility and user protections, after discovering an exploit that can drain wallets of all user funds
USDZ Capital Group Launches USDZ Stablecoin
4.3.2020
Stablecoin is a cryptocurrency pegged to less volatile external assets such as official currencies, precious metals, or oil. The value of a stablecoin can also be pegged to other crypto-assets or fixed by algorithms. Stablecoins retain the same value as the underlying asset and are not subject...
Chameleonic Header
26.2.2020
Nice demo from Sebastiano Guerriero. When a fixed-position header moves from overlapping differently-colored backgrounds, the colors flop out to be appropriate for that background. Sebastiano's technique is very clever, involving multiple copies of the header within each section (where the copies...
Fixed Headers and Jump Links? The Solution is scroll-margin-top
21.2.2020
The problem: you click a jump link like <a href="#header-3">Jump</a> which links to something like <h3 id="header-3">Header</h3>. That's totally fine, until you have a position: fixed; header at the top of the page obscuring the header you're trying to link to!
Fixed...
Same HTML, Different CSS
19.2.2020
Ahmad Shadeed covers the idea of a card component that has a fixed set of semantic HTML with some BEMy classes on it. There is a title, author, image, and tags. Then he redesigns the card into five totally different designs without touching any of the HTML just the CSS.
If this is an ah-ha moment...
Bitcoin Fixed Supply Means Futures Aren’t a ‘Threat’ to Price — PlanB
26.12.2019
Bitcoin’s “inelastic” supply makes it stronger against futures manipulation, PlanB suggests
Kuverit Launches Multi Trader Marketplace
2.11.2019
To what was considered as the “dot-com bubble” in the year 2000, Blockchain technology has become as sensationalised and disruptive as the internet was in the late 1990s.Even though the technology is still in its infancy stage, individuals and corporate bodies are already leveraging on it to expand...
Ten-Ton Widgets
15.10.2019
At a recent conference talk (sorry, I forget which one), there was a quick example of poor web performance in the form of a third-party widget. The example showed a site that installed the widget in order add a "email us" button fixed to the bottom right of the viewport. Not even a live-chat widget...
A Dangerous Bug in Bitcoin’s Lightning Network Has Been Fixed
27.9.2019
Bitcoin developer Rusty Russell disclosed Friday the lightning network vulnerability that forced software upgrades in July
Bitcoin Is the Fraud? JPMorgan Metals Desk Fixed Gold Prices for Years
17.9.2019
JPMorgan back in the dock for precious metals trading fraud
Vulnerability Fixed in Facebook Contract Language for Libra Cryptocurrency
10.9.2019
The vulnerability in the Move IR compiler allows malicious actors to introduce executable code to their smart contracts," OpenZepplin’s CEO Demian Brener told CoinDesk
Marshall Islands Announces Its Digital Currency with Fixed Supply of 24 Million Tokens
5.9.2019
On September 4th, the Honourable Minister In-Assistance to the President and Environment of Marshall Islands, David Paul, officially announced that the country would issue its own sovereign currency in a digital form, leveraging blockchain technology. The announcement came as a part of an essay...
Marshall Islands Launches National Crypto With 'Fixed Supply'
4.9.2019
The digital currency will have a fixed, tamper-proof money supply, with growth predetermined at 4% per year
Blockmodo Lets You Create a Snapshot Cryptocurrency Price Widget
17.6.2019
Cryptocurrency prices never stop moving, as the market exists in a constant state of flux. There are instances, though, when it’s useful to be able to hit the pause button and view the price of a cryptocurrency at a fixed point in time. For such occasions, Blockmodo’s snapshot widgets...
Fixed Headers, On-Page Links, and Overlapping Content, Oh My!
3.4.2019
Let's take a basic on-page link:
<a href="#section-two">Section Two</a>
When clicked, the browser will scroll itself to the element with that ID: <section id="section-two"></section>. A browser feature as old as browsers themselves, just about.
But as soon as...
Scroll-Linked Animations
29.3.2019
You scroll down to a certain point, now you want to style things in a certain way. A header becomes fixed. An animation triggers. A table of contents appears. To do anything based on scroll position, JavaScript is required right now. You watch the scroll position via a DOM event and alter...