FoonLudum Dare ExplorerUsers → seshoumara

seshoumara

Games

YearLDThemeGameDivisionRankOvFuInThGrAuHuMo
202558CollectorPlantsweeperjam3.002.501.002.002.501.002.00
202353Delivery👥Detective Rootjam2.852.703.152.443.553.401.333.70
202352HarvestCrop METIjam4.004.004.503.623.003.662.333.83
202251Every 10 secondsThe Stack Machinejam2123.873.873.953.352.972.902.533.18

Performance over time

overall score (left axis) percentile (right axis)

Scatterplots

Fun vs Overall

Innovation vs Overall

Theme vs Overall

Graphics vs Overall

Audio vs Overall

Humor vs Overall

Mood vs Overall

Comments by seshoumara

LD51 — Every 10 seconds

10s Puzzle Dash by WoodmanCodes 2022-10-03T20:55:14Z

Hi. The level before speed boost was quite nice! After that it got hard :)

Cobor goes farming by Douwe_Ravers 2022-10-04T19:35:32Z

Hi, I didn't realize in your last comment to me that your game was also for LD51, I'm new to this. As a programming-puzzle developer too I found the game at best medium difficulty, but I noticed more the manual and other small things done well. Last level I did pretty inefficiently in 25 commands. Overall, "Howly mowly, good job" :))

Star Sweeper by Notan Lemon 2022-10-04T08:22:42Z

Hi. I quite liked the game, but 10 seconds becomes too fast after the first 4-5 levels. Or I'm getting old. I guess that's the theme, but maybe you can get a time bonus in some random empty tiles?

Limited Window by Justin Klinchuch 2022-10-04T06:13:25Z

Interesting idea. Any way to get a web or Linux build post-jam? :)

Nuke Yourself to Alpha Centauri! by Josh Roby 2022-10-18T23:46:36Z

I started it and watched it, ca's I didn't know what to do. By coincidence I pressed space and I understood the idea. I like the concept a lot as a sci-fi fan, but the levers were stuck.

Bipolar Syndrome by FilippoLeo 2022-10-04T07:59:14Z

I like the idea and definitely the name, but I couldn't play it as I'm on Linux.

Another one bites the dust by AlexYam 2022-10-04T08:41:32Z

Imagine playing that with lights off and a thunderstorm outside. Cool game.

The Stack Machine by seshoumara 2022-10-03T20:58:20Z

@nullval thank you very much! It's inspired from the Zachtronics games.

The Stack Machine by seshoumara 2022-10-04T06:45:12Z

@bo-dangles Thank you. Yes, I love Zachtronics games. I just posted a call for punch-card programmers :)), where I explain a bit more how The Stack Machine works. https://ldjam.com/events/ludum-dare/51/the-stack-machine/punch-card-programmer-wanted

The Stack Machine by seshoumara 2022-10-04T13:14:19Z

@douwe-ravers that's a good idea!! With more numbers given it becomes actually harder, as no instruction can access a number 3 levels deep in the stack. Glad you liked it. Either here or if you wish on my discord you can post a link to your game.

The Stack Machine by seshoumara 2022-10-05T05:24:49Z

@linktail you have a command that pushes the stack size. At start the stack is empty, so it will push 0. Now 0 is a number on the stack, so if you ask for the size again it will push 1, then 2 and so on. That's the hint, you still have to work around the fact that printing removes the top value. Thanks for playing the game!

The Stack Machine by seshoumara 2022-10-09T05:15:52Z

@jmad Thank you for playing. I could have given the task numbers automatically as a premade card in the deck, as someone suggested. But I wanted the player to experience punching both the data and the programming, which I believe it's how they did back then. That in turn meant one could cheat a lot if one wanted :)) I'm proud you solved them the intended way! I'm currently working on my main game, another programming-puzzle, called Low Level Hero. See my itch page if you're interested.

The Stack Machine by seshoumara 2022-10-18T22:58:34Z

@fiordarancio Hi. Yes, I've seen this bug post-jam, restarting the level is the only way for now. There are 2 two scrollable manuals in the middle, the bottom one has a list with what each command does. I know the wording could be improved, sorry to hear it wasn't clear at all. Thank you for playing.

The Stack Machine by seshoumara 2022-10-19T00:00:18Z

@voidsay :)) And that's why you're an intern. Joke aside, there is one instruction 's', scroll down that instructions manual, that pops off a value from the stack and stores it in a register. Just popping it off is needed, so you can do that three times to get to 1: sssp.

LD52 — Harvest

Cropsweeper by Duncan 3 2023-01-12T17:46:55Z

Cool take on the old game! The numbers' color has a low contrast imo, hard to distinguish (could be just me).

We Harvest as One by Ben Toosey 2023-01-12T15:28:55Z

While I have played similar games with that type of movement, outside of this LD, the levels were still very much fun. Well done also on the audio/graphics. The death could be highlighted a bit more imo.

Asteroid Rush by Aarimous 2023-01-12T15:45:33Z

Fixing the climate one asteroid at a time :)) Cool and fun game. I really liked the start menu! Like in your previous jam games, the personal approach to sound effects gives it such a unique feel.

Harvest Humans: Galactic Gathering by Bazzzing 2023-01-12T17:37:21Z

I like the art and the gameplay, needing to dodge while "uploading the cargo". The ground bug can be considered an easy mode :) Good UI too, well done!

