this post was submitted on 07 Jul 2023
83 points (97.7% liked)

Programmer Humor

32000 readers
1744 users here now

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

Rules:

founded 5 years ago
MODERATORS
 
top 50 comments
sorted by: hot top controversial new old
[–] [email protected] 14 points 1 year ago (2 children)

Don't forget the programming socks trans girl programmer

[–] [email protected] 4 points 1 year ago

I thought that's what the second last one was gonna be

load more comments (1 replies)
[–] [email protected] 8 points 1 year ago (3 children)

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

[–] [email protected] 6 points 1 year ago (2 children)

I believe in a conspiracy theory that nobody uses debuggers.

[–] [email protected] 6 points 1 year ago (2 children)

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

[–] [email protected] 2 points 1 year ago

It does for me!

[–] [email protected] 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.

[–] [email protected] 0 points 1 year ago (1 children)

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

[–] [email protected] 1 points 1 year ago

Yep. Once you get the hang of it, you will cringe to think of all the wasted effort that came before. But getting the hang of it takes dedication.

[–] [email protected] 2 points 1 year ago

It’s easy, you just step, step, step, step in, or wait, over, or, oops.

[–] [email protected] 1 points 1 year ago (2 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.

[–] [email protected] 2 points 1 year ago

Thank you for writing this out

[–] [email protected] 1 points 1 year ago

That sounds really cool

[–] [email protected] 6 points 1 year ago

I have seen this meme at least 471 times, it's still as funby as the first time.

[–] [email protected] 6 points 1 year ago (3 children)

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

[–] [email protected] 5 points 1 year ago

That image goes so incredibly hard

[–] [email protected] 4 points 1 year ago

Dude, literally me. Whenever my friends or my brother's friend come to my room, I opened up a few terminals with only one of them is actually for coding and they thoight I could hack someone's Facebook account or something LMAO.

Yes I live in Southeast Asia

[–] [email protected] 2 points 1 year ago

Kung Fury will never not be amazing

[–] [email protected] 5 points 1 year ago (1 children)

Father, I want to see the face of VBA god

[–] [email protected] 1 points 1 year ago
Set Forms!frmFaceOfGod!OLECustomControl.Picture = LoadPicture("\\linux-nfs.local\nullshare\%*!!.bmp")
[–] [email protected] 5 points 1 year ago (1 children)

Samir is mad op, those indian youtubers know everything

[–] [email protected] 4 points 1 year ago (1 children)

What I want to know is who taught the original Indian YouTube tutor. Was he born with the knowledge?

[–] [email protected] 2 points 1 year ago* (last edited 1 year ago) (1 children)
[–] [email protected] 1 points 1 year ago

Om Namo Namagiriyai Namah, must be the mantra to be a successful programmer then I guess.

[–] [email protected] 5 points 1 year ago

I identify with Samir, but without all of his vast knowledge.

[–] [email protected] 4 points 1 year ago (2 children)

I can really emphasise with Samir. Working in healthcare I’m basically limited to just the Office applications. However in the past few years I’ve been able to cook up solutions by reading / writing to file based databases, and using VBA to generate and bind to HTML contents on the fly for the built in IE11 instance. It’s as close to getting to some kind of web-stack within the confines of IT Sec in healthcare.

[–] [email protected] 4 points 1 year ago

Just a heads up, I think the word you're looking for is empathize.

[–] [email protected] 2 points 1 year ago (1 children)

This is interesting, can you tell us more about how this is done?

[–] [email protected] 2 points 1 year ago

For the backend I used the ADO library to create a MSAccess DB on a shared network folder. Then it’s a matter of using VBA to generate SQL commands to same library to read / write records from the DB.

For the frontend, I use VBA to generate a HTML document from the fetched data. For the IE control in a user form, you can then write the HTML to it. During this process you can bind local VBA variables to any of the html elements in the page.

A common flow would be:

  • User clicks an element in a table
  • simple JS on the page does some calculation, stores a value in a hidden input and clicks it.
  • the user form variable detects the click in the monitored element, reads the changes, and acts on it.

I also have VBScript to act as the launcher by copying the excel file to the local machine, and launching the local copy. This solves the concurrency issue.

[–] [email protected] 4 points 1 year ago

I'm Samir, I can code kernel drivers in vba

[–] [email protected] 3 points 1 year ago

"Can reveal the face of God using VBA"

This one got me good. I became a VBA king being in one of those locked down environments.

[–] [email protected] 3 points 1 year ago

I have worked with most of these people at one point or another. I used to sit next to an old architect like walters. He had so many patents the company only recognize him on every 10th one.

[–] [email protected] 3 points 1 year ago (1 children)

Ok, so, I thought I was crazy when I said "debug it" and my coworkers were like "you can read that shit?"

[–] [email protected] 3 points 1 year ago (1 children)

My colleague literally once said to me "i can't read bleep bloops"

[–] [email protected] 3 points 1 year ago (1 children)

Heck I remember when you had to read "bleep bloops". POST codes came in beeps, and that's how you knew why the computer wouldn't start.

Sometimes I miss em, wish it gave those in addition to the modern indicators. Then I could just tell without even looking.

[–] [email protected] 1 points 1 year ago (2 children)

Do modern PCs even support IBM-style speakers any more?

[–] [email protected] 2 points 1 year ago

Yes. My latest mobo has the pins for a POST speaker, but didn't actually come with one. Installed it though and it works.

[–] [email protected] 1 points 1 year ago

Some motherboards have a tiny piezoelectric speaker soldered on, which replaced the larger speakers that used to be used. It's becoming less and less common though.

[–] [email protected] 3 points 1 year ago

You really just threw "generic Chinese name" into some translator didn't you lol

[–] [email protected] 2 points 1 year ago

I've been coding for a long time, and I think I've worked with all these archetypes. Too real.

[–] [email protected] 2 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.

[–] [email protected] 2 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.

[–] [email protected] 2 points 1 year ago

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.

load more comments (1 replies)
[–] [email protected] 1 points 1 year ago

Lesson learned: aim for the manager spot to order those folks around

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago)

Most of the time the "wjhbr" guy is either from Russia, or asian or from some Scandinavian country.

[–] [email protected] 1 points 1 year ago

Oh, so that's why I can't land a job this year. lol

[–] [email protected] 1 points 1 year ago (1 children)

I'm in this picture and I like it. I'm wjhbr.

[–] [email protected] 1 points 1 year ago

Ahaha, yes. I lost it and found it hilarious when I got to that part of the picture, then went "Hey wait a second... that's me!"

[–] [email protected] 1 points 1 year ago
[–] [email protected] 1 points 1 year ago

As someone with ADHD I am a mix of hackerman and tharg. Unfortunately the Adderall just makes me barely function and Ive never actually hacked anything

load more comments
view more: next ›