Search
Why Cryptocurrency Investors Are Renouncing Their US Citizenship
9.5.2019
Andrew Henderson is the founder of Nomad Capitalist, a company which helps people from around the world move to different countries while minimizing their tax obligations. In recent years the company has created plans for dozens of people who made their wealth from the cryptocurrency sector...
Stay in Touch With Markets Using the Cryptowatch App
9.5.2019
Cryptocurrency prices and market trends are constantly in flux. Cryptowatch is an Android Wear application that updates users about price changes on the go. It’s always with you, even when your smartphone is not around or runs out of battery. Also read: Coin 360 Provides Color-Based Crypto...
Getting To Know The MutationObserver API
8.5.2019
MutationObserver watches the DOM, specifically the places you tell it to, like:
document.querySelector('#watch-this');
...and it can tell you (trigger a callback) when stuff happens — like when a child is added, removed, changed, or a number of other things.
I used it just the other day...
Why, How, and When to Use Semantic HTML and ARIA
7.5.2019
Semantic HTML and Accessible Rich Internet Applications (ARIA) help create interfaces that work for everyone in the most performant, robust, and simple way possible. They add essential meaning to your content, which lets web browsers, search engines, screen readers, RSS readers, and ultimately...
Příručka marketéra: Podcast jako nejlevnější marketingový nástroj pro sofistikované publikum
7.5.2019
První Queens podcast jsme poslali do světa zhruba před šesti měsíci a měli jsme úplně jednoduchý cíl – aby si ho poslechlo aspoň 1000 lidí. A když se nám to povede, pořídíme si lepší techniku. Jeden den jsme si prostě řekli, že to zkusíme – a druhý už jsme šli… Číst dále
The post Příručka...
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...
Content First 2019: Jak získat sympatie veřejnosti, porazit konkurenci a rozšířit okruh zákazníků
30.4.2019
Konference o obsahovém marketingu letos přinese originální a konkrétní tipy, jak získat zájem a sympatie veřejnosti, porazit konkurenci a nakonec i rozšířit okruh zákazníků. Sejdete se s úspěšnými stratégy z firem jako IKEA ČR, Seznam.cz, Rock Point, Mall.tv, Forbes, Česká televize nebo organizací...
Add Authentication and Personalization to VuePress
23.4.2019
There are several advantages to using a static site generator such as VuePress. With VuePress, you can focus on writing content using markdown, and the VuePress application generates static HTML fi
Tabs: It’s Complicated™
19.4.2019
I've said before one quick and powerful thing you can learn as a front-end developer just getting starting with JavaScript is changing classes.
const button = document.querySelector(".my-button");
const element = document.querySelector(".content");
button.addEventListener("click", function()...
How to Get a Progressive Web App into the Google Play Store
19.4.2019
PWA (Progressive Web Apps) have been with us for some time now. Yet, each time I try explaining it to clients, the same question pops up: "Will my users be able to install the app using app stores?" The answer has traditionally been no, but this changed with Chrome 72 which shipped a new feature...
Simulating Mouse Movement
15.4.2019
If you've ever had to display an interactive animation during a live talk or a class, then you may know that it's not always easy to interact with your slides and while talking.
This happened to me when I needed to show this particles demo to my students. I didn't want to have to stay next to...
Programátoři všech jazyků, přijďte na Jobs Dev 2019
10.4.2019
Již potřetí můžete bez větší námahy nakouknout přímo do programátorských týmů velkých firem. V sobotu 18. května se koná další veletrh práce pro programátory Jobs Dev 2019 spolu konferencí. Prezentovat se zde budou firmy skrze své vlastní programátory. Během jediného dne se tak dozvíte...
AI-Based Video Preview from Cloudinary (Sponsored)
8.4.2019
The early days of video on the web weren’t great. We started with custom browser plugins and codecs, then moved to Flash, and eventually we found our way HTML <video>. Once we solved the technology problem, we started using more video for content and advertising. The next problem...
Fixed Headers, On-Page Links, and Overlapping Content, Oh My!
3.4.2019
Let's take a basic on-page link:
<a href="#section-two">Section Two</a>
When clicked, the browser will scroll itself to the element with that ID: <section id="section-two"></section>. A browser feature as old as browsers themselves, just about.
But as soon as...
Crossroads Slideshow
3.4.2019
An experimental slideshow with an inclined look, three slide previews and a content view on click.
Crossroads Slideshow was written by Mary Lou and published on Codrops
Creating a Reusable Pagination Component in Vue
29.3.2019
The idea behind most of web applications is to fetch data from the database and present it to the user in the best possible way. When we deal with data there are cases when the best possible way of presentation means creating a list.
Depending on the amount of data and its content, we may decide...
DNSSEC – bezpečnost uživatelů při návštěvě vaší domény
28.3.2019
Chcete mít vlastní doménu a nechcete vystavit své uživatele zneužití jejich osobních a dalších údajů? Kvalitní doména disponuje kvalitním zabezpečením DNSSEC
Deliver Responsive and Art Directed Images For Your Website with ImageKit
26.3.2019
Images are essential for all websites. Whether it is product images for an e-commerce store, photographs of picturesque locations on a travel website or images to support the content of a blog
Úloha od krabice ke krabici z kroužku programování pro děti
21.3.2019
Do kroužků programování doporučuji roboty Meet Edison. A jaké úlohy s nimi lze dělat? Ukážu vám opravdu jednoduchou úlohu, kterou děti zvládnou samostatně
It’s pretty cool how Netlify CMS works with any flat file site generator
21.3.2019
Little confession here: when I first saw Netlify CMS at a glance, I thought: cool, maybe I'll try that someday when I'm exploring CMSs for a new project. Then as I looked at it with fresh eyes: I can already use this! It's a true CMS in that it adds a content management UI on top of any static site...