Crop METI by seshoumara 2023-01-09T21:51:13Z

@groundjet One way to think of states is gears on a bicycle, just more abstract. Say you have an instruction like 'C12LD'. Even if the probe sees plant 1, if it's not in the specified gear / current state 'C' it won't do anything (skip instruction). Another ex. is say you want to change same plant/soil differently based on situation. You couldn't with one state (which does the same change), but you can switch to another state when you see it and let that do the other change :D (pro tip) I hope that helps.

Crop METI by seshoumara 2023-01-12T17:31:14Z

Thank you everyone for playing the game. @merin-car-trunk-key I guess it's too niche for Steam, because of the abstract language. @judjudson You didn't program anything like this though :D @lzxh Will do, not sure when though. @duncan-3 This is my second programming-game on LD, 2/2, and in each there was just no time left to implement validation tests and UI for it. So hardcoding makes it too easy.

Crop METI by seshoumara 2023-01-13T06:45:01Z

@kaliuresis Thanks. A 2D field is on my mind, with the move including up and down too, but kept it off the jam to make it in time. Currently it's less about drawing and more about small input changes. In addition 2D would actually unlock drawing if the field is big enough, but I'd need to put more than 6 states. Thanks for playing. I wanted to try yours but I'm on Linux using Godot.

LD53 — Delivery

Why Deliver Y ? by Aurel300 2023-05-16T19:21:35Z

I wanted to play this, but I got stuck at the tutorial. I didn't know what to do to open the lock. I tried to use the mouse somehow, but the thing closed again very, very fast and then the police guy got me every single time. I rated anyway, taking other people's comments into account.

Pack Bringer by Bugord 2023-05-07T05:26:07Z

Really cool sokoban-inspired puzzle with great art and SFX. Difficulty progression was a bit too steep. I could play a few levels, but got stuck on the one with 3 vertical tiles that highlight bottom-up. Still, had a lot of fun.

Deliver to Whence you Came by JUSTCAMH 2023-05-16T18:01:12Z

Really cool mechanics of moveable terrain. There's no fine control so you can get stuck sometimes. With more clever level designs this could be a unique platformer for Steam. For a jam it is super impressive.

Rhino Express by Mahjoub 2023-05-06T21:23:25Z

The number of puzzles and mechanic variety is great given the jam's time restraint. I solved all. Audio is great too. In 2-3 puzzles towards the end it was hard to judge if character will fall off the map or not, but otherwise this is a cool game!

Pizza Boss Rush 9000 by MrEliptik 2023-05-07T16:07:48Z

Engaging music and SFX. I have no clue how you managed to put this much polish in the given time. I like that a simple pizza box can be used for attack, defense from bullets for ex and combos. The time between restarts could be a bit smaller. Given that I rarely play this genre I enjoyed it a lot!

wizard path by slimetrash 2023-05-07T04:33:55Z

Took a few minutes to figure out the controls and that you can use them during the character's run. The ambient music and style of art were great for this! I solved all, got to the end screen. I like that in most situations you had time to place an arrow, because of repeated left-right, up-down movement. Sure, in a few places you had to be quick, but it isn't a reaction type game, still very much a puzzle. You took the simple arrow movements and made a few mechanics out of it and I loved it. Like placing up near a wall to go down was a neat subtle thing.

Unread Messages by shimmerscale 2023-05-07T06:01:54Z

I enjoyed your game very much. Last level took me a bit to solve. I'd have played more if there were more levels. My only small remark is that I wish the number of moves left/given from each object were visually displayed without focusing the mouse a lot, so I can think the level before I even touch the mouse. The tutorial was definitely needed, great you had one in the time we had.

Detective Root by seshoumara 2023-05-07T03:56:50Z

@kontroman @timshakh If you can't move, press Escape for the pause menu, go back to main menu and play again. You can then skip the puzzles you did. The bullets are bugged, but a fun thing to do with them is see how high in the air you can go :)) @whywhy @mia-143 there wasn't time to implement a game state/save. So when you solve a puzzle nothing is marked as such. The terminal you move into that opens the puzzle has a few animation frames. So the red you see is not connected to the puzzle being solved or not. I see now how that is confusing. Thank you all for playing!

Scale Mail by ZiRC 2023-05-06T22:10:16Z

Fun physics balancing puzzle. Not sure if weight could vary between items of same shape, but if so I'd have preferred to see this info somehow. The connection to theme was imo weak. Cool game regardless.

DETOUR by Nozomu57 2023-05-16T19:02:11Z

Never played a game with this mechanic before, but I liked it a lot! Some portions require a bit of fast reaction, but not too much so it still feels like a puzzle. Flipping the head from left to right for ex can have unexpected consequence of hitting something, that's just a tiny issue. I solved it all the way. Great game!

LD58 — Collector

Little Housekeeper by Ja_viera 2025-10-12T14:16:16Z

Great art and UI buttons! The movement is harder than one thinks and I loved that. Congrats!

Ability Unknown by Piturnah 2025-10-12T13:44:30Z

Really good game for the few days of LD. Congrats.

Snake Survivor by LvdoB1ng 2025-10-12T13:59:20Z

Great theme utilization and had lots of fun. I become too OP, especially if I move in circles. More segment/weapon types please!! Great job.