Search
In a World Where Central Planners Push Debt, Cryptocurrencies Look Better Every Day
6.6.2019
Economists have been predicting a worldwide recession which could pose a risk to financial stability throughout various countries. Fear of an economic downturn has caused the central bank of Australia to cut interests rates on Tuesday and both the U.S. Federal Reserve and the Reserve Bank of India...
Every Game This South Korean Startup Makes Has Its Own Blockchain
5.6.2019
If you have ten games then you need ten blockchains says Planetarium's CEO Kijun Seo
Block.One’s New Social Media Site Will Do Identity Checks for Every User
3.6.2019
Details are emerging about Block.one's new social platform, Voice. Here's what we know so far
97 věcí, které by každý architekt měl znát
30.5.2019
Poznámky z knihy 97 Things Every Software Architect Should Know
BCH vs. BTC: Which Offers Greater Privacy?
30.5.2019
Do you want every person you ever transact with to know how much is in your wallet and your net worth? Of course not. That’s why you need and want to mix your coins to hide where they came from before you use them. The degree of privacy you can expect by default, however, varies […]
The...
10 Web Performance Audit Tips for Your Next Billion Users in 2018: Delivering Optimized Resources
28.5.2019
Don’t just get assets from your resources pool and dump it right into your web pages. There is always a high chance that SVGs, images, fonts, videos, and every kind of asset you can think of come i
10 Web Performance Audit Tips for Your Next Billion Users in 2019: Delivering Optimized Resources
28.5.2019
Don’t just get assets from your resources pool and dump it right into your web pages. There is always a high chance that SVGs, images, fonts, videos, and every kind of asset you can think of come i
Morgan Creek CEO Says Every Investor Should Hold Some Bitcoin
24.5.2019
Mark Yusko of Morgan Creek Capital says bitcoin is a great diversifying asset and belongs in every portfolio
How to Buy Pizza With Bitcoin Cash
22.5.2019
Every year on May 22, the cryptocurrency community marks this day in 2010 when Laszlo Hanyecz purchased two pizzas for 10,000 bitcoins. To help you celebrate Pizza Day, here are a variety of options to buy to pizza with bitcoin cash (BCH) in different countries around the world. Also Read: How...
Using Array reduce
14.5.2019
Every developer who specializes in any programming language will tell you there’s a powerful tool the language provides that they rarely use and wish they knew more about. For me, it’s Array.prototype.reduce. I quite enjoy the other Array methods like map, filter, and find, but reduce...
The Place of UX
7.5.2019
Every time "UX" comes out of my mouth or is typed by my fingers, I think, "did I just use that term correctly?" It feels like such a big and loaded term these days, that perhaps the way I use it only contributes to the confusion. Ryan Singer frames that problem well:
Debates continue to rage about...
That Time I Tried Browsing the Web Without CSS
24.4.2019
CSS is what gives every website its design. Websites sure aren’t very fun and friendly without it! I’ve read about somebody going a week without JavaScript and how the experience resulted in websites that were faster, though certain aspects of them would not function as expected.
But CSS. Turning...
7 Useful JavaScript Tricks
16.4.2019
Just like every other programming language, JavaScript has dozens of tricks to accomplish both easy and difficult tasks. Some tricks are widely known while others are enough to blow your mind. Let’s have a look at {x} JavaScript tricks you can start using today! Get Unique Values of an Array...
While solving for collaboration, we built a product that our own teams love and use everyday!
11.4.2019
(This is a sponsored post.)
Flock is a messaging and collaboration tool built for both designers and developers. With close-to-zero setup, it brings together all your team’s conversations, appointments, and files in one place, helping you spend more time on what you are best at — building...
How to Reverse a Video
9.4.2019
One of my favorite media utilities is ffmpeg. This command line utility allows us to do some pretty amazing stuff like; Slice videos Convert video formats Modify video speed Combine audio and video Every once in a while I see a meme or funny video that reverses a video for effect. Since ffmpeg does...
Testing for Visual Regressions with Percy
8.4.2019
It’s a Herculean task to test
Undefined: The Third Boolean Value
5.4.2019
I wanted to implement a notification message in one of my projects, similar to what you’d see in Google Docs while a document is saving. In other words, a message shows up indicating that the document is saving every time a change is made. Then, once the changes are saved, the message becomes: “All...
Validating a Login Form With React
4.4.2019
For almost every form that you create, you will want some sort of validation. In React, working with and validating forms can be a bit verbose, so in this article we are going to use a package call
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...
Understanding Event Emitters
26.3.2019
Consider, a DOM Event:
const button = document.querySelector("button");
button.addEventListener("click", (event) => /* do something with the event */)
We added a listener to a button click. We’ve subscribed to an event being emitted and we fire a callback when it does. Every time we click that...