Skip to main content
Advice
1 vote
3 replies
128 views

I have tried many times but i forget after sometime . Can anyone help me , suggest how to learn or what to do? I am currently learning Data Structures and Algorithms (DSA) primarily , but I am facing ...
Astha Singh's user avatar
Advice
1 vote
2 replies
128 views

I’m currently learning more about cybersecurity and IT basics, and I’m trying to figure out what skills are the most important to focus on as a beginner. Right now I know a little about networking, ...
Beau Cline's user avatar
Advice
2 votes
5 replies
101 views

Probably too general of a question, but it came to mind after watching a YouTube video of a guy talking about recursion schemes and performance in functional languages when compared to C. In my mind, ...
Ambiguous Illumination's user avatar
Advice
1 vote
2 replies
136 views

I am just starting out as a cs student. I wanna get into ML domain where I can apply for remote jobs from the country I am living in. How can I get started?, Where can I learn the required ...
Ram Nikhil's user avatar
Advice
1 vote
4 replies
145 views

I’m trying to understand the historical and technical transition from early mechanical programming (like punched cards and hardware switches) to modern digital programming using code editors and ...
YATAKANO's user avatar
Advice
1 vote
5 replies
201 views

I am a recent graduate from a reputed college in India although I got good job offers from my college I still regret in one aspect of my CS journey, that is I have zero contributions to any open-...
codeBurn's user avatar
Best practices
2 votes
7 replies
203 views

I am currently learning programming and want to improve my problem-solving ability rather than just memorizing syntax or copying solutions. I understand that strong programming skills come from being ...
Varun Manhas's user avatar
Advice
1 vote
6 replies
233 views

When performing recursion, it seems reasonable to assume that if two subcases f b1 and f b2 are equal, they will produce equal results IH b1 = IH b2: after all, we only expect to call the inductive ...
Jasper Hugunin's user avatar
Advice
1 vote
3 replies
112 views

I'm seeking general advice about the current state of AI Agents/LLMs that isn't biased towards one solution or another. In short, I'm looking for the following (I know it's a big ask): Any forums ...
Enji's user avatar
  • 21
Advice
3 votes
5 replies
156 views

If I, for example, create my own strlen as such: unsigned strlen(char *str) { unsigned len = 0; while (*str++) len++; return len; } How would this get converted into an SSA form? I've ...
Avalyn's user avatar
  • 13
0 votes
0 answers
45 views

I'm going to get straight to the point: my model file Vanexo3_h was missing the parameter puertoembarque, so I decided to added so I can print that in a PDF viewer on my system. The problem is that ...
Gerardo Orellana's user avatar
0 votes
1 answer
72 views

I’m a PHP programmer looking to deepen my theoretical understanding of computer science concepts, specifically Abstract Data Types (ADTs) in the context of object-oriented programming (OOP). And my ...
Redgard's user avatar
  • 45
1 vote
0 answers
134 views

I am trying to compute the dot product of a matrix in Matlab. The algorithms in each problem were generated using this website. To do so, I am required to use the function I created in the previous ...
L T's user avatar
  • 11
-3 votes
1 answer
131 views

I have a question regarding these two instructions: lw r2, 10(r1) lw r1, 10(r2) Is there a hazard here, do I need stalls in between two of them? I want to know if any kind of hazard happens here? I ...
mer mer's user avatar
  • 17
-2 votes
2 answers
170 views

colors_list = [] while True: user_input = input("Enter a color to add to the list(or type 'done' to finish): ") if user_input.lower() == 'done': break colors_list.append(...
Bobby Cox's user avatar

15 30 50 per page
1
2 3 4 5
298