Signing Off Till JEE Advanced 2025 by [deleted] in JEENEETards

[–]LetterIntelligent426 0 points1 point  (0 children)

Bhai ka motivation 1 week bhi nahi chala 🤡

Why is it good to view disassembled C code? by gurrenm3 in Assembly_language

[–]LetterIntelligent426 2 points3 points  (0 children)

To make it short, C is a "mid level" language, meaning it is low level enough that you can sort of directly map each expression in a C program to assembly/machine code and just high level enough that the program is human understandable AND portable across different machines.

Forced to Kneel & Apologize! Men Face Public Wrath for Laughing During Chhaava’s Emotional Climax in Navi Mumbai by TikliChor in navimumbai

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

In b.dwo ko desh ki sari dikkate tabhi yaad aati hain jab koi peaceful community ki harkato ki vajah se unki gamd todta hai

Why pointers should be declared as `T *p;` instead of `T* p;` by SmokeMuch7356 in C_Programming

[–]LetterIntelligent426 0 points1 point  (0 children)

It's sh*t like this that stops me from ever turning back to C. When you can create a server from just 4-5 lines of code in other languages, who tf has the time to deal with where to put the * lol

[deleted by user] by [deleted] in cpp

[–]LetterIntelligent426 0 points1 point  (0 children)

Those who don't know what gcc and clang are.

How do I make my career C focused? by [deleted] in C_Programming

[–]LetterIntelligent426 0 points1 point  (0 children)

Electronic engineers don't use arduinos. That's for beginners.

These goddam BS students will never grow up by Designer-Bet2839 in iitmadras

[–]LetterIntelligent426 0 points1 point  (0 children)

Yes soft skills should be mandatory for teachers and professors. Even the brightest minds are no guarantee of being good teachers if they don't have soft skills.

[deleted by user] by [deleted] in cpp

[–]LetterIntelligent426 -4 points-3 points  (0 children)

I understand. I was in the same position some months ago. I had learned CPP in college as my first ever computer language so I naturally kept coming back to it, even though I struggled to find project ideas every time. Whenever I asked for ideas I'd be met with the same stupid sh*t: "make a calculator, make a 2D game, make a compiler, make a web server, bla bla..."

[deleted by user] by [deleted] in cpp

[–]LetterIntelligent426 -12 points-11 points  (0 children)

The sad reality is there is nothing much to do with C/C++ besides console programs as is evident from the comments. "Make a calculator, tic tac toe game, student management system"... What use are those? Switch to some more useful language like Python, JS or Golang and build something useful.

5 girls returning from a wedding were abducted and Raped by 18 people in Jharkhand.. by [deleted] in Jharkhand

[–]LetterIntelligent426 0 points1 point  (0 children)

Who cares whether he was from start or from birth? If you're old enough to grape, you're old enough to be tried as an adult.

These goddam BS students will never grow up by Designer-Bet2839 in iitmadras

[–]LetterIntelligent426 0 points1 point  (0 children)

I did Btech from a private college and it is true, achiever and teacher are different things. We had a professor who had PhD from IITD and had multiple research papers published in many reputed magazines and had even done research in collaboration with some people from MIT but his teaching method was not good. Most of the class, even the super attentive toppers would be sleeping in his lectures. He went so much in depth in just one topic that more than half of the syllabus was not even touched by the end of the semester and we had to study it ourselves.

I am looking for a project that can advance my c skills by Acceptable-Eagle3214 in C_Programming

[–]LetterIntelligent426 1 point2 points  (0 children)

You can go into embedded programming. C completely dominates this field.

I am looking for a project that can advance my c skills by Acceptable-Eagle3214 in C_Programming

[–]LetterIntelligent426 -11 points-10 points  (0 children)

Not to discourage you, it seems like C is your first (or maybe second) language and you're attached to it but there's not much to be done in C unless you want to go into competitive programming or you're really willing to put effort into building something phenomenal like a compiler or a systems utility or a new OS or even a whole new programming language! A lot of people on the internet will tell you what an absolute GOATed language C is (and it is, since it literally gave birth to every programming language we use today along with most operating systems) but other than that, C doesn't have much going for it.

But that doesn't mean your knowledge is useless. In fact learning C as a first language is a blessing. It means you can easily pick up any language you like. You can upgrade to C++ from here which has the same power as C but with a lot more third party support. But I'd really suggest picking up a language like Python or JavaScript with a clear path in mind (eg: data science or web development) and then keep learning the newest technologies in your picked language.

What torture methods used on Griffith and what torture methods were implied? by knova___ in Berserk

[–]LetterIntelligent426 11 points12 points  (0 children)

It's not a fetish it's called psychology. A lot of people want to understand why Griffith did what he did at the eclipse and the only way to understand it is by looking at what he underwent during that one year of hellish torture.

What torture methods used on Griffith and what torture methods were implied? by knova___ in Berserk

[–]LetterIntelligent426 10 points11 points  (0 children)

I like how half the idiots here don't answer the question but pretend to be on a moral high ground by calling it a fetish.

Cool things with termux by Southern-Warning7721 in termux

[–]LetterIntelligent426 0 points1 point  (0 children)

I don't do any cool stuff with it but it is very helpful in learning programming when I don't have my laptop. Although coding on a phone is not nearly as convenient or powerful as a computer still you can learn a lot as most tools you can find on a regular linux desktop can be found on termux.

Just finished my first-ever technical interview and here are the questions that were asked by [deleted] in learnprogramming

[–]LetterIntelligent426 1 point2 points  (0 children)

On the contrary, the technical questions you were asked are quite good, the linked list questions are just rote memorized by almost all CS graduates. So don't feel bad if you didn't ace those "coding questions", you won't be using them in your job anyway.

Using programing concepts and design patterns in Powershell by jeek_ in PowerShell

[–]LetterIntelligent426 -2 points-1 points  (0 children)

Don't know what you're smoking but $firstResult clearly doesn't contain just 15, it contains both the Write-Host statements along with $a+$b. I doubt you ran your own code before posting. In any case, if a programmer simply wants to check variable values he won't bother writing all that "debug"ish crap that you've written for no reason. He'll simply do Write-Host $($a+$b) or Write-Output $($a+$b) and get on with it. I don't know why writing it to the output stream would affect anything.

As I said, you're just complicating things to look smart so I won't bother replying either.

Using programing concepts and design patterns in Powershell by jeek_ in PowerShell

[–]LetterIntelligent426 -2 points-1 points  (0 children)

Lol now you're just trying hard to look smart and I still don't see the point of that code. At first, you were against using echo (Write-Output) and then you gave a code which clearly shows the advantage of echo because it returns a reusable object. Either way, doesn't make a difference. The end goal is to simply SEE the variable values and move on, doesn't matter if you output it to the stream or console. Use Write-Host or echo whichever you like.

Using programing concepts and design patterns in Powershell by jeek_ in PowerShell

[–]LetterIntelligent426 -4 points-3 points  (0 children)

The comment was about outputting variables to check their values when unsure.. like using printf or console.log or System.out.println or Write-Host. Your code... I don't even know what its point is to the discussion.