wiennat | 2 years ago | on: Modern Java/JVM Build Practices
wiennat's comments
wiennat | 3 years ago | on: Obsidian 1.0 – Personal knowledge base app
wiennat | 3 years ago | on: I still love PHP and JavaScript
wiennat | 3 years ago | on: Soundscapes of the JR Yamanote Line
wiennat | 3 years ago | on: Tell HN: I used the same computer since 2007 (with minor upgrades)
-------
I gave my 2010 macbook pro to my parents when I got a new one in 2015. They still use it to surf the internet and sometimes for netflix before bedtime. Its battery is so swollen that the lid cannot close anymore.
I also bought apple care but never had any chance to use it. Very impressive for a computer without any hardware failure for 12 years.
wiennat | 3 years ago | on: Ask HN: Does a static site need anything more than a simple VM running a server?
wiennat | 4 years ago | on: What is going on with web servers
wiennat | 4 years ago | on: What is going on with web servers
wiennat | 4 years ago | on: Are software engineering “best practices” just developer preferences?
wiennat | 5 years ago | on: Did fish sauce in Vietnam come from ancient Rome via the Silk Road?
The west Sriracha was developed by a Vietnam immigrant. You can see his recipe as one of many available Sriracha variants at that time.
wiennat | 5 years ago | on: Refactor vs. Rewrite
Rewriting it to REST allows us to "rebrand" these apis. At least, it does not scare our api users as the word "graphql" did.
wiennat | 6 years ago | on: Self-hosted, super simple photo stream
wiennat | 6 years ago | on: Tmux Tutorial
wiennat | 6 years ago | on: A Gentle introduction to Kubernetes with more than just the basics
in dev: You can setup dependencies without worrying about underlying os. So it is easier for building a new dev machine, adding a new team member, etc.
in integration test: you can setup multiple integration test environment as long as you have enough resource. Running multiple integration tests without interfering other team members is the major benefit here.
in prod: as you may know, for isolation and horizontal scaling. Easier roll back and update?
wiennat | 6 years ago | on: Toilets of the World
wiennat | 6 years ago | on: Toilets of the World
(except you use Japanese washlet)
wiennat | 6 years ago | on: Japan Begins Experiment of Opening to Immigration
wiennat | 7 years ago | on: Turning the Puzzle Sideways: Sleep, Diet and the Brain-Gut Connection
wiennat | 7 years ago | on: Benchmarking Go vs. Node vs. Elixir
I just want to point out that Node runs with a single thread so it does not max out CPU utilization. It would be nice if the author does the benchmark again with multiple processes of node js.
wiennat | 7 years ago | on: Benchmarking Go vs. Node vs. Elixir
It is also interesting to see that only one Node process can barely serve 10k connections.
---- After I check the source at [0]. They use a simple http module to serve the requests while they use `http.ListenAndServe` which spawns go routines, hence more CPU utilization.