Search
Electroneum Price Analysis: Is It Time To Say Our Goodbyes To Electroneum (ETN)?
4.6.2019
Is this IT for Electroneum? I think so! Until and unless altcoins season is welcomed by the users switching their interest from the sharks, Electroneum might have to do some serious thinking. However, everyone is hoping that Electroneum can successfully realize a bulk movement to stay in the game....
Collapsed Crypto Exchange Cryptopia Owes Creditors $2.7 Million: Liquidators
31.5.2019
The liquidators of hacked New Zealand crypto exchange Cryptopia say it owes over $2.7 million to creditors, while user losses are still unknown
Researchers Say 50,000 Servers Worldwide Infected With Privacy Coin Cryptojacking Malware
29.5.2019
As many as 50,000 servers worldwide have allegedly been infected with an advanced cryptojacking malware that mines privacy-focused cryptocurrency turtlecoin
Major Bitcoin Accumulation Was Underway by Big Money During Crypto Winter, Analysts Say
29.5.2019
The number of wallets holding between 1,000-10,000 bitcoin has seen a sharp increase since the market bottomed this winter, indicating significant accumulation during the price dip
Color contrast accessibility tools
29.5.2019
Accessibility is all the rage these days, specifically when it comes to color contrast. I’ve stumbled upon a couple of tools this week that I think are pretty nifty for helping make sure that all of the text on our websites is legible regardless of what background color they might have.
First...
Night Mode with Mix Blend Mode: Difference
27.5.2019
Dark mode designs are all the rage right now but here’s an interesting take: Wei Gao has built a night mode on her own site that uses mix-blend-mode: difference to create an effect that looks like this:
Wei explains how she implemented this technique and the edge cases she encountered along...
Dogecoin (DOGE) Price Analysis: Is It Time To Say Goodbye To Dogecoin?
25.5.2019
Dogecoin is known to be one of the most fluctuating altcoin looking at the trends in the news. But now, the price action of Dogecoin is becoming a real issue. Dogecoin is still struggling while other coins seem to go uphold the mark in the market already. Extreme inflation is a real concern for...
The Browser Can Remember Edited Content
22.5.2019
You can make the text inside any HTML element editable by adding the contenteditable attribute.
<div contenteditable>
Hey, I'm like a textarea kinda now!
</div>
I wouldn't say there are wheelbarrows full of use-cases for that, but it's neat. One possible use might be...
Bitcoin Cash Upgrade and 30K Stores Accepting BCH in the Weekly Update From Bitcoin.com
19.5.2019
Bitcoin Cash network successfully undergoes an upgrade and more than 30,000 new stores now accept BCH payments. Watch these and other developments discussed in this week’s video update on Bitcoin.com’s Youtube channel. Also Read: After Trillions Printed Under QE, Politicians Now...
After Trillions Printed Under QE, Politicians Now Say Deficits Don’t Matter
19.5.2019
When quantitative easing (QE) was introduced, it was likened to a drug, with central banks making an emergency injection of money to resuscitate the global economy. Now it seems that some politicians have gotten addicted to this drug, going as far as to claim that government deficits don’t...
Evergreen Googlebot
16.5.2019
I've heard people say that the #1 most exciting and important thing that came out of Google I/O this year was the evergreen Googlebot:
Today, we are happy to announce that Googlebot now runs the latest Chromium rendering engine (74 at the time of this post) when rendering pages for Search. Moving...
Say Hello to NEM (XEM) Version 2.0 Blockchain Engine- The Catapult
14.5.2019
On 12th of this month, ‘NEM official’ announced about the launch of its blockchain engine’s version 2.0 on Twitter. Audience’s excitement can be well estimated by the two hundred and sixteen likes and eighty-seven re-tweets of the post. What is unique about this blockchain engine is that it...
Netlify Functions for Sending Emails
23.4.2019
Let's say you're rocking a JAMstack-style site (no server-side languages in use), but you want to do something rather dynamic like send an email. Not a problem! That's the whole point of JAMstack. It's not just static hosting. It's that plus doing anything else you wanna do through JavaScript...
Tabs: It’s Complicated™
19.4.2019
I've said before one quick and powerful thing you can learn as a front-end developer just getting starting with JavaScript is changing classes.
const button = document.querySelector(".my-button");
const element = document.querySelector(".content");
button.addEventListener("click", function()...
Make it hard to screw up driven development
2.4.2019
Development is complicated. Our job is an ongoing battle between getting the job done and doing that job in a safe, long-lasting way.
Developers say things like, "I'm just going to do this quick and dirty first," because it's taken as fact that if you code anything quickly, it not only will...
WSJ Claim of $9 Mln Laundered Via Shapeshift Based on Flawed Investigation, Analysts Say
21.3.2019
Analysts have accused the Wall Street Journal of using flawed investigative methods and grossly overestimating the extent of alleged laundering via crypto exchange ShapeShift
Blurred Borders in CSS
20.3.2019
Say we want to target an element and just visually blur the border of it. There is no simple, single built-in web platform feature we can reach for. But we can get it done with a little CSS trickery.
Here's what we're after:
The desired result.
Let's see how we can code this effect, how we...
Designing An Aspect Ratio Unit For CSS
13.3.2019
Rachel Andrew says that the CSS Working Group designed an aspect ration unit at a recent meeting. The idea is to find an elegant solution to those times when we want the height of an element to be calculated in response to the width of the element, or vice versa.
Say, for example, we have a 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...
CSS Algorithms
6.3.2019
I wouldn't say the term "CSS algorithm" has widespread usage yet, but I think Lara Schenck might be onto something. She defines it as:
a well-defined declaration or set of declarations that produces a specific styling output
So a CSS algorithm isn't really a component where there is some parent...