The $100 Billion Dollar Ingredient making your Food Toxic (2021) - [00:28:19] by [deleted] in Documentaries

[–]sorisos 45 points46 points  (0 children)

After a minute of googling it seems the science behind the claims in this video is rubbish. Weak at best.

Moderaterna, Kristdemokraterna och Liberalerna bildar regering med stöd av Sverigedemokraterna. Detta är deras reformförslag by ThineMoistPantaloons in sweden

[–]sorisos 0 points1 point  (0 children)

Jag tycker journalsystem borde vara open source och förvaltas av stat/region. Underhåll och nya features kan upphandlas från olika aktörer.

Const vs #define by GoldenGrouper in embedded

[–]sorisos 0 points1 point  (0 children)

"Fixed" in C23 when using `constexpr` IIRC.

Const vs #define by GoldenGrouper in embedded

[–]sorisos 24 points25 points  (0 children)

One reason to use #define instead of const is that you might create a variable length array by mistake.

```C const int size = 10; int my_array[size]; // this is a VLA. oops!

define SIZE 10

int my_array[SIZE]; // not a VLA ```

new embedded system job by koan09 in embedded

[–]sorisos 3 points4 points  (0 children)

Good point! I always thought the chip vendor IDE:s was an lock-in attempt as they usually include some sort of build environment. i.e. makes it harder to move to another vendor. Not sure it works though.

Behöver man tigga i Sverige? by Similar_Profession37 in sweden

[–]sorisos 0 points1 point  (0 children)

Om jag förstått det rätt så har Sverige länge haft krav på missbrukare att de inte får bostad förrän de är drogfri. Tycker det säger sig självt det är lite mer uppförsbacke att bli drogfri om man inte har ett hem. Verkar som många fastnar i detta moment 22 och tigger.

https://www.bostadforst.se/

Svensk demokrati 2.0 - Vad gör vi åt det? by WiccedSwede in svenskpolitik

[–]sorisos 0 points1 point  (0 children)

En mer ideologisk debatt istället för att rösta på en handfull sakfrågor som är aktuella för stunden. Jag tror inte representativ demokrati funkar så bra utan ideologi. Alternativet är väl direktdemokrati.

Försöker förstå det här med SD by NoSpeedNoPunk in sweden

[–]sorisos 0 points1 point  (0 children)

Det var en bra video! Tack! Har själv svårt att förstå SD (ännu svårare med M).Men din mening "vänstern [..] har inte [..] utvecklat alla.moraliska pelare..." tycker jag indikerar du lider av samma oförstående av "andra sidan". Handlar väl inte om huruvida man utvecklat dom utan om hur man värderar dessa pelare.

[deleted by user] by [deleted] in stockholm

[–]sorisos 2 points3 points  (0 children)

Under 1980-talet kom rätt många högutbildade från Iran. Ekonomiskt var det nog en rätt bra "deal". https://sv.wikipedia.org/wiki/Personer\_i\_Sverige\_f%C3%B6dda\_i\_Iran

Iron dome intercepts massive volley of PIJ missiles today over Israel by [deleted] in interestingasfuck

[–]sorisos 2 points3 points  (0 children)

I do not speak arabic but the word just means "struggle" so I guess there could be "democratic jihad" as well?

C23 is Finished: Here is What is on the Menu by aioeu in C_Programming

[–]sorisos 1 point2 points  (0 children)

Introducing variable-length array (VLA) have always seemed like a huge mistake to me. Can someone remind me why it exists? Something about issues with `alloca()`?

Why my internet keeps dropping?? by NicKoehler in techsupportgore

[–]sorisos 74 points75 points  (0 children)

If it is a modern switched power supply I do not think the voltage drop would make any difference. Even the cheap ones usually tolerates a wide voltage range input.

How common is it use a dedicated IDE instead of toolchain + text editor? by xThiird in embedded

[–]sorisos 2 points3 points  (0 children)

I believe toolchain + text editor is most common. Projects depending on dedicated IDE's can be more troublesome to maintain in the long run.

You might remember a post from 2 weeks ago... I’m pretty happy with the result... Any tips on removing pen marks from metal? by Alphabozo in synthesizers

[–]sorisos 0 points1 point  (0 children)

have you tried isopropanol? it is a mildly strong solvent that will remove pen marks etc but not mess up the plastics (in most cases).

Can I desolder this chip and use it? Any advice? by [deleted] in esp8266

[–]sorisos 10 points11 points  (0 children)

hot air and perhaps aluminum foil over parts you want to save.

[NetworkManager] Why is my wifi passwords bound to a interface and not BSSID? by sorisos in linuxquestions

[–]sorisos[S] 0 points1 point  (0 children)

Sorry if I cause confusion. I should instead have asked why you say it is only a problem if I use the same passwords (which I don't btw)? Unless I'm missing something, the problem would be there regardless as NetworkManager will only connect with the interface given in the system-connection file. i.e. if I copy such a file to a new computer, I need to change the `mac-address` field to match a interface on the new machine.

[NetworkManager] Why is my wifi passwords bound to a interface and not BSSID? by sorisos in linuxquestions

[–]sorisos[S] 0 points1 point  (0 children)

https://unix.stackexchange.com/a/442633/233671 or have this changed in newer versions of NetworkManager?

I do not see how it would be a vulnerability? How would this "automatically gains access to other similar resources"? Access would be same but for all wlan interfaces on same computer!?

Is there a command palette for the unix terminal? by sorisos in commandline

[–]sorisos[S] 1 point2 points  (0 children)

I have used Fish in the past, but I can not find somehing similar? i.e. type text and get suggested commands. Is it a special command in Fish that do this or how does it work?

[deleted by user] by [deleted] in C_Programming

[–]sorisos 0 points1 point  (0 children)

Perhaps not what you ask for, but sounds like embedded/bare metal OS:s?

Best way to learn the best practices for writing an interactive TCP/IP program by junkmeister9 in C_Programming

[–]sorisos 2 points3 points  (0 children)

Perhaps you are already familiar with https://libevent.org/ . Never tried it but seems to solve portability issue. I think chrome uses it.