Search
Getting Netlify Large Media Going
20.8.2019
I just did this the other day so I figured I'd blog it up. There is a thing called Git Large File Storage (Git LFS). Here's the entire point of it: it keeps large files out of your repo directly. Say you have 500MB of images on your site and they kinda need to be in the repo so you can work with...
These Portfolio Tracking Tools Will Also Prepare Your Crypto Taxes
16.8.2019
Tax season is months away, which is why you need to start preparing for it now. Leave everything to the last minute and you’ll only end up cursing your procrastination. Organize your cryptocurrency activity in advance and you’ll breeze through tax deadline day without so much...
All the New ES2019 Tips and Tricks
13.8.2019
The ECMAScript standard has been updated yet again with the addition of new features in ES2019. Now officially available in node, Chrome, Firefox, and Safari you can also use Babel to compile these features to a different version of JavaScript if you need to support an older browser.
Let’s look...
How Bridging Blockchains Unlocks Value and Unites Crypto Tribes
12.8.2019
Interoperability is a multisyllabic word for a multi-faceted problem. How do you get blockchains to communicate with one another? Until recently, there’s been no easy way to achieve this, leaving assets isolated and smart contract-powered dapps siloed on their respective protocols. Before...
Using Immer for React State Management
7.8.2019
We make use of state to keep track of application data. States change as users interact with an application. When this happens, we need to update the state that is displayed to the user, and we do this using React’s setState.
Since states are not meant to be updated directly (because React’s state...
The Bitcoin Perpetuals Swaps Market is Growing - What You Need to Know
6.8.2019
The perpetual swaps market for cryptoassets is growing. First brought to market by leading crypto derivatives exchange BitMEX in 2016, perpetual swaps on bitcoin have started to gain more traction among crypto traders in the past twelve months. Today, several exchanges offer perpetuals while market...
US SEC’s Hester Peirce: Certain Tokens Need a Safe Harbor
5.8.2019
A non-exclusive safe harbor for the offer and sale of certain tokens should be built, according to U.S. Securities and Exchange Commission commissioner Hester Peirce
Getting design system customization just right
29.7.2019
I had a little rant in me a few months ago about design systems: "Who Are Design Systems For?" My main point was that there are so many public and open source ones out there that choosing one can feel like choosing new furniture for your house. You just measure up what you need and what you like...
Don’t comma-separate :focus-within if you need deep browser support
24.7.2019
I really like :focus-within. It's a super useful selector that allows you to essentially select a parent element when any of its children are in focus.
Say you wanted to reveal some extra stuff when a <div> is hovered...
div:hover {
.extra-stuff {
/* reveal it */
}
}
That's...
PR: bitHolla Releases Open Exchange Kit HollaExShell
24.7.2019
bitHolla, the company that builds customized cryptocurrency trading software is announcing the launch of its new product HollaExShell, an open exchange software package, giving anyone the ability to launch a full fledged crypto exchange from a command-line interface. HollaEx packages provided...
US, EU and Japan Could Trigger ‘Cold Currency War’ by Debasing Fiat
24.7.2019
The world’s major central banks are waging war to determine who can make their respective fiat currency weaker. With the likelihood of even more money printing and negative interest rates ahead, people need to be ready to see the value of their money evaporate and the price of everything else...
10 Need to Know Mac Terminal Commands
24.7.2019
If you want to get into web development, knowing what the Terminal is and how to use it is very beneficial. But there are some essential commands that we’ll go over so we feel comfortable using it
The Myth of Authority: Mnuchin Denies USD Is Used Criminally
22.7.2019
U.S. Treasury Secretary Steven Mnuchin has once again weighed in on bitcoin, claiming the U.S. dollar has not been used to finance “nefarious” activity on a recent episode of CNBC’s Squawk Box. Democratic House Representative Maxine Waters also dropped a tasty nugget of...
DigiByte Price Analysis: DGB May Need a Strong Push to Cope with the Market
21.7.2019
DigiByte shows five major price swings in the last 24 hours. The target for 2019 should be 0.045 USD. Despite the fact that the coin has shown five huge price swings in the last 24 hours, it seeks a strong price rally to catch up with the rest of the market. The medium-term outlook of …
The...
How They Will Attack Bitcoin: The Hypocritical Shock Campaign of US Monetary Policy
17.7.2019
On July 16, U.S. Department of the Treasury Secretary Steven Mnuchin gave a short press briefing discussing cryptocurrencies and the pressing need for regulation. A 28-minute slodge of alphabet agency soup, studded with calculated mentions of “terrorism” nearly every minute, casual...
So, you think you’ve got project management nailed down
16.7.2019
(This is a sponsored post.)
Who needs a project manager? You're an organized person who can keep track of your own work, right?
Wrong.
Well, wrong if you're part of a team. The thing about being self-organized is that it's related to project management but not synonymous with it. Case in point:...
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...
Ethereum Classic Price Analysis: Investors Need to Wait Longer to See Ethereum Classic (ETC) Running
4.7.2019
Ethereum Classic (ETC) shows five huge price variations in the last 24 hours. The target for 2019 remains unchanged at 20 USD. Ethereum Classic is one of the major coins which have been showing huge stability in the market despite the rough times the market went through. ETC has shown five major...
Menus with “Dynamic Hit Areas”
3.7.2019
Flyout menus! The second you need to implement a menu that uses a hover event to display more menu items, you're in tricky territory. For one, they should work with clicks and taps, too. Without that, you've broken the menu for anyone without a mouse. That doesn't mean you can't also use :hover....
Set Video Playback Speed with JavaScript
2.7.2019
I love that media has moved from custom plugins (Flash…gross) to basic HTML <video> and <audio> elements. Treating these media sources as just another element allows us to use CSS filters to adjust display, for example. The less we need to do with ffmpeg or plugins, the better. I’ve been...