Great summary and congratulations.
paw
That's the reason I'm deeply offended. I'm german too. 😉
This video playlist from typecraft helped me a lot to set up a minimal neovim config: https://m.youtube.com/playlist?list=PLsz00TDipIffreIaUNk64KxTIkQaGguqn
I once in a while, improve, add or remove plugins and settings, whenever I find it necessary.
I use this rust plugin: https://github.com/mrcjkb/rustaceanvim However I haven't used Rust very much in my neovom set up as of now.
Another good starting point for a neovim config is here: https://github.com/nvim-lua/kickstart.nvim
Have fun.
European here. Is this actually true that waffle houses can get violent? If so, is there any explanation? I like waffles and never associated them with violence. Never been to a waffle house, though.
Funny video (at least for me) that explains why it is not so simply to react to bear attacks: https://m.youtube.com/watch?v=Se44YdrjZzU
Ja, ich spiele Gesellschaftsspiele meistens mit meinem Sohn. Wir spielen unter anderen:
- Lotti Karotti (das ist furchtbar aber dem Kind gefällt es)
- Uno in Junior Edition
- Monopoly Junior in Super Mario Edition (besser als gedacht und es ist so eine batteriebetriebene Münze dabei die Münzgeräusche macht wenn man auf den Knopf drückt. Das macht dem Sohn natürlich Spaß)
Bei der Suche nach geeigneten Spielen kann https://boardgamegeek.com/ helfen. Ist eine Art Katalog von Spielen, meist mit Foreneinträgen pro Spiel. Eher in englisch aber durchaus nützlich.
Can it be used on a "normal" android phone or just android tv?
Touché (I'm German, btw)
My understanding of the whole "being beneficial for humanity" is that:
- It's kind of a meme that you need to have as a silicon valley start-up. Like Google's niw dropped "don't be evil".
- If the founders and the investors, the share holder, get rich or richer, then this is already beneficial to humanity. In a net positive way similar to trickle-down-economics. At least thatvis what I think their line of thinking is.
Having said that, I think LLMs or Machine Learning can be used for useful things but I also think - as stated - the message " being beneficial for humanity" is hollow in a broader sense.
I find Zig a language wuth very good WASM support out of the box and it is mostly imperative in nature.
It is currently pre 1.0 and has some rough edges.
And I was always taught that capitalism allocates the resources ideally. /s
From my opinion it is more computer science sorcery than math sorcery.
For true random generation you usually need some specialized hardware for it, that uses sone natural source of random. One could use the decay of a radioactive material as such a source or the noise one can get from audio input. Unfortunately, I don't know what actual hardware uses.
For pseudo random generation, you usually use a seed (ideally a true random value or something with a high entropy) which you feed into an algorithm like Linear Congruental Generator (LCG) or Mersenne Twister (there are lots of algorithms).
One further important note: Tge use case forvwhich you need random numbers is important. A video game could accept a random number generator with "lower" quality while a cryptographic algorithm always needs a cryptographic secure random number generator (don't forget: "don't roll your own crypto").
Finally there are quasi randim number generators, however this name is very misleading. The mathematical correct term is low discrepancy sequence. There are not random at all but can be used and have useful properties in some settungs where pseudo random number generators can be used. Never in a cryptographic algorithm, though.