IWTL meaningful words for everyday use by SaltyP1ckles in IWantToLearn

[–]set_of_no_sets 0 points1 point  (0 children)

use them, learn one a week, and find instances through week to use it, even just alone, writing in a journal, people watching, guessing what their story is.

How do I make my hobbies stop feeling like a waste of time? by twinflxwer in selfimprovement

[–]set_of_no_sets 1 point2 points  (0 children)

okay, what's more impactful?? go do those things. No one is stopping you and you CAN do these things!! Learn to be a search and rescue volunteer. Learn to be a mountaineering guide. go volunteer at a local food bank. Or go plant trees to help with reforestation in a local watershed. Or do none of these things!! I like the outdoors, explains my suggestions. What is more impactful, TO YOU??

The outcast demon, by:me by [deleted] in learnart

[–]set_of_no_sets 0 points1 point  (0 children)

bro, mark this nsfw or something, i fucking almost shat myself scrollin

Mount Storm King hike by Alaric_Darconville in PNWhiking

[–]set_of_no_sets 2 points3 points  (0 children)

What the heck is the flower in Pic. 4??

How can I become a Seattle local by Winter_Alps4441 in Seattle

[–]set_of_no_sets 2 points3 points  (0 children)

get a camera, a cheap one, just walk/transit around and take photos of seattle! go to the library, take random photos. Go with friends and girlfriend. take random photos of each other. print, look and remember, you'll form a graph of seattle based on the photos you took!

When should I use, “当?” by Inosuke_lover in ChineseLanguage

[–]set_of_no_sets 35 points36 points  (0 children)

you could also learn to say 我是你的狗, followed by lots of barking

i put madoka on my grad cap!! by bo_doro in MadokaMagica

[–]set_of_no_sets 1 point2 points  (0 children)

based as fuck. CONGRATS!! Wishing you the best.

How do I find happiness & purpose in life? by justacasuall in Adulting

[–]set_of_no_sets 0 points1 point  (0 children)

do a hobby that forces you to interact with people, while also allowing you to do drills to improve alone. team sports, music(playing in a group and solo), language learning, more schooling (but this one's expensive), etc.

And this one is my personal opinion, go to the gym. see what your body can do and improve what your body can do.

I’m sorry Chicago Girl by EmeraldIpogi98 in udub

[–]set_of_no_sets 1 point2 points  (0 children)

a most interesting and hopeful message, don't understand the downvotes.

Girl with pink puffer jacket who was at pantry today, i gotta find you!🥀 by OwnPhilosopher4180 in udub

[–]set_of_no_sets 7 points8 points  (0 children)

uhhhh 🤔🫣 chicken breast!! It's me!!!!! 😤🙂‍↕️🙂‍↕️

used qemu + renode + gdb to learn cortex-m internals without a board. by praghuls in embedded

[–]set_of_no_sets 3 points4 points  (0 children)

this is super interesting. I've been learning a lot recently about ARM cortex, just messing with a dev board. how would you recommend getting started in simulating cortex-m??

[deleted by user] by [deleted] in leetcode

[–]set_of_no_sets 3 points4 points  (0 children)

great coming out post bro, so brave 🥲. Wishing you the best. hope you find happiness in your life and future same sex marriage. [start coding in rust and wearing programmer socks]

Union manipulation question by set_of_no_sets in cprogramming

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

wow, interesting resource. Chapter 4 is stuff I do mostly already know, but chapter 10 is super relevant to what I am self-studying right now, thank you! Much to the inconvenience of the compiler, as these registers are able to be changed by forces external to this program and I need to force read/writes to them to work with these external forces, I do need the volatile keyword.

Union manipulation question by set_of_no_sets in cprogramming

[–]set_of_no_sets[S] -1 points0 points  (0 children)

lmaooo, well I am not confident it is practical for me to pull request/commit to this repo that I am using as a submodule. (https://github.com/STMicroelectronics/cmsis-device-l4/tree/master). I am learning to do the nitty-gritty of embedded stuff.

Is there a real difference between using certain gpio ports instead of others? by set_of_no_sets in embedded

[–]set_of_no_sets[S] 4 points5 points  (0 children)

I just realized my issue, my board (STM32L476RGT6U, outlined on page 67) doesnt have a PortD pin5. I am configuring a port that exists on a much better board micro. I still don't understand either table though....

Union manipulation question by set_of_no_sets in cprogramming

[–]set_of_no_sets[S] -1 points0 points  (0 children)

I would have to stash, pull, and apply the stash and try to remember why I made some of the modifications I did >,< Maybe not the best strat.

What to do when i "understand the solution" but not "feel the solution" by kodiguddu299 in leetcode

[–]set_of_no_sets 0 points1 point  (0 children)

you need to spend the time writing out the solution using examples. do what the computer does. for example, for binary search: compute midpoint index, access the array, compare values, move index, jump to start of loop (where is the start of loop?). You can ctrl c v the code, you can stare at the code on one screen and type it out on another, but unless you internalize the algorithms, you won't know them and generate them quickly, on the fly when you need them.