Search
Awesome Forward & Reverse Geocoding API: positionstack (Sponsored)
6.2.2020
One awesome web functionality we take for granted is geolocation. Based on geolocation data, we can get someone to their destination, provide them suggestions based on their location, and so on. One downside of native geolocation, especially in the browser, is that it’s limited in both input...
4 ‘Bitcoin Contenders’ With Zero Use Cases and Barely Any Infrastructure
6.2.2020
Cryptocurrency markets and the industry are extremely competitive and many users believe a single digital asset will reign someday, and that it may not be BTC. Over the last few years, many holders believe the assets they hold are bitcoin contenders with coins like IOTA, EOS, ADA, XRP, and...
Browser Version Release Spectrum
6.2.2020
Whenever a browser upgrades versions, it's a little marketing event, and rightly so. Looks like for Firefox it's about once a month, Chrome is ~6 weeks, and Safari is once a year.
Chrome 80 just dropped, as they say, and we get a video and blog post. What strikes me about releases like this these...
Native Image Lazy Loading in Chrome Is Way Too Eager
5.2.2020
Interesting research from Aaron Peters on <img loading="lazy" ... >:
On my 13 inch macbook, with Dock positioned on the left, the viewport height in Chrome is 786 pixels so images with loading="lazy" that are more than 4x the viewport down the page are eagerly fetched by Chrome...
Fear Grips Stock Market Traders While Cryptocurrency Investors Become Greedy
4.2.2020
The clash of two emotions, fear and greed, is said to determine investors’ sentiment. This ratio draws a historical picture of the market and it’s also an indicator of its future state. As an established trend, traditional investments such as stocks and digital assets like...
World Markets – Managed Trading Accounts
4.2.2020
Trading in any market can be a difficult thing, especially if you lack technical knowledge. Luckily, there are services like managed investment accounts, where a professional does all the work for you. A managed investment account (or portfolio) can be defined as a set of assets that are given to...
Overcomplicatin’
4.2.2020
There's some famous quote that goes something like...
When we're young, we make simple things because that's all we know. Then we learn how to make complex things so we make complex things. When we grow old, we learn to make simple things again.
Brad recently wrote about this abstractly in regard...
Git Branch Autocompletion
4.2.2020
Naming git branches is something most of us have down to a science. My branch naming pattern is usually {issue number}-short-feature-description, though many developers prefer to lead with the description and end with the issue. Regardless of the pattern you use, having a feature like autocomplete...
Tesla Stock Now Looks Exactly Like Bitcoin at $20K in 2017
4.2.2020
Rampant Tesla stock may soon be in for a Bitcoin-style price retracement like in late 2017, an analyst warns
Tech Like Blockchain Will Transform Chinese Economy, Bank Chair Says
3.2.2020
The next decade will see a digital transformation in China with blockchain adoption, according to Minsheng Bank’s chairman
The Three Types of Code
3.2.2020
Every time I start a new project, I organize the code I’m looking at into three types, or categories if you like. And I think these types can be applied to any codebase, any language, any technology or open source project. Whether I’m writing HTML or CSS or building a React component, thinking...
How to Create an Animated Countdown Timer With HTML, CSS and JavaScript
3.2.2020
Have you ever needed a countdown timer on a project? For something like that, it might be natural to reach for a plugin, but it’s actually a lot more straightforward to make one than you might think and only requires the trifecta of HTML, CSS and JavaScript. Let’s make one together!
This is what...
Line’s Digital Currency Link to Be Available in Japan as Early as April 2020
3.2.2020
Launched in October 2018, Asian messaging giant Line’s Bitbox crypto exchange has made its link (LN) digital asset available to users worldwide, with the exception of notable locations like Japan and the U.S. Last Thursday the group announced it was preparing to launch the coin in...
US Politicians Want to Ban End-to-End Encryption on Messaging Services like Telegram and Whatsapp
2.2.2020
Under the guise of fighting against online child pornography, American politicians are trying to effectively ban end-to-end encryption on all communication technology platforms for everyone. Newly proposed legislation could force companies like Apple, Google and Facebook to create back doors...
Darknet Users Discuss the Connection Between DDoS Attacks and Exit Scams
1.2.2020
During the last few weeks, a number of darknet markets (DNMs) like Dread and Empire have been attacked relentlessly with heavy DDoS attacks. Meanwhile, reports disclose that Apollon is allegedly pulling an exit scam in the same fashion as Nightmare Market did last year. Darknetstats.com details...
Full Stack Panic
1.2.2020
A new podcast from Sean Fioritto inspired by Joel Califa's term "Full Stack Anxiety".
... the little voice in your head says ... “I should know all of this. Do I even know what I'm doing?” Why do web developers the world over feel like this?
There is an episode with Joel talking about it as well...
Ethereum’s Value Transfer Is Now Dominated by Stablecoins
31.1.2020
The Ethereum (ETH) blockchain has become home to a number of stablecoins. On January 29, Messari researcher Ryan Watkins explained that the stablecoin value transfer issued on the ETH chain recently flipped the number of native ether transactions. Essentially, Ethereum’s value transfer is...
Resizing Values in Steps in CSS
30.1.2020
There actually is a steps() function in CSS, but it's only used for animation. You can't, for example, tell an element it's allowed to grow in height but only in steps of 10px. Maybe someday? I dunno. There would have to be some pretty clear use cases that something like background-repeat: space...
Going Beyond Automatic SVG Compression With the “use” Element
27.1.2020
If you draw your own SVG files or if you download them from the internet, tools like this SVG-Editor or SVGOMG are your friends. Compressing the files with those tools takes only few seconds and reduces your file size a lot. But if you need to use your SVG inline to animate or interact with...
Simple Image Placeholders with SVG
27.1.2020
A little open-source utility from Tyler Sticka that returns a data URL of an SVG to use as an image placeholder as needed.
I like the idea of self-running utilities like that, rather than depending on some third-party service, like placekitten or whatever. Not that I'd advocate for feature...