Search
How to Debug Remote Browsers
27.6.2019
It’s super frustrating when bugs pop up only in a remote browser. Something about that user, that device, or that environment is different, but I don’t know what! And of course, I can’t recreate it on my local development machine. The team at TrackJS came up with a cool way...
CSS :focus-within
25.6.2019
Using :hover to display additional information or elements is a very useful technique but a big drawback to using the hover pseudo-class is that they are usually not accessibility-friendly. Not everyone uses a mouse and some users have visual impairments, so they rely on screen readers or...
Nissan má bezemisní zmrzlinářské auto. Používá staré autobaterie
22.6.2019
Zmrzlinářské dodávky sice nepředstavují z globálního pohledu nijak zásadní riziko pro životní prostředí, přesto si právě je vybrala japonská automobilka Nissan pro demonstraci svých technologií. Koncept zmrzlinářského vozidla „Sky to Scoop“ chce ukázat, jak lze realizovat jejich provoz zcela bez
Checkout the Last Public Revision with Mercurial
19.6.2019
I’ve always preferred git over Mercurial (hg) because the feature branch workflow makes organizing code and working off of master very easy. You don’t get that with vanilla mercurial — instead, commits can just sort of apply on top of each other, without much organization....
Insurtech Platform to Apply Blockchain to Auto Claims With New Funding
18.6.2019
A new insurance platform built on blockchain and AI tech has received new funding to apply the technologies to fraud detection and streamlining claims
Test Sony KD-85ZG9: Špičkový 8K televizor, který můžete mít doma. Nebo si raději koupíte auto?
17.6.2019
Dva nové televizory řady ZG9 nově doplnily OLED televizory řady Master Class. Mají LCD obrazovky s úhlopříčkou 85“ a 98“, 8K rozlišení a slibují maximální kvalitu obrazu. A přesně tu dostanete
Uber to ani po smrtelné nehodě nevzdává. S Volvem představují nové a bezpečnější samořídicí auto
15.6.2019
Uber představil třetí generací svých autonomních vozů, kterou vyvinul ve spolupráci se švédskou automobilkou Volvo. Vůz, postavený na základech SUV XC90, bude přímo z výroby obsahovat veškeré samořídící technologie.
Výhodou nové koncepce má být především fakt, že odpadne složitá dodatečná
How to Detect Text in Images
11.6.2019
Images are a great way to communicate without text but oftentimes images are used/abused to spread text within social media and advertisements. Text in images also presents an accessibility issue. The truth is that it’s important, for any number of reasons, to be able to detect text in image...
Detect if Element is a Web Component
5.6.2019
I’ve advocated for web components since before they became a spec, mostly inspired by the Dojo Toolkit’s dijit framework. Empowering first class JavaScript widgets, as opposed to a mess of DIVs and templates, always made the most sense. Now that web components exist, and awesome...
Movin’ Modals Along a Path
4.6.2019
Modals always be just appearin'. You might see one once in a while that slides in from one of the edges, or uses some kind of scale/opacity thing to appear from "above" or "below." But we can get weirder than that. Why not have them come in on an offset-path?
Just a swoopy arc is kinda fun.
...
IP Geolocation API
4.6.2019
Detecting geolocation information from your user provides you a massive advantage: improved conversion, better segmenting and analytics, and providing more relevant content. There are numerous paid services which will provide geolocation info but they’re oftentimes too costly or short...
Prevent Page Scrolling When a Modal is Open
3.6.2019
Please stop me if you've heard this one before. You open a modal, scroll through it, close it, and wind up somewhere else on the page than you were when you opened the modal.
That's because modals are elements on a page just like any other. It may stay in place (assuming that's what it's meant...
Noční oblohu nad Austrálií rozjasnily ohnivé koule. Šlo o meteoroidy velké jako auto
29.5.2019
Nad Austrálií proletěly minulý týden dvě ohnivé koule • Jejich průlet natočila celá řada kamer • Větší meteoroid byl velký jako automobil
10 Web Performance Audit Tips for Your Next Billion Users in 2018: Resolution Switching
26.5.2019
We need to learn that when it comes to responsive design, this doesn’t cut it for responsive images:
img {
width: 100%;
height: auto;
}
This is not a silver bulle
10 Web Performance Audit Tips for Your Next Billion Users in 2019: Resolution Switching
26.5.2019
We need to learn that when it comes to responsive design, this doesn’t cut it for responsive images:
img {
width: 100%;
height: auto;
}
This is not a silver bulle
Wix Is Challenging You to an SEO Battle for $25K (Sponsored)
24.5.2019
This year Wix launched a series of advanced SEO tools for Wix users to optimize their site pages for search engines and social media platforms. These tools include custom meta tags, canonical URLs, 301 redirects, structured data and rapid loading. So what’s the deal? To put their new SEO tools...
Resize Observer
21.5.2019
Creating websites that are reactive and responsive used to be considered advanced but responsiveness is a necessity for successful websites and apps. We’ve added media queries, matchMedia, and a host of other APIs to help developers make responsiveness easier and now we get a new one:...
AI-Backed Image Background Removal (Sponsored)
21.5.2019
I’ve worked on dozens of eCommerce sites in my career and many of them were hamstrung by the same pain points: tax collection, payment customization, and image optimization. While tax collection and payment customization were important, image optimization was always the hardest and most...
Recursive Array.flat
17.5.2019
There was much talk about Array.prototype.flat during its early stages, starting with the name alone. Many developers preferred the name flatten but the spec differed from MooTools’ implementation. MooTools would recursively flatten an array but the new, official flat implementation was only...
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...