Search
Buysellhodl Aggregates Price Predictions From Traders Like You
26.5.2019
Any transitional period is characterized with uncertainty and crypto investors would appreciate to have some clues as to where the markets are going from here. Often the expectations of other traders are the best indicator. Buysellhodl is a platform that can give you predictions based on...
Bitcoin.com Launches Free Bitcoin Cash Register Platform for iOS Devices
25.5.2019
About a month ago, Bitcoin.com launched its free point-of-sale solution, Bitcoin Cash Register, for Android operating systems. This week our developers have released Bitcoin Cash Register for iOS mobile phones allowing any merchant with an Apple device to accept bitcoin cash payments. Also read:...
Crypto Holders Can Now Withdraw Cash From Any VISA Integrated ATM Using 2gether Card
25.5.2019
It is a moment of rejoicing for crypto holders as they can now withdraw cash in return for their tokens. All you need is a 2gether Card and a VISA-friendly ATM. This is a first of its kind initiative, which allows users to convert crypto to fiat and withdraws it from ATMs. However, these services...
The Cryptocurrency Market Has Become a Casino
23.5.2019
Crypto trading has always entailed a blend of skill and good fortune, but in the frothy markets of 2019, that weighting is skewed heavily in favor of the latter. Fundamentals go out the window when there’s a surety that the latest token is going to pump at any moment. For traders with a...
The Browser Can Remember Edited Content
22.5.2019
You can make the text inside any HTML element editable by adding the contenteditable attribute.
<div contenteditable>
Hey, I'm like a textarea kinda now!
</div>
I wouldn't say there are wheelbarrows full of use-cases for that, but it's neat. One possible use might be...
You Can Pay With BCH for Your Domain From Abaco Hosting
21.5.2019
Online presence is essential for any business today and especially for projects that deal with cryptocurrencies. Abaco Hosting offers this type of solutions to small and medium enterprises, and companies from the crypto industry can take advantage of its flexible payment options. They include...
SoftSwiss Launches a New Online Casino
20.5.2019
SoftSwiss has announced the launch of a new online casino, and it is quite unlike any other they have previously developed. Working in tandem with Direx N.V., the operators have managed to put together a good-looking and entertaining bitcoin casino. […]
The post SoftSwiss Launches a...
Everything You Ever Wanted to Know About inputmode
17.5.2019
The inputmode global attribute provides a hint to browsers for devices with onscreen keyboards to help them decide which keyboard to display when a user has selected any input or textarea element.
<input type="text" inputmode="" />
<textarea inputmode="" />
Unlike changing the type...
Using Jetpack to Accelerate WordPress Development
16.5.2019
(This is a sponsored post.)
[Geoff:] I've built a fair number of WordPress sites in my day. It's been my go-to since the 2.x-ish days because it works for any site, big or small. That's the sort of solution and flexibility you like to have as a freelancer.
Boy, I wish I had Jetpack available...
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...
Ripple (XRP) Price Analysis: Is Ripple Holding Any Excitement In Spite Of Its Fluctuating Behaviour?
14.5.2019
The great news is that the chief market strategist of XRP has successfully introduced Ripple and XRP to Trump’s administration. Apart from this, Ripple Inc. is partnering with some of the biggest financial institutions. Banks like Western Union, Bank of America are already using Ripple’s network...
A responsive grid layout with no media queries
9.5.2019
Andy Bell made a really cool demo that shows us how to create a responsive grid layout without any media queries at all. It happens to look like this when you change the size of the browser window:
I think this is a wonderful layout technique that’s just 6 lines (!) of CSS.
.auto-grid...
Making the Move from jQuery to Vue
3.5.2019
As someone who has used jQuery for many. years and has recently become a Vue convert, I thought it would be an interesting topic to discuss the migration process of working with one to the other.
Before I begin though, I want to ensure one thing is crystal clear. I am not, in any way whatsoever...
Easily Turn Your Photos into Vectors with Photo Vectorizer
2.5.2019
(This is a sponsored post.)
Photo Vectorizer is a simple-to-use Photoshop action that can convert any photo into a vector. With just a few clicks of your mouse, you can save tons of time and frustration by turning your photos into vectors. With super sharp results, these vectors are great for...
The Simplest Ways to Handle HTML Includes
30.4.2019
It's extremely surprising to me that HTML has never had any way to include other HTML files within it. Nor does there seem to be anything on the horizon that addresses it. I'm talking about straight up includes, like taking a chunk of HTML and plopping it right into another. For example the...
How to Build an Underwater-Style Navigation Using PixiJS
24.4.2019
A tutorial on how to create a visually distinct and accessible WebGL menu that builds from any given HTML navigation.
How to Build an Underwater-Style Navigation Using PixiJS was written by Liam Egan and published on Codrops
Who Are Design Systems For?
23.4.2019
Specific design systems, I mean. Design systems, as a concept, are something just about any site can benefit from.
A lot of hype goes into design systems these days. Just the other day, an organization's published their design system publicly and I got a slew of DMs, emails, and Slack messages...
The Serif Tax
9.4.2019
Fonts are vector. Vector art with more points makes for larger files than vector art with fewer points. Custom fonts are downloaded. So, fonts with less points in their vector art are smaller. That's the theory anyway. Shall we see if there is any merit to it?
Open Sans (top) and Garamond...
KV Storage
1.4.2019
localStorage is...
Good! It's an incredibly easy API to use.
localStorage.setItem('name', 'Chris'); let name = localStorage.getItem('name');
Bad! Philip Walton explains why:
localStorage is a synchronous API that blocks the main thread, and any time you access it you potentially prevent your...
Differential Serving
1.4.2019
There is "futuristic" JavaScript that we can write. "Stage 0" refers to ideas for the JavaScript language that are still proposals. Still, someone might turn that idea into a Babel plugin and it could compile into code that can ship to any browser. For some of these lucky proposals, Stage 0 becomes...