Thanks for the answer.
Software engineering, Rust, Zig, embedded
- 2 Posts
- 12 Comments
I always wonder with him. Is it satire? Or only sometimes satire? I am confused
paw@feddit.orgto
Fuck AI@lemmy.world•Microsoft Study Finds AI Makes Human Cognition “Atrophied and Unprepared”English
92·2 years agoActually are brains are plastic and can adapt to our inputs. If we focus our selves to reading long essays then our brain adapts and it will get more convenient or easier, less exhausting to read long essays. If we focus on small tik tok videos, our brain adapts as well and we find it easier or mire convenient to watch these Videos. Reading long essays will get more exhausting then.
So, our brains adapted to the calculator and most of us now are worse in calculating a logarithm with pen and paper then our ancestors. Is this a good thing? It depends. I personally believe, that getting worse at critical thinking, as the report suggests, is not a good thing.
Will I use LLMs in the future? Probably yes, but I will be even more careful with the generated text I get back.
paw@feddit.orgto
Fuck AI@lemmy.world•AI plans a vacation in Jasper for December, 2024English
2·2 years agoI am usually also sceptical about AI but I think it could be a useful technology (LLMs). However, it seems to me that currently we have the technology but did not find the best use cases for it. So we throw it like cooked pasta against the wall in the hopes that something sticks at the wall.
paw@feddit.orgto
Programming@programming.dev•Zig vs Rust. Which one is going to be future?English
2·2 years agoWhat are your goals?
If you want to learn another language just for the fun of it (the best reason) than learn both.
Of you want to improve your tool set to be able to land a job, then there is no good answer. Probably some other high level language like Python, Java, JavaScript, C#. Etc.
Also: Zig bay be easier to get started when coming from C, because it is mostly imperative.
Rust introduces concepts from functional programming. This could be interesting for you, of you don’t have any experience in functional programming to get in touch with other programming styles. Or not, of you explicitly don’t want to learn such things.
I use both languages, and I enjoy both. Shameless plug: I’ve written a blog post ~ 2 years ago what I like about each language: https://zigurust.gitlab.io/blog/posts/three-things/
paw@feddit.orgto
Ask Lemmy@lemmy.world•How are pseudo/true random numbers generated mathetmatically, what sorcery is this?English
1·2 years agodeleted by creator
paw@feddit.orgto
Ask Lemmy@lemmy.world•How are pseudo/true random numbers generated mathetmatically, what sorcery is this?English
1·2 years agoAnother tidbit: Operating systems (like Linux) usually provide a possibility to get entropy (ideally used as seed). Linux for example has /dev/urandom beyond others. Afaik, it uses the time between subsequent accesses to the hdd as one of the sources used to create the entropy.
paw@feddit.orgto
Ask Lemmy@lemmy.world•How are pseudo/true random numbers generated mathetmatically, what sorcery is this?English
2·2 years agoA software solution usually can create “random” faster, with the drawback that its not actual random
The Mersenne Twister was a famous pseudo random number generator when I wrote my diploma thesis in 2009. Today, afaik, PCG (Permuted Congrentual Generator) are better.
paw@feddit.orgto
Ask Lemmy@lemmy.world•How are pseudo/true random numbers generated mathetmatically, what sorcery is this?English
10·2 years agoFrom 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.
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.
paw@feddit.orgto
Programming@programming.dev•Is there an example program that illustrates how a buffer overflow attack actually executes arbitrary code?English
0·2 years agoThis is an old paper that it explains the basics: https://www.eecs.umich.edu/courses/eecs588/static/stack_smashing.pdf
Today there are a lot of mitigations where the steps of the paper don’t work anymore, but the general ideas should be still valid. I’ll hope you find the example you are looking for in there.
On another note: What is your intention? And can I participate 😈
The crowdstrike f*-up is so bad it travels back in time. That’s my best guess





They removed it faster then I had imagined.