Search
Getting to Know the useReducer React Hook
26.6.2019
useReducer is one of a handful of React hooks that shipped in React 16.7.0. It accepts a reducer function with the application initial state, returns the current application state, then dispatches a function.
Here is an example of how it is used;
const [state, dispatch] = useReducer(reducer...
Getting to Know the useReducer React Hook
26.6.2019
useReducer is one of a handful of React hooks that shipped in React 16.7.0. It accepts a reducer function with the application initial state, returns the current application state, then dispatches a function.
Here is an example of how it is used;
const [state, dispatch] = useReducer(reducer...
Google Searches for ‘Bitcoin’ Starting to Catch Up With $10K Euphoria
24.6.2019
Data from Google Trends’ search analytics resource indicates that internet googling of ‘bitcoin’ is approaching a monthly high
Google Searches for ‘Bitcoin’ Starting to Catch Up With $10K Euphoria
24.6.2019
Data from Google Trends’ search analytics resource indicates that internet googling of ‘bitcoin’ is approaching a monthly high
Binance and Red Pulse Will Conduct 15,000,000 PHB Trading Airdrop Starting From Tomorrow
20.6.2019
The excitement isn’t stopping as the massive airdrop of 15,000,000 PHB is nearing so fast. The world’s leading crypto exchange – Binance and China’s market intelligence platform – Red Pulse, together are going to conduct this airdrop. What is the purpose? Well, the objective behind this...
United States Residents Will Lose Access to Many Altcoins Starting in September
15.6.2019
Cryptocurrency investors will be unable to trade many tokens after Binanace’s main exchange platform becomes unavailable to U.S.-based accounts in September
Bitfinex Is Starting to Buy Back and ‘Burn’ Its LEO Exchange Token
14.6.2019
The crypto exchange has announced a transparency initiative that will see it put on full view the repurchase and destruction of its LEO token
Litecoin Price Analysis: Litecoin Has Gained 355% Since The Starting of 2019
12.6.2019
Litecoin’s current value shows that the coin has been able to gain 355% since the starting of the year. The 2019 target remains at 160 USD. At the times when most of the altcoins are facing difficulties in the market, Litecoin (LTC) is climbing step by step, giving a tough fight to many major...
A Course About CSS Layout and Animations
6.6.2019
Christina Gorton just released a new course called CSS Layout and Animations as a part of Design+Code, which is a $9/month. That includes a ton of video training on everything from stuff like this to React to Sketch to iOS development... and beyond!
Christina approaches the course with my favorite...
Ex-CEO of Mt. Gox, Mark Karpeles Starting a New Blockchain Business
5.6.2019
Mark Karpeles. Source: a video screenshot, Youtube, whatbitcoindid
Mark Karpeles, the founder of the infamous, fallen Bitcoin exchange Mt. Gox is allegedly starting a new blockchain business in Japan.
This was reportedly told by Karpeles himself in the comments to the press attending a news...
How Crypto-Based Microfinance Benefits Small Businesses
27.5.2019
Starting your own business isn’t easy given the reluctance of banks to grant credit. Gone are the days when a compelling business plan would be enough to have the branch manager shaking your hand and bankrolling your venture. For entrepreneurs in developing nations, where even obtaining...
Recursive Array.flat
17.5.2019
There was much talk about Array.prototype.flat during its early stages, starting with the name alone. Many developers preferred the name flatten but the spec differed from MooTools’ implementation. MooTools would recursively flatten an array but the new, official flat implementation was only...
Bitfinex Will List Its New Exchange Token Starting Monday
17.5.2019
Bitfinex will list its LEO exchange token on Monday, trading against bitcoin, ether, EOS, tether and the U.S. dollar
React Starter: Adding Sass to Create React App Applications
17.5.2019
Adding Sass is one of the first things most developers do when starting an application. Writing in plain CSS can be done, but Sas
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()...
What Are Design Tokens?
3.4.2019
I’ve been hearing a lot about design tokens lately, and although I’ve never had to work on a project that’s needed them, I think they’re super interesting and worth jotting down a few notes about. As I understand it, the general idea is this: design tokens are an agnostic way to store variables...
Using <details> for Menus and Dialogs is an Interesting Idea
21.3.2019
One of the most empowering things you can learn as a new front-end developer who is starting to learn JavaScript is to change classes. If you can change classes, you can use your CSS skills to control a lot on a page. Toggle a class to one thing, style it this way, toggle to another class...
Perfect Image Optimization for Mobile with Optimole
14.3.2019
(This is a sponsored post.)
In 2015 there were 24,000 different Android devices, and each of them was capable of downloading images. And this was just the beginning. The mobile era is starting to gather pace with mobile visitors starting to eclipse desktop. One thing is certain, building...
Refactoring Tunnels
6.3.2019
We’ve been writing a lot about refactoring CSS lately, from how to take a slow and methodical approach to getting some quick wins. As a result, I’ve been reading a ton about this topic and somehow stumbled upon this post by Harry Roberts about refactoring and how to mitigate the potential risks...
Mask Compositing: The Crash Course
2.3.2019
At the start of 2018, as I was starting to go a bit deeper into CSS gradient masking in order to create interesting visuals one would think are impossible otherwise with just a single element and a tiny bit of CSS, I learned about a property that had previously been completely unknown to...