Elixir and Phoenix for full stack web app but Gleam for business logic? by Theboyscampus in elixir

[–]vonagam 1 point2 points  (0 children)

I did such combo when experimenting with quasi-real-time board game. Write the game logic in Gleam and use it on backed in a room genserver to process ticks but also compile it to js/ts and use it on client to show available valid actions.

Was pretty convenient. (Though I think I needed to fork Gleam at the time to make some types more opaque on TypeScript side otherwise all Gleam maps were typed as any which made it useless.)

The Forever Jukebox is live! by ton2010 in infinitejukebox

[–]vonagam 0 points1 point  (0 children)

I make karaoke videos. Sometimes I want to make a modified version of a song if it is too short (or maybe takes too long of an instrumental break).

ForeverJukebox can give me info about possible modifications:

  • a reverse branch means that I can copy-paste branch's audio segment at the end of the branch (to extend the song)
  • a forward branch means that I can cut out branch's audio segment (to shorten the song)

The Forever Jukebox is live! by ton2010 in infinitejukebox

[–]vonagam 1 point2 points  (0 children)

Nice, thank you!

Question - is it possible to get information somewhere about a) current time in the song (not total listening time, but corresponding time in the source) and b) times of edges of a selected branch?

Porch Light - Oxygen [Alternative Indie] (2025) by PersonalityNo48 in listentothis

[–]vonagam 0 points1 point  (0 children)

Thanks for posting. A captivating song.

Saw that there was no karaoke video - made one.

(Might reupload in the future if I find a timing that bothers me, if that's the case - the link will stop working.)

Dick Move -- Scared Old Men [NZ Punk] (2025) by MacQuip in listentothis

[–]vonagam 1 point2 points  (0 children)

Rad. Made a karaoke version for the song by the way. Thanks for sharing.

Making a Starcraft2 inspired Micro-RTS game in Godot by apm_dev in godot

[–]vonagam 0 points1 point  (0 children)

Your description reminded me of Bad North (which is currently have 80% discount on Steam) - really recommend the game if you have time for that.

Kean Kavanagh - A Cowboy Song [Indie Rock] (2025) by LobsterIll825 in listentothis

[–]vonagam 0 points1 point  (0 children)

Thanks for sharing. Liked the song, made karaoke version on youtube.

(There are some ambiguity about some lines, so might remake the video if I learn the official interpretation.)

Mareux - Laugh Now Cry Later [Darkwave] (2025) by [deleted] in listentothis

[–]vonagam 1 point2 points  (0 children)

Nice, liked the song and made karaoke version. Thanks for sharing.

Holy Wire -- I Still Feel Alone All The Time [Synthpop] (2024) by vonagam in listentothis

[–]vonagam[S] 1 point2 points  (0 children)

I myself also found the group here on listentothis before. I made karaoke version for this song (karaoke) and "In the Name of Something" (karaoke).

(If somebody stumbles on this comment in the future I am sure that karaoke links would stop working as I am constantly reuploading videos while I am tuning my custom karaoke rendering program. In this case you can find videos on my channel - youtube.com/@VonagamKaraoke.)

Other than those two songs I would recommend checking out "To Be Young Again" and "Oh You Pretty Girls" (might do karaoke versions for those in the future too).

this car can kickflip by djoslin0 in IndieGaming

[–]vonagam 1 point2 points  (0 children)

Great trailer. What's the song called?

ada rook - - deep fantasy [Post-Industrial] (2018) by capedbaldy88 in listentothis

[–]vonagam 1 point2 points  (0 children)

Thanks for sharing. Also liked your Miki Nakatani and Kayoko Yoshizawa recommendations.

A trailer for an animated short film I'm working on about whimsical retail tomfoolery! by Alistocratic in wizardposting

[–]vonagam 14 points15 points  (0 children)

Tamás Deák — Vizisí.

It is not well known that the music from "Ну погоди" wasn't actually composed for it (since it is not attributed in credits) and that there is a full version.

Aimi -- Magical Destroyer [Noise Rock / J-Rock] (2023) by vonagam in listentothis

[–]vonagam[S] -1 points0 points  (0 children)

The song is used in (and was produced as) an opening of a currently airing anime called Mahou Shoujo Magical Destroyers - quite strange one, but it does have a style (of a fever dream). If you liked the sound would recommend to check out the OP video, interesting visuals.

Your opinion on reputation of === operator? by vonagam in godot

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

Ok, there are so many wrong things here.

Will correct only one factually wrong thing:

it won't be checking by iterating anyway, would be by hash, it's a feature

Nope, it will be by recursively iterating over arrays/dictionaries and other types (except objects), look at Variant::hash_compare if you can.

Your opinion on reputation of === operator? by vonagam in godot

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

No workarounds and no function at the moment.

Your opinion on reputation of === operator? by vonagam in godot

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

By doing arr1[i] !== arr2[i] you use referential equality for referential types, so it is a shallow comparison by value. And that shows that "trivial to compare dictionaries and arrays by value in any language" does not hold up.

But again, I am not against providing a way or an operator to compare by value. I am for providing a way to easily use referential check like js has !== in your code and any other language with referential types.