Search
Bitcoin Millionaire Jumps From Window to Escape Burglar
9.9.2019
A previously unknown event in Norway should serve as a reminder to all crypto holders to secure not only their funds but to take care of their personal security also.
According to Norwegian broadcaster TV2, a high-profile local bitcoin investor in his forties barely got away from a robbery in...
‘Single Window’ Crypto Exchange ShortHop Launches in 7 US States
27.8.2019
“Single window” crypto exchange ShortHop expands to seven U.S. states
How to Stay Safe When Using Darknet Markets
15.6.2019
If you’re planning to visit a darknet market, you’re either keen to window shop or keen to sample the wares. Whatever your reasons for stopping by, that’s your business and no one else’s. Unfortunately, not everyone shares those civilized ideals. To keep those spoilsports...
The Cryptocurrency Market Has Become a Casino
23.5.2019
Crypto trading has always entailed a blend of skill and good fortune, but in the frothy markets of 2019, that weighting is skewed heavily in favor of the latter. Fundamentals go out the window when there’s a surety that the latest token is going to pump at any moment. For traders with a...
A responsive grid layout with no media queries
9.5.2019
Andy Bell made a really cool demo that shows us how to create a responsive grid layout without any media queries at all. It happens to look like this when you change the size of the browser window:
I think this is a wonderful layout technique that’s just 6 lines (!) of CSS.
.auto-grid...
Smooth Scrolling for Screencasts
13.3.2019
Let's say you wanted to scroll a web page from top to bottom programmatically. For example, you're recording a screencast and want a nice full-page scroll. You probably can't scroll it yourself because it'll be all uneven and jerky. Native JavaScript can do smooth scrolling. Here's a tiny snippet...
How @supports Works
18.2.2019
CSS has a neat feature that allows us to test if the browser supports a particular property or property:value combination before applying a block of styles — like how a @media query matches when, say, the width of the browser window is narrower than some specified size and then the CSS within...
Prototypes and production
11.12.2018
There’s an interesting distinction that Jeremy Keith defines between prototype code and production code in this post and I’ve been thinking about it all week:
...every so often, we use the materials of front-end development—HTML, CSS, and JavaScript—to produce something that isn’t intended...
Build a state management system with vanilla JavaScript
25.7.2018
Managing state is not a new thing in software, but it’s still relatively new for building software in JavaScript. Traditionally, we’d keep state within the DOM itself or even assign it to a global object in the window. Now though, we’re spoiled with choices for libraries and frameworks to help...
Capture and Report JavaScript Errors with window.onerror
28.5.2018
onerror is a special browser event that fires whenever an uncaught