There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

programmer_humor

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

lowleveldata , in That Nim Flashbacks

I like recursive functions tho

pastermil OP ,

Yet I have not met a CS grad without a trauma.

Lemminary ,

I’ve had 7 traumas this week and counting rocks back and forth

xmunk ,

I have a production bug… it only happens on Saturdays ever our ops folks have no idea - this can be replicated on a test server that gets no traffic.

Saturday why!

CanadaPlus ,

Please tell me it doesn’t still happen when you emulate a different day of the week. Or is that non-trivial to even do because of technical debt? Either way, RIP weekends.

sukhmel ,

If we reject the theory that it could be someone’s elaborate revenge, Saturday may be the first day of the week that may become workday or non-workday because of incorrect assumption about the first day of the week. If everywhere but one place in your software the day numeration is correct it would be a hard bug to spot.

Also, if it is in Java, I vaguely remember there being a lot of ways to express weekday, so a lot of ways to shoot off your foot (solely on Saturday)

xmunk ,

For bonus points, this failure is in a cron job that sends out recently queued messages. It runs once every ten minutes - last weekend we had 12 failures: four were in a cluster on their own, one was in a run of two, and six were in a single continuous run.

Please note that this server is unused by our business so no messages ever get naturally queued. Every day we sync the live production server to this server at about 9 PM - assuming an employee was queuing up a message before the snapshot is taken there might be a number of unsent messages in the snapshot - those messages will all be sent by the first cron job after the sync.

It is a wonderfully awful problem that has me wanting to pull out my luscious locks.

sukhmel ,

I wish you luck. Also, maybe you could get someone else to get a fresh view of an issue

xmunk ,

Yup, luck is appreciated and I’m trying to get more eyes but unfortunately I’m a senior dev that has the second highest seniority at the company so I feel guilty dragging others into it.

Sacreblew ,

Lots of logging to triangulate when it fails and what variables it has at the time.

Blue_Morpho ,

I’ve always hated recursion. It’s always seemed like a cutesy programming trick that’s not reliable in all conditions.

You could blow the stack in an edge case that you didn’t think of. So it should never be a standard pattern. It’s only good if you need to rewrite something for optimization and recursion is appropriate. But in many cases recursion is slower.

“Look at what I can do in 5 lines of code!” is for programming contests, not for anything important.

nothacking , in Added Bugs to Keep my job

Prevent subprocess from killing itself until finished.

odium , in That Nim Flashbacks

Hanoi flashbacks

sv1sjp ,
@sv1sjp@lemmy.world avatar

In myuniversity, we used to play with these to find the fastest path in AI (A*, first depth etc)

Daxtron2 , in That Nim Flashbacks

Nah Hanoi was easy stuff, first year. Definitely more traumatizing practice problems.

Alexstarfire ,

Yea, get back to me when you get to parallel programming.

sukhmel ,

Tis’ not hard, just add some sleeps to make sure other thread reads data before it is destroyed 🌚

xmunk ,

Or even just try to understand pthreads.

intensely_human ,

You’re doing it again

FierySpectre ,

Writing kernels for parallel execution with OPENCL gives me flashbacks every time I remember them

sukhmel ,

Hanoi […] practice problems.

Like you come to the exam and there’s a 64 piece Tower of Hanoi you need to solve manually to pass the exam

JohnEdwa ,

Assuming 1 second per swap, a 64 disk tower of hanoi would take 585 billion years to solve - it has 2^64 -1 swaps.

sukhmel ,

And that makes It good enough for an exam

ICastFist ,
@ICastFist@programming.dev avatar

Calm down, satan

camr_on , in Added Bugs to Keep my job
@camr_on@lemmy.world avatar

God read my code and it made Him cry

devfuuu , in That Nim Flashbacks

Fuck all programming puzzles. I refuse them.

True hommies hate them too.

pmk , in That Nim Flashbacks

“You mean I just made a very complicated array-manipulating way of calculating (2^n)-1?”

Valmond , in Like getting 9 women pregnant and expecting a baby in 1 month

How come every f manager hasn’t gotten that memo?

Valmond , in Like getting 9 women pregnant and expecting a baby in 1 month

How come every f manager hasn’t gotten that memo?

victorz , in That Nim Flashbacks

Is this a hard problem to solve? I’ve not attempted it yet myself.

I seem to remember this was a problem in Advent of Code one year?

I’m imagining there are plenty of algorithms to solve this already, right? With varying numbers of towers and plates? A general solution for solvable amounts of each? Maybe?

Akrenion ,

This is not a hard problem once you wrap your head around it. It is the earliest that some programmers learn about recursion which has a lot of pitfalls and can be frustrating at times.

victorz ,

