It was a weaker El Niño than I.e. 2016 one. And it ended, by May, but still temperatures are far higher than what they should be. There are still record breaking months or only surpassed by 2023 ones.
Likewise, the Hunga Tonga–Hunga Ha'apai eruption resulted in a large amount of water into the stratosphere. Water is far more an effective heat trap than co2. We do not know exactly how long the effects of this eruption will last.
We're building Owarezaka as yet another unofficial GitLab Mobile Client for IOS and Android. We've started it as a pandemic project and hope to release a first iteration in April. You can play with it on your local development environment.
1. Contributions are welcome.
- Just open and issue, drop a comment etc
- Or, if you're into React Native/JavaScript feel free contribute merge requests
Continuous overpopulation around the Marmara sea is maybe the main reason - and noone seems to do anything about it except remote-ization due to covid19.
The article blames over-industrialization and under-investment into water treatment.
Instead of a large planned wastewater treatment plant, the powers that be decided to inject wastewater at 50m depth. They had hoped that the bulk of the wastewater will be pulled into Black Sea and not be their problem.
But this plan backfired, and phytoplankton bloomed beyond the ability of other organisms to eat it. As a result, less oxygen is available in the water, fishing has collapsed, mussels turned poisonous and can't be harvested or farmed any more.
After complaining about emails flooding my work day - Slack was a relief. But now, I have ended up with 300 slack channels - I have "star"red 20 of them - and I can't keep track of DMs, pings, threads.
So My email inbox is now somehow cleaner - if I exclude a lot of automated notifications.
"Since 2013, every private household in Germany has been required to pay these fees, regardless of whether the household actually has the capability to receive the broadcasts themselves."
So this is a universal tax anyway, whether or not you have a TV-enabled device.
They already charge you anyway. They just assume you have an Internet or TV/radio enabled device. Again, having internet is enough as they say you may watch the public media on the broadcaster's website...
Some years ago they would send people to sniff around your home to find a media device, like taking photos of your car radio in front of your home to prove you can access public media. But if you let them in your home, they'd write a report of you having a TV etc.
But as I said this isn't happening any more, they just assume every household has a device capable of accessing public media so everyone must pay.
There was a big movement against this but ultimately the Constitutional Court decided all this is A-OK.
Note that neither CockroachDB or TiDB use Golang for their actual storage engine, which is in both cases written in C (RocksDB). They do use Golang for SQL parsing though, which is what this post was mostly about.
VictoriaMetrics [1] is written entirely in Go. By default it uses canonical zstd library for compression (the library is written in C), but it supports pure Go mode when built with `make victoria-metrics-pure`. In this mode it uses zstd implementation written in Go [2].
rust would be more appropriate if your intention was to use this in production. Databases ad GC don't mix well. (its done but it makes tuning a nightmare)
As much as I love rust, its learning curve is high and I'm sure Op doesn't want to spend half his article teaching all the intricacies of types and the borrow checker. Go is easy to learn over a weekend so its probably a better medium for illustrating the concepts as everything is laid out simply.
A garbage collector is not inherently incompatible with a low-latency database. I was generally very happy with the performance of Go's garbage collector enough to have built Prometheus, the time series database, on it back in 2012, when the collector was considerably more naive.
Truth is I've written about how to parse in better languages before (JavaScript, Python, Standard ML, etc.) and I wanted to figure out a good approach for doing it in Go.
As for databases and GC, you may be right but there are still major databases out there written in Java for example.