this post was submitted on 29 Jul 2024
36 points (92.9% liked)

Programming

17024 readers
359 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 18 points 1 month ago (4 children)

The paper doesn't use psuedocode as I know it. In my experience pseudocode looks much more similar to real code. (According to Wikipedia I'm more used to mathematical pseudocode)

I've never been a fan because writing some simplified Python seems better. Or even better, writing Python that doesn't necessarily follow every syntax rule to a T and takes liberties where necessary to improve readability

[โ€“] [email protected] 2 points 1 month ago* (last edited 1 month ago)

I started doing exactly this. Write a bunch of functions, that may end up in different systems, on different machines, even. This allows you to define the interfaces, figure out data dependencies, and so on.

The code may be runnable, just printing out some statements. Then I copy blocks of it to the place where it will belong.

It's more of a thinking tool, than "actual code".

load more comments (3 replies)