Search
Stay DRY Using axios for API Requests
18.6.2020
HTTP requests are a crucial part of any web application that’s communicating with a back-end server. The front end needs some data, so it asks for it via a network HTTP request (or Ajax, as it tends to be called), and the server returns an answer. Almost every website these days does this in some...
[aktualita] Livesport koupil od Petra Vachlera server Kinobox, chystá "svět videozábavy"
10.6.2020
Internetový portál Kinobox.cz, který informuje o novinkách ze světa filmu, mění majitele. Od Petra Vachlera ho podle magazínu Forbes kupuje společnost Livesport. Redakci pod vedením filmového publicisty Kamila Fily chce využít i pro budoucí streaming televizního vysílání. Kinobox se má pod novým...
How I Used Brotli to Get Even Smaller CSS and JavaScript Files at CDN Scale
5.6.2020
This article is about my experience using Brotli at production scale. Despite being really expensive and a truly unfeasible method for on-the-fly compression, Brotli is actually very economical and saves cost on many fronts, especially when compared with gzip or lower compression levels...
Hackers Plant Crypto Miners By Exploiting Flaw in Popular Server Framework Salt
4.5.2020
Hackers have exploited a critical flaw in infrastructure management tool Salt and, in one case planted crypto mining software
Continuous Deployments for WordPress Using GitHub Actions
6.4.2020
Continuous Integration (CI) workflows are considered a best practice these days. As in, you work with your version control system (Git), and as you do, CI is doing work for you like running tests, sending notifications, and deploying code. That last part is called Continuous Deployment (CD)....
Collective #600
2.4.2020
Fix an overloaded server * New use-cannon features * Ash's Smooth Scroll * Animockup
Collective #600 was written by Pedro Botelho and published on Codrops
APIs and Authentication on the Jamstack
31.3.2020
The first “A” in the Jamstack stands for “APIs” and is a key contributor to what makes working with static sites so powerful. APIs give developers the freedom to offload complexity and provide avenues for including dynamic functionality to an otherwise static site. Often, accessing an API requires...
The 3 Laws of Serverless
6.3.2020
Burke Holland thinks that to "build applications without thinking about servers" is a pretty good way to describe serverless, but...
Nobody really thinks about servers when they are writing their code. I mean, I doubt any developer has ever thrown up their hands and said “Whoa, whoa, whoa. Wait...
Minecraft Players Can Win Bitcoin on New Treasure Hunt Server
3.2.2020
A new Minecraft server allows players in the blocky universe to compete against one another to find hidden treasure and receive a bitcoin reward
Apollo GraphQL without JavaScript
29.1.2020
It's cool to see progressive enhancement being done even while using the fanciest of the fancy front-end technologies.
This is a button in a JSX React component that has a click handler applied directly to it that fires a data mutation Ajax request through Apollo GraphQL. That is about the least...
Bitcoin.com Releases SLP Indexer Server for High Performance Token Services
21.1.2020
Bitcoin.com is releasing the open source SLP Indexer Server for validating Simple Ledger Protocol tokens as part of its commitment to the development of the token ecosystem. The tool is designed to make SLP token transactions perform as fast as BCH and empower developers to create even greater...
IP Geolocation and Threat Intelligence API: ipdata (Sponsored)
20.1.2020
An IP address is a simple, numeric piece of information that gets passed to a server, but that IP address can provide a wealth of information with ipdata. With ipdata you can learn user location, language, currency, and much more! Quick Hits ipdata is an IP Geolocation and Threat Intelligence API....
BTCPay Server Now Processing Blockstream’s Liquid Assets
15.1.2020
BTCPay server now accepts assets issued on Blocksteam's sidechain, Liquid
[aktualita] SledováníTV zařadí do nabídky nejznámější server s obsahem pro dospělé
14.1.2020
Předplatitelé služby SledováníTV.cz, kteří využívají některý z balíčků Basic, Max, Maxi, Standard, Prémium nebo Relaxxx, uvidí od 15. ledna 2020 nový program. Provozovatel služby se dohodl na zařazení kanálu Pornhub, přidružené aktivity stejnojmenného serveru s obsahem pro dospělé. „Kanál bude...
Filtering Lists Dynamically With Vue on the Server Side is Easier Than You’d Think
4.12.2019
I recently attended the ARTIFACT conference in Austin, TX, and was inspired by a few talks about accessibility through the lens of site performance. It became clear to me that there is this tendency to rely on big JavaScript frameworks to handle the work — like React, Vue, and Angular — but that...
JAMstack CMSs Have Finally Grown Up!
15.11.2019
This article is based on Brian's presentation at Connect.Tech 2019. Slides with speaker notes from that presentation are available to download.
In my experience, developers generally find the benefits of the JAMstack easy to comprehend. Sites are faster because the resources are static and served...
Build a 100% Serverless REST API with Firebase Functions & FaunaDB
31.10.2019
Indie and enterprise web developers alike are pushing toward a serverless architecture for modern applications. Serverless architectures typically scale well, avoid the need for server provisioning and most importantly are easy and cheap to set up! And that’s why I believe the next evolution...
Nepoužívám žádnou VPN pro bezpečnost nebo anonymitu
25.10.2019
NordVPN, poskytovatel VPN služeb, byl někdy v roce 2018 hacknut. V oficiální reakci stojí, že se jednalo jen o jeden server a že to bylo kvůli nezabezpečenému systému pro vzdálenou správu, který na stroji ponechal správce datacentra
[aktualita] Server iDnes.cz zveřejnil cenu předplatného, za první měsíc vydal 600 placených článků
21.10.2019
Přístup do placené sekce zpravodajského serveru iDNES.cz bude od začátku prosince stát 39 Kč měsíčně. Cenu předplatného zveřejnilo vydavatelství Mafra. Sekci iDNES Premium si podle firmy za první měsíc zkušebního provozu vyzkoušelo 150 tisíc lidí. Až do konce listopadu ale uživatelé mohou...
Filtering Data Client-Side: Comparing CSS, jQuery, and React
24.9.2019
Say you have a list of 100 names:
<ul>
<li>Randy Hilpert</li>
<li>Peggie Jacobi</li>
<li>Ethelyn Nolan Sr.</li>
<!-- and then some -->
</ul>
...or file names, or phone numbers, or whatever. And you want to filter them...