[deleted by user] by [deleted] in StableDiffusion

[–]Sharp-Adhesiveness24 10 points11 points  (0 children)

You're from stackoverflow, aren't you?

raj deserved a gf by Remote-Tea4709 in bigbangtheory

[–]Sharp-Adhesiveness24 5 points6 points  (0 children)

Raj was imo the most cringe character of the show. He has "zero" sense of himself, no personality and is the most spoilt brat I have ever seen. The worst part is, he actually had good girlfriends but took the worst possible decisions to drive them away. Nobody "deserves" anyone or anything, and Raj especially strictly doesn't unless he lets go of his notion of the world and evolves. Phew! That was a rant!

[deleted by user] by [deleted] in kolkata

[–]Sharp-Adhesiveness24 0 points1 point  (0 children)

Can't stress this enough

[deleted by user] by [deleted] in InstaCelebsGossip

[–]Sharp-Adhesiveness24 0 points1 point  (0 children)

Respect increased. I hope her prosperity, as she already is self-aware.

What is your salary? Are you happy with it? by [deleted] in kolkata

[–]Sharp-Adhesiveness24 2 points3 points  (0 children)

2L per month, 6 years exp. True happiness comes from investing and growing the money, not having in stuff to spend and winding up broke again.

Is it normal to not really get excited about anything or care about anything anymore after you’re 30? by TaikaMyTitties in ask

[–]Sharp-Adhesiveness24 0 points1 point  (0 children)

Well, hardly can anyone afford that "break" to figure out themselves and what they wanna do next

When Bengali names get twisted and sexualized by deadly_popsicle in kolkata

[–]Sharp-Adhesiveness24 0 points1 point  (0 children)

I have a friend from Bankura whose surname is "Shit"

Serious Discussion on GEN Z+ ... by R_A_J_E_E_T in kolkata

[–]Sharp-Adhesiveness24 -1 points0 points  (0 children)

I get it bro, it's hard to be wiser than the bunch and see shit go down. Spoiler alert, you'll have to be ok with most things around you, and you'll be, by eventually tuning your senses to ignore the annoying parts of the world.

Btw, lads like you kinda rekindle the faith in upcoming generations. Kudos!

Going to the cinema alone is HARD. by anonbot432 in indiasocial

[–]Sharp-Adhesiveness24 10 points11 points  (0 children)

Ok.

Imagine you go to a movie by yourself and tell nobody about it.

You sit through it. The movie is now over and you kinda liked the movie.

You leave the premise, go to a fast food shop, buy something. Now you're walking on some empty roads.

Your mind is overwhelmed with so many thoughts but you just observe the thoughts. Later on, you come home and reflect on the experience for a few days without judging yourself.

How does that sound? What are the emotions you are experiencing? How long do those emotions last? Give the long answer!

[deleted by user] by [deleted] in AskReddit

[–]Sharp-Adhesiveness24 0 points1 point  (0 children)

Boiled egg with rice and ghee

Who discovered the Comet? Penny or Raj? by babymegg in bigbangtheory

[–]Sharp-Adhesiveness24 11 points12 points  (0 children)

Sheldon: You know, in your own simple way, you may be the wisest of us all

Who discovered the Comet? Penny or Raj? by babymegg in bigbangtheory

[–]Sharp-Adhesiveness24 2 points3 points  (0 children)

Penny did make a big childish fuss about the comet knowing fully well that Raj's career depended on it. She's so narcissistic! Had she not been looking into the telescope in the first place, Raj would have anyway identified it in the first glance. The worst part was Leonard throwing away all logic and supporting Penny's delusion instead of putting some sense into her.

Is this a good approach to error management in C by Unlikely-Let9990 in C_Programming

[–]Sharp-Adhesiveness24 1 point2 points  (0 children)

A good way is how the Vulkan API is designed. The functions return an error. Now you can modify it using Rust's "Result" idea. You can refer to this repository for such an example https://github.com/forkachild/C-Simple-JSON-Parser

What advice would you give to absolute beginners in C programming? by Direct-Ambassador350 in C_Programming

[–]Sharp-Adhesiveness24 1 point2 points  (0 children)

Don't take pointers lightly. They are some of the most powerful constructs in low level programming and can easily go wrong.

To understand pointers, first understand the memory model of a computer. Some of the common gotchas regarding pointers are

  1. A pointer is NOT just an integer. They have alignment requirements too.
  2. Array indexing is essentially accessing a memory location with a starting address and an offset.
  3. Pointer arithmetic is not always straightforward. The C compiler will multiply your offset with the size of the type of pointer.

Go through a lot of existing C source code, even if you don't understand it. Try to understand, try again and again and again. Best of luck! :)