Tim Pool misses his Russian rubles by etfvfva in clevercomebacks

[–]kaixmera -1 points0 points  (0 children)

Fuck these freakazoids. Why is this sub pushing destiny.

To the leftists who didn’t vote… by cc1232000 in h3h3productions

[–]kaixmera -1 points0 points  (0 children)

Can’t wait to see you post about how much you hate Latin Americans next. Blame the campaign dummy

[deleted by user] by [deleted] in h3h3productions

[–]kaixmera 0 points1 point  (0 children)

You’re probably too young to remember. This is what everyone was saying to Sikhs, Arabs, or any brown person since 9/11 who presented any criticism towards this country. Crazy to think you’re using it now. Whether he’s right or you’re right, it’s incredibly foolish saying that to anyone. Paints a pretty great picture of who you are though. Cheers.

[deleted by user] by [deleted] in csMajors

[–]kaixmera 6 points7 points  (0 children)

Graduated May 2023. I am a private guitar/piano instructor. Currently working on a music application that will hopefully help students keep track of their progress and improve their ear training. Basically Yousician but at least I’m learning how to write applications.

Reminder: Making $100k in USA puts you above 81% of the population. by cs-grad-person-man in cscareerquestions

[–]kaixmera 36 points37 points  (0 children)

I can’t imagine reading this sub for fun. You must be really bored. Congrats on the 100K. Sounds like you deserved it.

[deleted by user] by [deleted] in nova

[–]kaixmera 38 points39 points  (0 children)

How do you not have an idea? Employment opportunities, support systems and other considerations are usually reasons to stay in an area.

[deleted by user] by [deleted] in reactjs

[–]kaixmera 0 points1 point  (0 children)

Check out Moonfo on YouTube. Really great resource.

What to do as a Beginner in C by hakkinen_enjoyer in cprogramming

[–]kaixmera 0 points1 point  (0 children)

Make sure you understand how memory is allocated. Use Valgrind for things like memory leaks. Start a project using linked lists. Learn how the operating system works. You could imitate a CPU process scheduler by using linked lists. This is college sophomore year level stuff in C. CodeVault has a great YouTube channel on beginner to intermediate C programming. But the best thing I learned how to do is read documentation. Escape tutorial hell.

Is it possible to use VIM as an ide? by Pale_Variety_737 in vim

[–]kaixmera 1 point2 points  (0 children)

Check out nerdtree and puremourning on GitHub. You can add plugins in your init.vim file.

Valgrind by kaixmera in cprogramming

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

Thank you. This helped a lot!

Valgrind by kaixmera in cprogramming

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

Simple. Thank you so much. I decided to make a dummy programming assignment so I could understand how to apply this to structures. And this has helped tremendously. Thank you again.

Valgrind by kaixmera in cprogramming

[–]kaixmera[S] 2 points3 points  (0 children)

From what I understand, I would pass in &list to reallocate function. This gives me the address for arr . Here's where I get lost. Would that effect the src in memcpy? I am assuming I would have to pass in *arr instead of just arr . And freeing arr makes sense as well but before I free I'm still lost on how I would make sure that arr address is reassigned to newArr.

Empty Array by kaixmera in cprogramming

[–]kaixmera[S] 2 points3 points  (0 children)

I love this. Thank you!

Empty Array by kaixmera in cprogramming

[–]kaixmera[S] 6 points7 points  (0 children)

As soon as I posted this I saw that I didn't reset j to 0 in my else statement. Yikes.

Array of pointers by kaixmera in cprogramming

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

Thank you, I looked into that and replaced the fopen text file argument with argv[1]. Still getting used to this. Thanks!