this post was submitted on 07 Jul 2023
9 points (100.0% liked)

Programmer Humor

32316 readers
195 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
top 19 comments
sorted by: hot top controversial new old
[–] Anahkiasen@lemmy.blahaj.zone 2 points 1 year ago

Don't forget the programming socks trans girl programmer

[–] Crow@lemmy.world 2 points 1 year ago (2 children)

Ten years into casual programming and I still don’t know how to use a debugger.

[–] ghariksforge@lemmy.world 1 points 1 year ago (2 children)

I believe in a conspiracy theory that nobody uses debuggers.

[–] HairHeel@programming.dev 1 points 1 year ago (1 children)

console.log counts as “a debugger”, right?

[–] erogenouswarzone@lemmy.ml 1 points 1 year ago

Yes, but only because it gives you a link to where that was run. Click the link to the right with filename:lineNumber, and it will open the sources tab to that line. Set a breakpoint and rerun to pause there, then step through the code's execution.

Of course, if you're using minified or processed code, this will be more difficult, in that case figure out how to do it in VS Code.

[–] AlexWIWA@lemmy.ml 1 points 1 year ago

I use them daily. It makes it so much easier to work with an existing code base

[–] erogenouswarzone@lemmy.ml 0 points 1 year ago (1 children)

Watch a Video or read something because it really is an invaluable tool. But here's a crash course:

Debuggers, or IDEs, let you step through your code in slo-mo so you can see what is happening.

  1. Set a breakpoint - Click to the left of a line of code so a red dot appears. Run your program, and the IDE will execute to that line, then pause.
  2. Look at variables' values - While the execution is paused you can hover over variables before that line to see their value.
  3. Step through the code - See what happens next in slo-mo.
    • Use "Step Into" to enter into a function and see what that code does.
    • Use "Step Over" to not go into a function and continue in the current spot after the function has done its business.
    • Use "Step Out" to exit a function and pick up the execution after it has run. Use this when you're in too deep and the code stops making sense.
  4. See whats in the heap - The heap will list all the functions that you're currently inside of. You can jump to any of those points by clicking them.
  5. Set a watch - Keep a variable in the watch so you can see what its value is at all times.
  6. Set a condition on the breakpoint - If the breakpoint is inside a big loop, you can right-click on the red dot to create a conditional breakpoint, so you write something like x===3 and it will only pause when x is 3.

There are many other things an IDE can do to help you, so def look into it more if you want to save yourself a lot of insanity. But this is a good starting point.

If you're developing for the web use F12 to open web tools, and when an error happens, click the file/line number to see that point in the Sources tab, and you can debug there.

[–] Micromot@feddit.de 0 points 1 year ago

That sounds really cool

[–] Shugzaurus@lemmy.world 1 points 1 year ago

OMG, of all the memes I read all day long, this had to be the one to actually make laugh hard.

[–] DerEineDa@feddit.de 1 points 1 year ago* (last edited 1 year ago) (2 children)

What is this meme about? "Competition", "Leaderboard", "Waiting for the timer to hit 0:00"? I am so confused.

[–] shebpamm@lemmy.ml 1 points 1 year ago (1 children)

Competitive programming.

Usually multiple algorithmic problems that are released to public at the same time and the fastest people to submit a correct solution get more points.

A fun one I still like to participate in is advent of code, which is a yearly christmas themed one with two problems released a day during advent.

If you want to seriously compete in competitive programming, you need to learn and memorize different problem types and the solutions to those. A bit like you start learning patterns in chess.

For practicing, the CSES Problem Set is a gold mine for practice problems. Theres also a list of competitive programming books on the site.

[–] DerEineDa@feddit.de 0 points 1 year ago* (last edited 1 year ago) (1 children)

That sounds exhausting. Maybe I am showing my age, but after 15 years as a software developer (now DevOps engineer) I feel absolutely no desire to spend my free time competing against others. Maybe I would've felt different about this back in the days.

That being said, this meme still applies to regular software developers. I know plenty of people who match each of the shown stereotypes.

[–] johnnyjayjay@feddit.de 0 points 1 year ago

Advent of Code is fun even without seriously competing (which, at least globally or in bigger communities is basically impossible unless you're actually a proper competitive programmer). There's no stakes and you can just do the challenges you feel like doing :)

[–] ProfezzorDarke@feddit.de 0 points 1 year ago

It's about coding competitions, and without me being directly involved in the scene (the closest I get to it are silly competitions regarding indy-games or decompiling old games or whatever) I did make personal acquaintance with every of those stereotypes, and it's so true.

[–] codyofficial@lemmy.world 1 points 1 year ago

Father, I want to see the face of VBA god

[–] BeigeAgenda@lemmy.ca 0 points 1 year ago (1 children)

Good my colleagues think I am Hackerman that can hack through time!

[–] sharkfucker420@lemmy.ml 1 points 1 year ago

That image goes so incredibly hard

[–] rapethereddit69@lemm.ee 0 points 1 year ago (1 children)

What with Chinese with their near-impossible feats?

[–] ParsnipWitch@feddit.de 0 points 1 year ago

From someone who had Chinese roommates: torture from their families, society and themselves.

Sleep? 4 hours is enough. Do it in the library. Food? Has to go fast. Socializing? They better also be studying 24/7. Depression? You're not my son/daughter anymore.