Search
Let’s Build a JAMstack E-Commerce Store with Netlify Functions
20.8.2019
A lot of people are confused about what JAMstack is. The acronym stands for JavaScript, APIs, and Markup, but truly, JAMstack doesn’t have to include all three. What defines JAMstack is that it’s served without web servers. If you consider the history of computing, this type of abstraction isn’t...
Lazy load embedded YouTube videos
20.8.2019
This is a very clever idea via Arthur Corenzan. Rather than use the default YouTube embed, which adds a crapload of resources to a page whether the user plays the video or not, use the little tiny placeholder webpage that is just an image you can click that is linked to the YouTube embed.
It still...
PR: Plan Flash – Decentralized Data Processing
20.8.2019
Data processing is indispensable everywhere and all the time in modern life. The daily services we use every day, such as face recognition, voice assistant, text recognition, automatic recommendation, automatic data analysis and so on, all have a large number of data processing requirements...
Indian State of Maharashtra to Use Blockchain in Various Spheres
19.8.2019
The second major Indian state, Maharashtra is preparing a regulatory framework for analyzing blockchain technology for various spheres. As per the reports published by DNA on 19th August, the government of Maharashtra has decided to explore the blockchain technology for multiple fields. As per...
Mercurial Tips
19.8.2019
While most of the world seems to be using git for version control, Mozilla continues to use Mercurial (hg) to manage the Firefox source code. As a git and GitHub lover, it took me a while to get used to Mercurial. I don’t consider myself a hg expert but I know enough to complete...
Data URIs
18.8.2019
We’re all familiar with traditional URI protocols like https, http, ftp, and file, but data URIs have become a large part of our online strategy. We can use them to display images, the Mac camera and webcams, and more. But what if we simply want to use a data URI to convey basic data? Typing...
PR: Australian Bitcoin Cash Conference Brings Cryptocurrency Leaders to Townsville
15.8.2019
Global leaders from the Bitcoin Cash community will gather at the first Bitcoin Cash City Conference in Australia, being held in Townsville on September 4 & 5.
Townsville has really embraced Bitcoin Cash, so hosting this conference in the cozy, coastal suburb was a natural next step....
Bitex Crypto Exchange Partners With Bantotal In Latin America, Over 60 Banks Can Now Use Bitcoin
14.8.2019
In a breakthrough for the crypto industry in Latin America, popular crypto exchange Bitex has entered in partnership with a prominent banking service provider in the region, Bantotal. The latter has a presence in 14 Latin countries, which will give Bitex an unparalleled exposure. Uruguay based...
The Differing Perspectives on CSS-in-JS
14.8.2019
Some people outright hate the idea of CSS-in-JS. Just that name is offensive. Hard no. Styling doesn't belong in CSS, it belongs in CSS, a thing that already exists and that browsers are optimized to use. Separation of concerns. Anything else is a laughable misstep, a sign of not learning from...
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...
60 Latin American Banks Can Now Use Bitcoin for Cross-Border Payments
13.8.2019
Crypto exchange Bitex wants to decrease costs associated with cross-border banking using the bitcoin blockchain
BitBoss to Now Use Bitcoin SV, Users will be able to Send and Receive Tokens on BSV Protocol
10.8.2019
In a breakthrough for the gaming platform, BitBoss has announced that it will be integrating its platform with the Bitcoin SV network. The company released a blog on Medium which states that it is developing a JavaScript implementation of the BSV protocol, to contribute towards that tokenized open...
Shaping The Future of A Rising Economy: How Blockchain is Gaining Credibility in India
9.8.2019
Blockchain, a simple concept yet so complex and diverse in its use-cases is still in a nascent stage. Numerous countries have come to realize the immense potential of blockchain and are tapping into the unexplored areas of this disruptive technology. […]
The post Shaping The Future of...
Weekly Platform News: CSS font-style: oblique, webhin browser extension, CSS Modules V1
9.8.2019
In this week's roundup, variable fonts get oblique, a new browser extension for linting, and the very first version of CSS Modules.
Use font-style: oblique on variable fonts
Some popular variable fonts have a 'wght' (weight) axis for displaying text at different font weights and a 'slnt' (slant)...
Design Principles for Developers: Processes and CSS Tips for Better Web Design
8.8.2019
It is technically true that anyone can cook. But there’s a difference between actually knowing how to prepare a delicious meal and hoping for the best as you throw a few ingredients in a pot. Just like web development, you might know the ingredients—<span>, background-color, .heading-1—but...
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...
ECB Says It Plans to Use More On-Chain Data to Monitor Crypto Assets
7.8.2019
The European Central Bank has issued a new report revealing plans to use more granular blockchain data to better monitor the crypto markets
PR: Roger Ver Joins OmniSparx as Investor and Advisor With Goal to Boost BCH Community
7.8.2019
OmniSparx.io, – an innovative blockchain community engagement platform, has announced an investment from Roger Ver. As part of the investment, Ver will become an advisor to OmniSparx, and Bitcoin.com will use the OmniSparx platform to grow its community and deepen community collaboration.
The post...
Shark Tank’s Kevin O’Leary Questions Bitcoin’s Use as ‘Safe Haven’ Asset
6.8.2019
The business mogul critiqued Morgan Creek Digital Anthony Pompliano's financial holdings, comparing cryptocurrencies to "Vegas games"
then on Objects
5.8.2019
Promises were a revelation in JavaScript development, allowing us to enjoy async processing and avoid callback hell. Many new APIs like Battery API, Cache API, and others use the promise API. One fact you may not know is that you can add a then method to any object to make it Promise-like!...