Search
Lessons Learned from a Year of Testing the Web Platform
30.7.2019
Mike Pennisi:
The web-platform-tests project is a massive suite of tests (over one million in total) which verify that software (mostly web browsers) correctly implement web technologies. It’s as important as it is ambitious: the health of the web depends on a plurality of interoperable...
Optional Chaining
29.7.2019
For all of the improvements that the JavaScript language has added over the past few years, like the spread operator, default argument values, and arrow functions, there are still a few features I’d love to see implemented. On such feature is optional chaining. Optional chaining allows...
JavaScript Proxy with Storage
26.7.2019
The JavaScript Proxy API provides a wealth of “magic” within JavaScript, allowing you to use any object as sort of an alias that allows a wall of validation, formatting, and error throwing. Did you know that you could also employ the Proxy API as an abstraction to different types...
Zoom, CORS, and the Web
23.7.2019
It's sorta sad by funny that that big Zoom vulnerability thing was ultimately related to web technology and not really the app itself.
There is this idea of custom protocols or "URL schemes." So, like gittower:// or dropbox:// or whatever. A native app can register them, then URLs that hit them...
Driving Cryptocurrency Adoption on the Ground: Lessons Learned from Dash in Thailand
23.7.2019
Real life payments have been the number one use-case of cryptocurrencies. Yet, a decade after Bitcoin’s genesis, it’s still a long way to mass adoption on both sides of the scenario, for the customers and merchants. With local teams around […]
The post Driving Cryptocurrency Adoption on...
Liechtenstein Financial Market Authority Approves State-of-the-Art Tokenized Real Estate Investment Product
19.7.2019
CROWDLITOKEN AG pioneers and starts distribution of a digital bond – European retail investors benefit as well For the first time in Europe, the Liechtenstein Financial Market Authority (FMA) has approved the offering prospectus for a tokenized real estate investment […]
The post...
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...
CoinMarketCap’s enigmatic founder to make his first public appearance
19.7.2019
We are hosting our first-ever large-scale conference! NEW YORK, JULY 18, 2019 – For the first time, our enigmatic founder will take the stage at our first large-scale conference happening on November 12-13 in Singapore at the Marina Bay Sands. […]
The post CoinMarketCap’s enigmatic founder...
CoinMarketCap’s enigmatic founder to make his first public appearance
19.7.2019
We are hosting our first-ever large-scale conference! NEW YORK, JULY 18, 2019 – For the first time, our enigmatic founder will take the stage at our first large-scale conference happening on November 12-13 in Singapore at the Marina Bay Sands. […]
The post CoinMarketCap’s enigmatic founder...
Detect Cryptocurrency by Wallet Address
16.7.2019
I’ve always been a massive advocate of cryptocurrency. I love the technology, the ease of use, and the freedom that cryptocurrencies bring to the world. Despite my love of crypto, I know that adoption will take a long time and that the state of crypto is not friendly to new adopters. One scary part...
Build a Chat App Using React Hooks in 100 Lines of Code
15.7.2019
We’ve looked at React Hooks before, around here at CSS-Tricks. I have an article that introduces them as well that illustrates how to use them to create components through functions. Both articles are good high-level overviews about the way they work, but they open up a lot of possibilities...
CSS Gradient Text
15.7.2019
Web developers know the fight we’ve all had to improve fonts on the web. Whether it be load time, odd strategies for using custom fonts (Cufon, anyone?), or just finding the right font itself, beautifying text on the web has never come easy. That got me thinking about fonts and CSS gradients, since...
Kybernetická špionážní kampaň Buhtrap využila nedávno opravený zero-day ve Windows
12.7.2019
Buhtrap – kybernetická zločinecká skupina zaměřující se na útoky v Rusku, přišla s novou kampaní využívající zranitelnosti nultého dne ve Windows pro řízení kybernetických špionážních operací. Stěžejním nedostatkem je zranitelnost lokálních systémových oprávnění v Microsoft Windows (SB2019070905 –...
Bitcoin Cash Community on Bitkan’s K-Site Raises Funds for BCH Development
11.7.2019
Last year news.Bitcoin.com spoke with the cofounder of Bitkan, Fang Yu, about the company’s K-Site project, which acts as a decentralized media outlet, micro-blog and forum with rewards. Just recently, Bitkan spoke with news.Bitcoin.com about K-Site’s growth and how the platform’s...
Revive: A Free Tool that Analyzes Your Traffic and Finds the Content You Should Update
11.7.2019
I started Scotch as a web development tutorial blog. Over the years, I've learned far more than I expected. It was no longer just about web development
Top 10 Dapps on Ethereum
9.7.2019
If you follow the news of Blockchain and Ethereum, you probably heard of CryptoKitties. CryptoKitties is an Ethereum Dapp where players can buy, sell and breed virtual kitties. Rare kitties can sell for more than 100,000 USD, and when the […]
The post Top 10 Dapps on Ethereum appeared first...
Magecart zasáhla přes 960 obchodů s elektronikou
8.7.2019
Bezpečnostní výzkumníci zaznamenali novou masivní kampaň pro skimming platebních karet, která již kompromitovala přes 962 internetových obchodů provozovaných na Magento CMS. Útoky odhalil bezpečnostní pracovník společnosti Sanguine Security – Willem de Groot. Ten věří, že se kybernetickým zločincům...
Building an Animal Adoption Site with Node and Vue - Part 1
8.7.2019
Today we're going to build an application that showcases animals that are available for adoption! This will be a two part blog series, so in this portion we'll just learn how to se
Learn to Read Crypto and Blockchain Data With Our Guide
4.7.2019
Just launched, our free block explorer guide will have you navigating blockchain data like the coolest kid on the block At CoinMarketCap, we have made it a mission to clearly communicate blockchain and crypto concepts in conjunction with providing data […]
The post Learn to Read Crypto...
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...