// This will use the single-packet attack for HTTP/2, and last-byte synchronisation for HTTP/1 | |
int NUMBER_OF_REQUESTS = 10; | |
var reqs = new ArrayList<HttpRequest>(); | |
for (int i = 0; i < NUMBER_OF_REQUESTS; i++) { | |
reqs.add(requestResponse.request()); | |
} | |
var responses = api().http().sendRequests(reqs); | |
var codes = responses.stream().map(HttpRequestResponse::response).map(HttpResponse::statusCode).toList(); | |
logging().logToOutput(codes); |
# The list below is my current set of uBlock Origin additions. | |
# My criteria are basically, if I think a page is slow I look at | |
# the network tab in devtools, and if I see many megabytes of | |
# javascript shimmed in there I block the server delivering it. | |
# If that changes literally nothing that I see or care about, I | |
# add it to the list. | |
# This breaks (most) youtube embeds, the "log in with google" | |
# popup, and twitter/facebook entirely. It also presents some | |
# usability problems with Google sites (gdocs, etc) that I decided |
sudo systemctl stop docker && \ | |
docker context use default && \ | |
sudo systemctl start docker |
CVE-2025-3155 affects Yelp which is The Gnome's user help application. It's installed by default on Ubuntu desktop.
A URI scheme is the part of a Uniform Resource Identifier (URI) that identifies a protocol or a specific application (steam://run/1337
) that should handle the resource identified by the URI. It's the part that comes before the colon (://
).
Sehr geehrte Damen und Herren,
Name der Kommune ist in Sachen Social Media auf Facebook und Instagram aktiv. Insbesondere im Hinblick auf die letzten Entwicklungen in den USA im Allgemeinen und Meta im Speziellen finde ich es problematisch, Bürgerinnen und Bürger diesem Konzern in die Arme zu treiben. Ohne einen Account dort hat man es deutlich schwerer, mit aktuellen Meldungen versorgt zu werden.
Es gibt aber eine einfache Möglichkeit, der Umklammerung der Konzerne zu entkommen: der Mastodon-Server des Landes. Damit ist man Teil des
https://daten.berlin.de/datensaetze/20-grune-hauptwege-wanderkarte-wfs-99a22ff0 | |
https://daten.berlin.de/datensaetze/20-grune-hauptwege-wanderkarte-wms-1f028343 | |
https://daten.berlin.de/datensaetze/3d-gebaudemodelle-im-level-of-detail-1-lod-1-atom-e2a1e24e | |
https://daten.berlin.de/datensaetze/3d-gebaudemodelle-im-level-of-detail-2-lod-2-atom-3c7c49af | |
https://daten.berlin.de/datensaetze/3d-gebaudemodelle-im-level-of-detail-2-lod-2-wms-f2a8a483 | |
https://daten.berlin.de/datensaetze/abstellflachen-fur-mikromobilitatsangebote-wfs-6185b5fb | |
https://daten.berlin.de/datensaetze/abstellflachen-fur-mikromobilitatsangebote-wms-e45c2176 | |
https://daten.berlin.de/datensaetze/adressen-berlin-wfs-634ab8ba | |
https://daten.berlin.de/datensaetze/adressen-berlin-wms-130748fb | |
https://daten.berlin.de/datensaetze/adressen-im-inspire-datenmodell-atom-3bd15407 |
https://daten.berlin.de/datensaetze/abstellflachen-fur-mikromobilitatsangebote-wfs-6185b5fb | |
https://daten.berlin.de/datensaetze/abstellflachen-fur-mikromobilitatsangebote-wms-e45c2176 | |
https://daten.berlin.de/datensaetze/adressen-berlin-wfs-634ab8ba | |
https://daten.berlin.de/datensaetze/adressen-berlin-wms-130748fb | |
https://daten.berlin.de/datensaetze/adressen-im-inspire-datenmodell-wms-ee802686 | |
https://daten.berlin.de/datensaetze/adressen-regionales-bezugssystem-rbs-wfs-c43966c4 | |
https://daten.berlin.de/datensaetze/adressen-regionales-bezugssystem-rbs-wms-d1c67d30 | |
https://daten.berlin.de/datensaetze/afis-berlin-wfs-1408ef18 | |
https://daten.berlin.de/datensaetze/afis-berlin-wms-c4897b9f | |
https://daten.berlin.de/datensaetze/alkis-berlin-bezirke-wfs-ced31d7d |
A guide written by Green, an ente.io lover
Migrating from Authy can be tiring, as you cannot export your 2FA codes through the app, meaning that you would have to reconfigure 2FA for all of your accounts for your new 2FA authenticator. But do not fear, as there is a much simpler way to migrate from Authy to ente!
A user on GitHub has written a guide to export our data from Authy (morpheus on Discord found this and showed it to us), so we are going to be using that for the migration.
"use strict"; | |
class Hydrator | |
{ | |
#immutable; | |
fromEntity; | |
toEntity; | |
constructor (fromEntity, toEntity, lazy = true, immutable = true) |