Node.js Be careful with mixing TypeScript and JavaScript In TypeScript you can use the same private class features like in JavaScript since ES2021. So far so good. Depending on the compiler options target during compiling TS to JS
Web Website Kfzgutachter Online Die Websites des Kfzgutachters/Kfzsachverständigen Klügl sind online. Neben Landingpages zur lokalen und regionalen Kundeninformation (wie https://www.ingolstadt-kfzgutachter.de oder https://www.ingolstadt-kfzsachverständiger.de) gibt es auf der Website
Rust My Advent of Code in Rust This December I code the really funny Advent of Code (AoC) puzzles using the Rust compiler language. The half is over It is Mon, December 13th and the first half
Rust Rocket with local git checkout At the moment you should start development with the Rust Rocket framework at the 0.5-RC versions. There has been many changes to the latest stable 0.4 version and
Rust Permutate vector values There is my Rust Playground to an iterative and the looping variants of vector permutation in Rust language. As known the iterative variant is a little bit faster.
Rust Rustlings 4.4.0 exercises A boring week started and I used the time for trying out Rustlings. These are small exercises to get you used to reading and writing Rust code. Quite interesting how
Rust Load your rusty Cargo There exist some comfortable must-have add-ons for the Rust programming language crate package manager Cargo. Check if you have them installed with command cargo --list! cargo-audit Audit Cargo.lock files
Entwicklung XFCE Tumbler patch I'm using XFCE Desktop as my working/development environment. It is fast and has all features I need. Allmost... There is a thumbnail service called Tumbler which creates these neat
Entwicklung Warum man nicht zu kurze Variablen verwenden sollte Gestern musste ich mich stundenlang auf die Suche im Netz nach einer Fehlermeldung von EclipseLink machen. Beim Aufruf von EntityManager.persist() in einem JUnit Test hieß es, dass meine Entity
Rust Test von HTTPS Endpunkten mit hyper hyper stellt eine schnelle HTTP Implementierung in Rust für Server und Clients zur Verfügung. Das Zusatz-Crate hyper-tls bringt die Implementierung von TLS mit. Aufsetzend auf die asynchrone Laufzeitumgebung Tokio benötigen
Rust fn make_static_str<T>(s: T) -> &'static str where T: Into<String> Die Überschrift ist zu kryptisch? Die Macht der Jedi sei mit dir! ;-) Es ist eine Rust Funktions-Definition. Damit können beliebige Strings in statischen Heap-Speicher gelegt werden und man bekommt
Rust Zugriff auf die Rust Dokumentation Die Schleusen sind geöffnet, es regnet ohne Unterlass, der Sommer scheint entgültig vorbei. Herbst und Winter sind Lesezeit. In diesem Sinne zeige ich hier die Möglichkeiten auf die lokal verfügbare
Rust ContentType Routing Filter in ActixWeb Die Filterung in Resource und Router funktioniert in ActixWeb basierend auf sog. Predicates. Eigenes ContentTypeHeader Predicate implementieren So wird ein ContentTypeHeader Predicate implementiert. Das Predicate sorgt dafür, dass der HTTP
Rust Test einer Rust Actix Web Applikation Mit einem Integrations-Test können im TestServer die Endpunkte der realen Applikation getestet werden. Ein HTTP-POST-Request zum Endpunkt /tlsrpt könnte folgend aussehen.