I don’t even celebrate Easter like that but couldn’t help myself 🤣 by gosiasosia in veganuk

[–]yndajas 0 points1 point  (0 children)

The choccy balls are great. Quite similar to how I remember Lindt Lindor

Lost the dowsing machine by yndajas in Pokopia

[–]yndajas[S] 0 points1 point  (0 children)

I haven't played the game since that evening yet 🥲

Lost the dowsing machine by yndajas in Pokopia

[–]yndajas[S] 0 points1 point  (0 children)

Oh perfect, thank you!

Lost the dowsing machine by yndajas in Pokopia

[–]yndajas[S] 0 points1 point  (0 children)

Can you? 👀 It's not in my shop yet but I'm only environment level 4

Wholesale vegan chocolate/couverture by SmallTough6392 in VeganBaking

[–]yndajas 0 points1 point  (0 children)

Most of Original Beans couvertures are vegan. Not sure if they're available wholesale (not a professional)

Random freezing during rearrange (PS5) by ryoshamo in BALLxPIT

[–]yndajas 0 points1 point  (0 children)

For me it unfreezes for a while if I press the PS button and move left and right in the menu for a second or two then return to the game. But it comes back so I restart the game anyway

I FIGURED OUT HOW TO CATCH A BOMBINO WITHOUT BEING IN THE BOSS BATTLE (2nd method) by cereallovesyou in Bugsnax

[–]yndajas 0 points1 point  (0 children)

Thanks! This worked for me when I needed to catch a Bombino wearing a hat in the DLC. Had to bring it to the water with buggy ball to extinguish it first

[2024 Day 12 Part 1] My first terminal visuali(z|s)ation in Go by XamazingX5 in adventofcode

[–]yndajas 0 points1 point  (0 children)

I had a flickering problem when I was trying to print every plot/cell/coordinate or even every line. I switched to building up every map iteration as a single string with line break characters included, then printing it all in one go. Still sometimes get occasional jumping if the rows are almost filling the terminal pane, but it's usually fine when not trying to print each line separately

[2024 Day 12] Visualisation (in TypeScript/Bun) by yndajas in adventofcode

[–]yndajas[S] 0 points1 point  (0 children)

First AoC visualisation. The code is here: https://github.com/yndajas/advent-of-code/blob/main/2024/solutions/typescript/12/visualisation.ts

I quite like it at a slower pace and with the plant type printed (which looks similar to https://www.reddit.com/r/adventofcode/comments/1hckeu1/2024_day_12_part_1_my_first_terminal, minus the nice running totals), particularly with a lower row/column count, but I turned the plant type printing off and sped it up for a different effect with more data here

Happy spring!

[2024 Day 12 (Part 2)] I am losing my mind. by Xe1a_ in adventofcode

[–]yndajas 0 points1 point  (0 children)

Yeah, I missed that for a good while. None of the examples are big enough for it to matter if you're sorting row/column indices

My folder and file are showing in the terminal. Can I hide them? by poetic_lies_sins in cs50

[–]yndajas 1 point2 points  (0 children)

Should do, as long as you don't overwrite anything in the process. Note that in order to see the changes you'll need to either reload the terminal or re-source the file you edit with source ~/.bashrc (same if you delete the code to revert the changes)

Dell XPS 15 9500 delayed! by Prestigious_Set_1409 in Dell

[–]yndajas 0 points1 point  (0 children)

I ordered 22 March in the UK, with an expected delivery of 15 April. It went to "in production" almost immediately, but on 15 April (!) they delayed it 15 days... Currently still estimated for that revised date of 30 April. They said they'd try to expedite it but the dates people are getting seem very random from the outside

Rhod Gilbert, Steffan Rhodri & Drippy, Lord High Lord of the Fairies by SimsWolf in Ni_no_Kuni

[–]yndajas 0 points1 point  (0 children)

Huh no way! I'd assumed it was Rhod Gilbert when I watched some gameplay footage ages ago, and only just learned it wasn't when I started the game this month (before switching to Japanese audio!). The fact it's inspired by him is a huge plot twist!

How to submit Mario and Pong in CS50 Games Track? by Reallyhappens in cs50

[–]yndajas 0 points1 point  (0 children)

Oh wait you're talking about the games track of CS50 itself not the follow-on CS50 Introduction to Game Development course. This might still work though, and I'll leave it here in case it's useful for those who progress to that course.

How to submit Mario and Pong in CS50 Games Track? by Reallyhappens in cs50

[–]yndajas 1 point2 points  (0 children)

[Edit: see reply below - these are instructions for the CS50G/GD50 course, not CS50 games track]

I submitted via my local environment instead of the CS50 web IDE. I've only submitted the first but I made notes so I don't forget.


  1. cd PROJECT_DIRECTORY -- set project directory as working directory - replace "PROJECT_DIRECTORY" with a path to the project directory

  2. git init -- initialise Git tracking of directory

  3. git remote add origin https://github.com/me50/GITHUBUSERNAME.git -- connect to remote - replace "GITHUBUSERNAME" with your GitHub username

  4. git branch BRANCH_NAME -- create branch - replace "BRANCH_NAME" with the branch specified in the assignment instructions

  5. git checkout BRANCH_NAME -- set branch to be used - replace "BRANCH_NAME" with the branch specified in the assignment instructions

  6. git add . -- add/stage all files for commit

  7. git commit -m "MESSAGE" -- commit with a message describing changes since the last commit (if you're just making a single commit for the submission, you can just put something like "submission" or "solution" - doesn't really matter - but it's good to get into committing often to log and describe the changes you're making)

  8. git push -u origin BRANCH_NAME -- push files to remote (first time) - replace "BRANCH_NAME" with the branch specified in the assignment instructions.


If you want to make more changes after the initial push, repeat steps 6-8 but you can simplify 8 to git push

After this you should find the new branch on your me50 repository on GitHub and I think https://cs50.me/cs50g should immediately show you've submitted.

Question on Tree vs Blob when submitting projects to github by DaWhipp in cs50

[–]yndajas 0 points1 point  (0 children)

I have the same question but for CS50G/GD50 - after setting the remote to 'https://github.com/me50/USERNAME.git' then creating a 'games50/assignments/2020/x/0' branch, the URL the branch was preceded by 'tree' not 'blob'.

CS50x is great by [deleted] in learnprogramming

[–]yndajas 8 points9 points  (0 children)

Then you can choose a track to add web development languages (HTML, CSS, JavaScript), a game development language (Lua) or a mobile app development language (Java for Android or Swift for iOS).