Search
Other Ways to SPAs
21.8.2019
That rhymed lolz.
I mentioned on a podcast the other day that I sorta think WordPress should ship with Turbolinks. It's a rather simple premise:
Build a server-rendered site.
Turbolinks intercepts clicks on same-origin links.
It uses AJAX for the HTML of the new page and replaces the current page...
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...
Let Mavo Shine in Building Interactive Web Applications
6.8.2019
As you could guess from the title, this tutorial is dedicated to Mavo: a new, approachable way to create complex, reactive, persistent web applications just by writing HTML and CSS, without a single line of JavaScript and no server backend.
🐇 Follow the white rabbit!
Mavo is developed...
PR: bitHolla Releases Open Exchange Kit HollaExShell
24.7.2019
bitHolla, the company that builds customized cryptocurrency trading software is announcing the launch of its new product HollaExShell, an open exchange software package, giving anyone the ability to launch a full fledged crypto exchange from a command-line interface. HollaEx packages provided...
Multi-Line Truncation with Pure CSS
17.7.2019
Truncating a single line of text if is fairly straightforward. Truncating multiple lines is a bit harder. Using just CSS (no JavaScript or server-side dancing) is nice for the simplicity. It's gotten a little easier lately since Firefox (since version 68) has started supporting the ultra-bizarre...
Web Server Security Firm Cloudflare Announces Launch of Ethereum Gateway
19.6.2019
Web server security service company Cloudflare has launched an Ethereum gateway
Game of Thrones Quiz Game with React and GraphQL: Initiate Backend Connection
17.6.2019
Now that our frontend application is running, the next step is to set up the client to communicate with the server. We’ll make use of the apollo-boost package to achieve this. The package provides
[aktualita] Ze serveru Vareni.cz unikla uživatelská data, server 7 dní mlčel
11.6.2019
Ze serveru Vareni.cz unikla uživatelská data. Podle bezpečnostního experta Michala Špačka, který na incident upozornil, ale začal server rozesílat notifikační emaily o úniku dat až 7 dní po incidentu a bezděky v nich navíc přiznal zásadní pochybení ve způsobu uložení dat. „Vareni.cz rozesílá...
Deploying an Angular App to Netlify
6.6.2019
Netlify is one of the best places to deploy an application or a website today. There is no need to manage a server, NGINX, certificates, or scaling due to hig
Evergreen Googlebot
16.5.2019
I've heard people say that the #1 most exciting and important thing that came out of Google I/O this year was the evergreen Googlebot:
Today, we are happy to announce that Googlebot now runs the latest Chromium rendering engine (74 at the time of this post) when rendering pages for Search. Moving...
Deploying a Client-Side Rendered create-react-app to Microsoft Azure
10.5.2019
Deploying a React app to Microsoft Azure is simple. Except that... it isn’t. The devil is in the details. If you're looking to deploy a create-react-app — or a similar style front-end JavaScript framework that requires pushState-based routing — to Microsoft Azure, I believe this article will serve...
Netlify Functions for Sending Emails
23.4.2019
Let's say you're rocking a JAMstack-style site (no server-side languages in use), but you want to do something rather dynamic like send an email. Not a problem! That's the whole point of JAMstack. It's not just static hosting. It's that plus doing anything else you wanna do through JavaScript...
Provozujete vlastní server? O2 nabízí ochranu proti DDoS útokům
5.4.2019
Objednat si dnes na internetu DDoS útok například na server konkurence není nijak obtížné, ani nákladné. Naopak ubránit se mu snadné není. Společnost O2 začala po aprílové kampani nabízet ochranu před takovým útokem v podobě služby
Provozujete vlastní server? O2 nabízí ochranu proti DDoS útokům
5.4.2019
Objednat si dnes na internetu DDoS útok například na server konkurence není nijak obtížné, ani nákladné. Naopak ubránit se mu snadné není. Společnost O2 začala po aprílové kampani nabízet ochranu před takovým útokem v podobě služby
Collective #504
1.4.2019
CodeSandbox v3 * codetalks.tv * Name It, and They Will Come * code-server * oneliners.js * VexChords
Collective #504 was written by Pedro Botelho and published on Codrops
A historical look at lowercase defaultstatus
1.4.2019
Browsers, thank heavens, take backward compatibility seriously.
Ancient websites generally work just fine on modern browsers. There is a way higher chance that a website is broken because of problems with hosting, missing or altered assets, or server changes than there is with changes in...
Hackeři napadli server Asusu, šířili přes něj malware. Firma už problém vyřešila
27.3.2019
Až tisíce počítačů značky Asus se nakazilo malwarem, který šířil vlastní aktualizační nástroj firmy. Začátkem týdne o tom informoval výrobce antivirů Kaspersky Lab. Jeho výzkumníci útok objevili v lednu poté, co se hackerům podařilo ovládnout Asus Live Update a distribuovat přes něj škodlivé
Buddy: 15 Minutes to Automation Nirvana
26.3.2019
(This is a sponsored post.)
Deploying a website to the server in 2019 requires much more effort than 10 years ago. For example, here's what needs to be done nowadays to deliver a typical JS app:
split the app into chunks
configure webpack bundle
minify .js files
set up staging environment
upload...
Adding Search to Your Site with JavaScript
20.3.2019
Static website generators like Gatsby and Jekyll are popular because they allow the creation of complex, templated pages that can be hosted anywhere. But the awesome simplicity of website generators is also limiting. Search is particularly hard. How do you allow users to search when you have...
Write Your First Service Worker in 5 Minutes
18.3.2019
What is a service worker? A service worker is a little file that will allow you to cache files and other assets on a user’s machine. How is this different from server-side caching? Because the assets are stored on a user’s machine, rather than a server, there is no need to go across...