Search
Crypto Bullishness Spreads on Capitol Hill
21.7.2019
U.S. Congress has shown that it is starting to care about cryptocurrency as a number of lawmakers spoke up in favor of it this week. “The world Satoshi Nakamoto had envisioned is an unstoppable force” and “there’s no capacity to kill bitcoin” are some of the comments...
Grab a .DEV Domain from Hover! (Sponsored)
19.7.2019
I can say that the biggest and best changes in my professional life came from starting this blog — it was the springboard for conference speaking, open source, and joining Mozilla. I’ve always urged ever developer to have a blog to showcase talent, explore new technology, and to network. What’s...
Bitcoin Price Analysis: Bitcoin (BTC) Starts Depleting; Is It the Starting of the End Already?
28.6.2019
Bitcoin (BTC) started losing value in the last 24 hours. The medium-term bullish outlook places the target at 15,000 USD within the next few months. Bitcoin has been the point of many discussions in the crypto market due to its recent episode of high growth. The coin got hiked from 8000 USD, and...
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...