Search
Firefox Browser Adds Option to Automatically Block Crypto Mining Scripts
22.5.2019
Mozilla has released an update for its Firefox browser which includes an option to block cryptocurrency mining scripts on websites
The 2nd Annual Conference of Block Hedge Business 2019 At Bangkok Is Set to Create Ripples in The Blockchain World
22.5.2019
After putting together, a series of successful blockchain conferences, Block Hedge is all set to unite leading stakeholders in the crypto sphere at Bangkok, Thailand. Thailand, as we know is one of the most prominent blockchain and cryptocurrency centers on account of its favorable business...
$71 Million: Galaxy Digital Sells Stake in EOS Blockchain Maker Block.One
22.5.2019
Galaxy Digital, the crypto bank founded by Michael Novogratz, has sold its position in Block.one, the maker of the EOS blockchain, for $71 million
Bitcoin Cash Devs Publish the First 3 of 3 Multi-Sig Schnorr Transaction
19.5.2019
On May 15, the Bitcoin Cash network successfully upgraded by implementing Schnorr signatures, after which a few developers processed some basic Schnorr signatures. Then, on Saturday, May 18, software developers Chris Pacia, Mark Lundeberg, and Checksum0 performed the first multi-sig Schnorr...
Bitcoin History Part 13: The First Mining Pool
19.5.2019
The notion that anyone could solo mine bitcoin – on a CPU no less – seems positively quaint today. But in 2010, this method wasn’t just possible – it was the norm. With an exponentially lower hashrate, less competition and a 50 bitcoin block reward, there was enough pie...
Bitcoin Cash Protocol Successfully Upgrades — Schnorr Signatures Are Here
15.5.2019
The Bitcoin Cash (BCH) chain has officially upgraded, adding Schnorr signatures and the Segwit recovery exemption. As of block 582680, the chain has implemented the new features successfully and BCH fans are celebrating another major protocol improvement. Also read: Schnorr Signatures Are Coming...
Russian Prosecutors Fail to Block Crypto Website
13.5.2019
A court case in Russia has signaled a change in the attitude authorities have towards the cryptocurrency space, at least on first glance. An online portal helping traders find the best exchange options for their digital assets will be allowed to restore normal operations. That’s after...
Crypto Heresy: Question Blockstream on Twitter and You’ll Be Blocked
10.5.2019
Crypto Twitter (CT) is a grueling battleground between digital currency enthusiasts, company executives, maximalists, journalists, lawyers, and so-called thought leaders and luminaries. For instance, on May 8, reporter Larry Cermak posted data concerning Blockstream and its sidechain project...
Happy 6th Birthday! DATA Alliance, Block Explorers and more
1.5.2019
Today we are celebrating our sixth anniversary at CoinMarketCap. To commemorate this momentous occasion, we are announcing several major initiatives that we’ve been working on for months: CoinMarketCap Data Accountability & Transparency Alliance CoinMarketCap Block Explorers CoinMarketCap Shop...
Oh, the Many Ways to Make Triangular Breadcrumb Ribbons!
29.4.2019
Oh, the Many Ways to Make Triangular Breadcrumb Ribbons
Let’s have a look at how we can create a row of links that sorta run into each other with a chevron-like shape and notch on each block like you might see in a hierarchical breadcrumb navigation.
You’ve probably seen this pattern a lot....
A Gutenburg-Powered Newsletter
28.3.2019
I like Gutenberg, the new WordPress editor. I'm not oblivious to all the conversation around accessibility, UX, and readiness, but I know how hard it is to ship software and I'm glad WordPress got it out the door. Now it can evolve for the better.
I see a lot of benefit to block-based editors. Some...
Binance Launchpad on a Roar, Anthony Pompliano Says the Next Bull Run Will be Bigger
20.3.2019
Binance Launchpad has so far done well to rekindle the flame between investors and token sales. The platform recently helped CELR network to raise $4 million in minutes. However, the platform is also developing a habit of facing technical issues. […]
The post Binance Launchpad on a Roar...
Text Wrapping & Inline Pseudo Elements
27.2.2019
I love posts like this. It's just about adding a little icon to the end of certain links, but it ends up touching on a million things along the way. I think this is an example of why some people find front-end fun and some people rather dislike it.
Things involved:
Cool [attribute] selectors that...
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...
Where Do You Nest Your Sass Breakpoints?
11.2.2019
I love nesting my @media query breakpoints. It's perhaps the most important feature of Sass to me. Maybe I pick a method and do it like this:
.element {
display: grid;
grid-template-columns: 100px 1fr;
@include breakpoint(baby-bear) {
display: block;
}
}
That's straightforward enough....
Animate a Blob of Text with SVG and Text Clipping
6.2.2019
I came across this neat little animation in a designer newsletter — unfortunately, I lost track of the source, so please give a shout out if you recognize it! In it, a block of text appears to bleed into view with a swirl of colors, then goes out the same way it came in. It’s a slick effect and...
New CodePen Feature: Prefill Embeds
21.1.2019
I've very excited to have this feature released for CodePen. It's very progressive enhancement friendly in the sense that you can take any <pre> block of HTML, CSS, and JavaScript (or any combination of them) and enhance it into an embed, meaning you can see the rendered output. It also...
Meet Gutenberg: 6 Best Features Of The New WordPress Block Editor
2.1.2019
WordPress 5.0 is finally live! With it comes a brand new editor called Gutenberg. In this post, we take a closer look at this new editor to show you...
The post Meet Gutenberg: 6 Best Features Of The New WordPress Block Editor appeared first on Onextrapixel
Gradient Borders in CSS
28.12.2018
Let's say you need a gradient border around an element. My mind goes like this:
There is no simple obvious CSS API for this.
I'll just make a wrapper element with a linear-gradient background, then an inner element will block out most of that background, except a thin line of padding around...
Why isn’t it <style src=””>?
10.12.2018
The way JavaScript works is we can do scripts as an inline block:
<script>
let foo = "bar";
</script>
Or, if the script should be fetched from the network...
<script src="/js/global.js"></script>
With CSS, we can do an inline block of styles:
<style>
.foo...