Search
PR: Hashcube Announces Bitcoin Mining Investment Forum in Thailand
8.9.2019
Hashcube, a Korean Bitcoin miner retail and mining company, is proud to present Thailand’s first ever bitcoin mining investment forum on 21st September at the Amari Watergate Bangkok.
Together with large players from the crypto-industry such as Bitkub, BTC.com, Coolbitx and Cryptomind, we’re...
Alive, Thriving and Totally Unauthorized: Inside the Underground Market for Telegram’s Cryptocurrency
19.8.2019
Telegram forbade investors from selling their gram tokens before launch. Yet the secondary market for grams is lively – and rife with risk
WATCH: Inside the Story – The Attempted Binance KYC Extortion Explained
12.8.2019
In this video we explore how we researched and wrote our Binance KYC Leak story and what we know about the hacker, the hack, and the future of Binance
A Bitcoin Extortion Gone Wrong: Inside Binance’s Negotiations With Its ‘KYC Hacker’
8.8.2019
This is the inside story of how a "white hat hacker" approached Binance with inside information - and how it went wrong
How much specificity do @rules have, like @keyframes and @media?
31.7.2019
I got this question the other day. My first thought is: weird question! Specificity is about selectors, and at-rules are not selectors, so... irrelevant?
To prove that, we can use the same selector inside and outside of an at-rule and see if it seems to affect specificity.
body {
background:...
WATCH: The Facebook Libra Hearings: Everything You Missed in 5 Minutes
28.7.2019
From Silicon Valley to Washington, DC, Facebook's Libra is causing concern everywhere it turns up. This CoinDesk video explores what happened in the halls of power when the first major corporation joined the crypto party
CSS :not() with Multiple Classes
22.7.2019
Say you want to select an element when it doesn't have a certain class. That's what the :not() selector is for.
body:not(.home) {
}
But what if there are multiple classes you want to avoid?
There are no logical combinators with :not(), like and or or, but you can chain them, which...
Position Sticky and Table Headers
13.7.2019
You can't position: sticky; a <thead>. Nor a <tr>. But you can sticky a <th>, which means you can make sticky headers inside a regular ol' <table>. This is tricky stuff, because if you didn't know this weird quirk, it would be hard to blame you. It makes way more...
Color Inputs: A Deep Dive into Cross-Browser Differences
12.7.2019
In this article, we'll be taking a look at the structure inside <input type='color'> elements, browser inconsistencies, why they look a certain way in a certain browser, and how to dig into it. Having a good understanding of this input allows us to evaluate whether a certain cross-browser...
Trying the New WSL 2. It's Fast! (Windows Subsystem for Linux)
2.7.2019
Windows Subsystem for Linux is the tool that was released by Microsoft to get a full UNIX system inside of Windows. Microsoft has put in some good initiatives for developers after purchasing GitHub
Keep Your Money and Passport Safe With Products You Can Buy With BCH
28.6.2019
In this day and age, carrying your wallet, passport and mobile phone inside the inner pocket of your jacket is simply not enough to protect your assets. Thankfully, there’s a company called Tarriss which offers products designed to secure both your digital cash and personal data. It sells...
Watch Facebook’s Libra Videos: An Inside Look At the Calibra Wallet
19.6.2019
Facebook provider primers for folks not quite up on their blockchain tech. Here are a few of the best
How to Section Your HTML
18.6.2019
The sectioning elements in HTML5 are <nav>, <aside>, <article>, and <section>. <body> is also kind of a sectioning element since all content lying inside of it is part of the default document section.
Here is a brief explanation of each sectioning element...
Inside Monero’s ‘Last Ditch Effort’ to Block Crypto Mining ASICs
12.6.2019
The Monero community is making one last attempt to block specialized mining hardware devices from the network
What if we got aspect-ratio sized images by doing almost nothing?
7.6.2019
Say you have an image you're using in an <img> that is 800x600 pixels. Will it actually display as 800px wide on your site? It's very likely that it will not. We tend to put images into flexible container elements, and the image inside is set to width: 100%;. So perhaps that image ends...
How to Easily Convert Funds From BTC to BCH
28.5.2019
Converting funds from one cryptocurrency to another using an exchange can be costly and time consuming, especially if you don’t already have a verified account at one. Luckily there are much faster and convenient ways, such as switching from BTC to BCH right inside the Bitcoin.com Wallet app....
Bogota’s EXMA 2019 Will Feature Bitcoin Cash Payments at Home Burgers
26.5.2019
At this year’s EXMA conference in Bogota on May 27-28, attendees will find that payment processor Pagos Inteligentes will allow bitcoin cash (BCH) payments at Home Burgers inside the Movistar Arena. The EXMA event is one of the biggest entrepreneurship conferences in Latin America and Pagos...
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...
The “Inside” Problem
20.5.2019
So, you're working on a design. You need a full-width container element because the design has a background-color that goes from edge-to-edge horizontally. But the content inside doesn’t necessarily need to be edge-to-edge. You want to:
Limit the width (for large screens)
Pad the edges
Center...
Footnotes That Work in RSS Readers
17.5.2019
Feedbin is the RSS reader I'm using at the moment. I was reading one of Harry's blog posts on it the other day, and I noticed a nice little interactive touch right inside Feedbin. There was a button-looking element with the number one which, as it turned out, was a footnote. I hovered over it,...