With Angular you can create fancy-pancy beautiful functional super realtime sites. But, the problem is, they don’t perform well.
Read ArticleCategory: Entwicklung
Webentwicklungg, Programmieren, Software, Server… irgendwie alles was in den Bereich Computer und Entwicklung fällt
Anything regarding web-development
Event Driven Architecture in Go rant
This was originally a question for Stackoverflow, but it’s actually a rant. Why bother with EDA at all? Because all I see is job offers for people specialized in “event-driven design”. In my opinion, especially when using a high performance, low resource language like Go, EDA is overkill. But anyhow, since I’d like to get…
Read Articlesha-1 ist tot
Gaëtan Leurent und Thomas Peyrin melden das sha-1 als hash Funktion tot ist. Somit gesellt es sich zu MD5, welches schon seit langen Jahren nicht mehr als hash Funktion zu gebrauchen ist. Als Ersatz wird SHA-256 oder SHA-3 empfohlen.
Read ArticleFind and delete all node_modules and bower_components in all directories
If you would like to delete all node_modules and bower_components in all directories relative to the current, use the following commands:
|
1 2 |
find . -name "node_modules" -type d -prune -exec rm -rf '{}' + find . -name "bower_components" -type d -prune -exec rm -rf '{}' + |
Dart vs Go performance (http)
Dart vs Go Dartlang vs Golang HTTP performance A simple test
Read Article