Ah okay, that’s where the trauma comes from then, perhaps? 😅 Just being new to a concept and perhaps starting out with a problem that is a little too big while at the same time learning the concept?

Ephera ,

I feel like it’s maybe a bit too much to say that it’s a trauma. The Vietnam-flashback picture is just very fitting, because the puzzle is called “Towers of Hanoi” (Hanoi is the capital of Vietnam).

victorz ,

Ah right. 😁

CanadaPlus ,

A lot of programmer memes seem to be about first-year compsci students that just want to build video games, and don’t really like math. For those people, sure, algorithms could be a bit of a rude awakening.

skulblaka ,
@skulblaka@startrek.website avatar

I was once that first year compsci student. Hanoi kicked my ass, I had to go recruit help from my smarter friends. Though to be fair the teacher didn’t explain it that well and just sort of threw it at us to see which of us would sink or swim. After we all complained about it he gave us a proper lesson on recursion and it was a little easier after that but I still struggled a lot on that project. We also implemented Conway’s Game of Life that semester and I preferred that project by a lot.

Schadrach , (edited )

See, when I was a comp sci undergrad 20-odd years ago our department wanted to do a programming competition for the local high schools. We set some ground rules that were similar to ACS programming competition rules, but a bit more lax - the big ones were that it had to run in command line, it had to take the problem dataset filename as the first parameter and it had to be able to solve all datasets attempted by the judges in less that 2 minutes per dataset, noting that the judgement datasets would be larger than example ones.

Some of the students were asked to come up with problem ideas. I was told mine was unfair, but mine was entirely about choosing the right algorithm for the job.

It went like this - the file would contain a pyramid of numbers. You were supposed to think of each number as connecting to the two numbers diagonally below it and all paths could only proceed down. The goal was to calculate the largest sum of any possible path down.

victorz ,

Sounds like a fun problem. Wonder why they thought it wasn’t fair. Sounds no harder than any mid-range Advent of Code problem.

Schadrach ,

As the size of the pyramid increases the obvious algorithm (walking all the routes down the tree) is going to fall afoul of the time limit pretty quickly, as are several alternative algorithms you might try. So a pyramid 100 or 1000 levels deep very rapidly falls out of the time limit unless you choose the right algorithm because there are 2^(n-1) paths for a n-level pyramid. I’d suggested a…much bigger dataset as one of the judgement datasets One that took my reference implementation about 15 seconds.

This was a contest for high school kids c. 2001 and was going to involve 4 problems across 6 hours. The prof making the decision thought it was a bit much for them to figure out why the algorithm they were likely to try wasn’t working in time (noting that the only feedback they were going to get was along the lines of “failed for time on judgement dataset 3 with 10000 layers”, that it was because it was a poor choice of algorithm rather than some issue in their implementation, and then to devise a faster algorithm and implement and debug that all ideally within 1.5 hours.

For example, the algorithm I used for my reference solution started one layer above the bottom of the pyramid, checked the current number against either child it could be summed with, replaced the current number with the larger sum and continued in that fashion up the pyramid layer by layer. So, comparison, add, store for each number in the pyramid above the bottom layer. When you process the number at the top of the pyramid, that’s the final result. It’s simple and it’s fast. But it requires looking at the problem upside down, which is admittedly a useful skill.

victorz ,

I mean it’s basically solving one of those labyrinth puzzles in a puzzle book by starting at the finish and working your way to the start, avoiding all the wrong turns. 😄 It’s the smart solution. 😉 But yeah, maybe they had a point with the “no feedback” issue. In Advent of Code, at least you get to see your final input data.

RamblingPanda ,

Thank god my first time was building a dynamic tree with loads of metadata and sorting from database records and not some strange game 😐

tastysnacks ,

You can easily tell if you did something wrong with Towers of Hanoi.

RamblingPanda ,

You can with a bitchy customer as well 💖

xmunk ,

It’s an easy problem to solve… eventually - it’s more annoying to solve optimally and that’s what programmers usually get handed as a play problem within a year or two of starting to tinker.

Shizu , in Added Bugs to Keep my job
@Shizu@lemmy.world avatar

.

harrys_balzac , in That Nim Flashbacks

I didn’t have to program this, thankfully. The code was used as an example of recursion but the explanation was lacking so I ended up writing out each frame by end until I understood it. Took a few pages and a couple of hours.

I am grateful that I learned what I did going through it but I’d rather not do it again.

Grandwolf319 , in Added Bugs to Keep my job

Lint issue

Solemarc , in Added Bugs to Keep my job

Add Exporters MVP

Kalladblog , in That Nim Flashbacks
@Kalladblog@lemmy.world avatar

Petah?

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines