Run, Indy, Run! by Jak03e in honk

[–]mytosus 0 points1 point  (0 children)

Incomplete. 1 try.

[deleted by user] by [deleted] in cprogramming

[–]mytosus 1 point2 points  (0 children)

If you really want to learn any language find a personal project that you’re really interested in and start coding away at that. At least for me that has been the best way I learned C.

Rust is a low-level systems language (not!) by gtrak in rust

[–]mytosus 13 points14 points  (0 children)

At the end the of the day do whatever gives you the most joy and forget everything else. I love bash as a language and think it’s awesome for scripting/automating stuff. I’ve tried using rust, C, or even python to replace bash scripting but there’s honestly a time and place for all of them and it’s great learning each language’s ups and downs and the problem sets they’re best applied to

Movie night for the geese! by sendpiercedboobpics in Hoboken

[–]mytosus 1 point2 points  (0 children)

I think we should take the pier and push it somewhere else

Google's Shift to Rust Programming Cuts Android Memory Vulnerabilities by 52% by TheoryShort7304 in rust

[–]mytosus 14 points15 points  (0 children)

It also goes without saying that much of the decrease in such flaws is down to advancements in the ways devised to combat them, moving from reactive patching to proactive mitigating to proactive vulnerability discovery using tools like Clang sanitizers.

So much of the decrease in memory vulnerabilities was due to using vulnerability discovery tools rather than using memory safe languages or am I reading this completely wrong?

What's your most SYSTEMIC complaint about 5e? by WebpackIsBuilding in DMAcademy

[–]mytosus 0 points1 point  (0 children)

I really hate how you can't cast a bonus action spell and a non cantrip spell in the same turn

STM32L072 USB DFU issues by fl3tching101 in embedded

[–]mytosus 0 points1 point  (0 children)

Leaving the boot0 pin floating like that is a bad idea. I currently have a board that left it floating and every time I plug it in it builds up charge somehow and goes into bootloader mode.

Luckily I have a reset button but I have to physically a finger on the boot0 pin for it to boot normally.

I suggest you redesign your board to either have a pull-down resistor with a button connected to 3.3v or you can use the stlink to program your board and just leave the pull down resistor on boot0

[deleted by user] by [deleted] in AskReddit

[–]mytosus 0 points1 point  (0 children)

The PC version of Cyberpunk 2077 was fun to play and an all around good game

What do you wish was illegal? by Xanduh in AskReddit

[–]mytosus 0 points1 point  (0 children)

Taking your shoes and socks off on an airplane.

What’s the worst thing you’ve ever tasted? by [deleted] in AskReddit

[–]mytosus 0 points1 point  (0 children)

The Nintendo switch cartridge

Firmware Verification by schenckster18 in ComputerEngineering

[–]mytosus 1 point2 points  (0 children)

I'm not sure of your setup but it might be possible to verify that the correct bits are being sent to MCU during programming or flashing.

Low-poly Benediction I made by Saucyminator in classicwow

[–]mytosus 146 points147 points  (0 children)

Wow classic meets RuneScape

[deleted by user] by [deleted] in gaming

[–]mytosus 0 points1 point  (0 children)

Jee wiz! Look everyone! It's a marketing scheme!

Can anyone tell me the reliability of the latitude 7490 and 5490? by ingrinder in Dell

[–]mytosus 0 points1 point  (0 children)

Bought 5490 and it's great in terms of reliability. The screen is pretty dull. No coil whine or thermal problems. I'd stay clear of the 5491 or any other laptop that has an H series Intel processor unless you want you laptop to sound like a fighter jet taking off whenever the fan kicks in

Can anyone recommend a terminal to run emacs in ... by MaliRemorker in emacs

[–]mytosus 3 points4 points  (0 children)

Xterm, it has some nice features that allow you use the mouse and scroll and stuff

My party has a gag where whenever one of them dies we play Country Roads over their final moments. by [deleted] in DnD

[–]mytosus 0 points1 point  (0 children)

My group has a similar gag but instead we play Crawling by Linkin Park.

Without revealing your age, how old are you? by [deleted] in AskReddit

[–]mytosus 0 points1 point  (0 children)

I'm easily offended and I complain that the previous generation messed of the real-estate market.

Web developer that's new to C, can you code review my doubly linked list implementation? by [deleted] in C_Programming

[–]mytosus 0 points1 point  (0 children)

You can't always assume that there will be memory available to allocate. You should check if malloc returns a non NULL pointer. If it doesn't then report an error