Search
At Blockchain Week, Maturity Is the Motto as Ethereum Organizations Push Toward 2.0 Upgrade
21.5.2019
Improved relations between the Ethereum Foundation and ConsenSys point to a governance shift that could have major implications for the network's goals
My Bank Account Was Frozen for Bitcoin – And It Only Made Me Love Crypto More
19.5.2019
The guy who coined the term "hodl" has a real bitcoin story that only made his interest in the technology stronger
Bitcoin and Blockchain: The Tangled History of Two Tech Buzzwords
19.5.2019
The word "blockchain" isn't used in the bitcoin white paper, the document that started it all. So, how did the term take off as a buzzword?
The Blockchain Paradox
15.5.2019
Blockchains offer potential solutions to deep-seated problems in society, but their own governance issues need to be solved first, writes Pindar Wong
Polymath, Charles Hoskinson Team Up on Security Token Blockchain
13.5.2019
Polymath is partnering with Charles Hoskinson to build a blockchain network specifically designed to support security tokens
Crypto Investor Awarded Over $75 Million in SIM-Swapping Hack Case
13.5.2019
U.S.-based cryptocurrency investor Michael Terpin has been awarded over $75 million in a lawsuit related to a SIM-swapping fraud
Ex-SoFI CEO’s Startup Closes $1 Billion Credit Line on a Blockchain
10.5.2019
Figure Technologies, founded by former SoFi CEO Mike Cagney, has closed a $1 billion “uncommitted” line of credit on a blockchain
What’s Holding Back Bitcoin in Venezuela? This Group Is Investigating
10.5.2019
The Open Money Initiative is bringing insights from Venezuela to help crypto startups make better tools for people in distressed economies
Florincoin – The 2013 Altcoin You Don’t Remember – Is Attracting Real Users
9.5.2019
An obscure cryptocurrency that first started getting noticed during the 2014 altcoin boom is showing itself a true diamond in the rough
Creating a Reusable Pagination Component in Vue
29.3.2019
The idea behind most of web applications is to fetch data from the database and present it to the user in the best possible way. When we deal with data there are cases when the best possible way of presentation means creating a list.
Depending on the amount of data and its content, we may decide...
Fake Bitcoin Trading Volumes and Bitcoin Predictions
25.3.2019
The young crypto is yet to come of age, and while it prepares to do so, it will be marred by cases of manipulation, fraud, scams, etc. A recent study report shows that up to 95 percent of the reported […]
The post Fake Bitcoin Trading Volumes and Bitcoin Predictions appeared first on Crypto...
Web Standards Meet User-Land: Using CSS-in-JS to Style Custom Elements
15.3.2019
The popularity of CSS-in-JS has mostly come from the React community, and indeed many CSS-in-JS libraries are React-specific. However, Emotion, the most popular library in terms of npm downloads, is framework agnostic.
Using the shadow DOM is common when creating custom elements, but there’s...
The Process of Implementing A UI Design From Scratch
13.3.2019
This is a fantastic post by Ahmad Shadeed. It digs into the practical construction of a header on a website — the kind of work that many of us regularly do. It looks like it's going to be fairly easy to create the header at first, but it starts to get complicated as considerations for screen...
Using React Loadable for Code Splitting by Components and Routes
7.3.2019
In a bid to have web applications serve needs for different types of users, it’s likely that more code is required than it would be for one type of user so the app can handle and adapt to different scenarios and use cases, which lead to new features and functionalities. When this happens, it’s...
Look Ma, No Media Queries! Responsive Layouts Using CSS Grid
27.2.2019
Not only has CSS Grid reshaped the way we think and build layouts for the web, but it has also contributed to writing more resilient code, replacing "hacky" techniques we've used before, and in some cases, killing the need to rely on code for specific resolutions and viewports. What's so cool about...
Responsive Designs and CSS Custom Properties: Defining Variables and Breakpoints
25.2.2019
CSS custom properties (a.k.a. CSS variables) are becoming more and more popular. They finally reached decent browser support and are slowly making their way into various production environments. The popularity of custom properties shouldn’t come as a surprise, because they can be really helpful...
More Like position: tricky;
4.2.2019
I rather like position: sticky;. It has practical use cases. I think of things like keeping a table of contents in a sidebar of a long article, but as a fairly simple implementation and without risk of overlapping things in awkward ways. But Elad Shechter is right here: it's not used that much...
The Elements of UI Engineering
4.1.2019
I really enjoyed this post by Dan Abramov. He defines his work as a UI engineer and I especially like what he writes about his learning experience:
My biggest learning breakthroughs weren’t about a particular technology. Rather, I learned the most when I struggled to solve a particular UI problem....
DRY State Switching With CSS Variables: Fallbacks and Invalid Values
6.12.2018
This is the second post in a two-part series that looks into the way CSS variables can be used to make the code for complex layouts and interactions less difficult to write and a lot easier to maintain. The first installment walks through various use cases where this technique applies. This post...
DRY Switching with CSS Variables: The Difference of One Declaration
5.12.2018
This is the first post of a two-part series that looks into the way CSS variables can be used to make the code for complex layouts and interactions less difficult to write and a lot easier to maintain. This first installment walks through various use cases where this technique applies. The second...