An all new Angular

Just this morning I had a very thorough and pleasant interview with a team that has its mission-critical stuff done with Angular. For me a good reason to check back with the Angular crew, also because they also were the pioneers of a PL that I’ve come to like and use in the mean time: TypeScript. And a revisit of Angular doesn’t disappoint.

An all new Angular weiterlesen

Next up: Low Power Computing

Obviously.

We knew this would be coming. Isn’t there any seasoned developer like me who doesn’t think that in the last two decades things have gotten out of hand? Most of the Web is dynamic for no good reason and recent tech-fads such as NodeJS or the Container/Docker Craze with its convoluted and bloated build, deploy and runtime requirements have taken resource consumption up to eleven. And certainly not just serverside. Just look at Googles favorite end-user VM Chrome and its energy requirements.

Next up: Low Power Computing weiterlesen

Alle Docker Container stoppen

Um alle Docker Container zu stoppen, einfach diesen Befehl ausführen:

docker kill $(docker ps -q)

Wie funktioniert das?
Der ‘docker ps’ Befehl listet alle laufenden Container. Die Option ‘-q’ listet nur die IDs. Diese liste übergeben wir dem ‘docker kill’ Befehl. Fertig.

Alle Docker Container entfernen

Wenn man die Container nicht nur stoppen, sondern auch entfernen will, einfach diesen Befehl ausführen:

docker rm $(docker ps -a -q)

Dieser Befehl funktioniert genau so wie der obige, nur das die ‘-a’ Option auch alle Container listet, die nicht laufen und ‘rm’ (‘remove’) die Container entfernt.

Alle Docker Container stoppen weiterlesen

Meet Deno, the new Node

Deno is a new implementation of a runtime environment by the original creator of Node. v1 came about roughly a year ago and it’s basically a redo of Node with all the insights gained and the newest proven technologies at its core. Deno is implemented in Rust and sports TypeScript as a native and first class citizen. By default Deno has no local access, it has to be given explicitly which is the right way to secure things. It has integrated tooling such as a bundler and a formatter and it loads external components via URI, so it’s basically SOA-ready by nature.

Meet Deno, the new Node weiterlesen

Professional Web Analytics

One does not have to suck up to Google & Co. or try to apply some magic SEO-Snakeoil in order to be diligent about professional web performance and search-engine friendlyness. Google doesn’t like people trying to trick them into higher pageranking and they are fast at retaliation and downmodding ranks a few thousand points when it comes to that.

Professional Web Analytics weiterlesen

SEO – Eine Begriffsklärung

Seit etwa zwei Jahrzehnten macht ein seltsamer Begriff im Dunstkreis des Themas Web­entwicklung die Runde. Ein Begriff der bei professionellen Webentwicklern mitunter einen schalen Nachgeschmack und das Gefühl von schmierigen Gebraucht­wagen­händlern und Graumarkt Deals mit gefälschten Modelabels und Parfüm­marken hinterlässt.   SEO – Eine Begriffsklärung weiterlesen

25 Years of PHP

A very enlightening talk on PHP and its history. Rasmus Lerdorf thouroughly explains apparent inconsistencies and also explains why they make perfect sense. Get to know the in and outs of PHP and why it’s brilliant in its own way and why it’s so successful to this very day. This is a must-watch for every web software developer!

https://www.youtube.com/watch?v=wCZ5TJCBWMg

The JAMStack Approach

Tearing ties between frontend and backend apart, going headless or at least ‘headlose’, brazenly moving dynamic logic to the client and decoupling as much as possible into disparate microservices. This probably is the way to go forward in the 2020ies for web content. One degraded WordPress project to many has me seriously looking into this sort of thing now. The JAMStack Approach weiterlesen