You are browsing as a guest. Sign up (or log in) to start making projects!

Nibbles

@Nibbles

Joined May 31st, 2026

  • 12Devlogs
  • 2Projects
  • 1Ships
  • 0Votes
hai! im a programmer who's been making stuff for over 6 years! i mainly specialize in game development, but i've also done many other
things such as minecraft plugin dev, software dev, web dev, minecraft & rhythm heaven modding, and decompilation!

say hi to play-yan :3
Open comments for this post

52m 53s logged

multiple playlists now work as intended! this means that…

  • if a song is present in multiple playlists, it will only download the song once
  • if a song is removed from one playlist, it will not remove it if it is present in another one
  • if a song is removed from ALL playlists, it will be removed

this meant i had to do a little bit of refactoring, before i was storing a map of the playlist id with a vector of strings, now its just a vector of video ids, which made this a lot easier to implement!

multiple playlists now work as intended! this means that…

  • if a song is present in multiple playlists, it will only download the song once
  • if a song is removed from one playlist, it will not remove it if it is present in another one
  • if a song is removed from ALL playlists, it will be removed

this meant i had to do a little bit of refactoring, before i was storing a map of the playlist id with a vector of strings, now its just a vector of video ids, which made this a lot easier to implement!

Replying to @Nibbles

0
1
Open comments for this post

2h 41m 38s logged

probably should’ve split this into 2 devlogs, but uhh..

first: playlists + yt-dlp flags are now loaded from the config file! obviously this will be editable with a ui at some point in the future
i also added a config key for the directory that music will be downloaded! which is important…

and second: the playlist now syncs when new things are added or deleted!

this is done by storing a file with all the video ids of the playlist last time it was downloaded, and comparing it with whatever it is now, downloading individually what was added (to prevent potential ratelimits from youtube that would occur if i was just to run the command to download the entire playlist again), and deleting any songs that were removed from the playlist! (in the future, i want this to be a togglable setting as sometimes you might want to keep songs if they are removed from youtube or something)

next i want to make sure multiple playlists work properly, as i don’t want it to delete song files if a song was only removed from one playlist, or download a song that is already present from another playlist

probably should’ve split this into 2 devlogs, but uhh..

first: playlists + yt-dlp flags are now loaded from the config file! obviously this will be editable with a ui at some point in the future
i also added a config key for the directory that music will be downloaded! which is important…

and second: the playlist now syncs when new things are added or deleted!

this is done by storing a file with all the video ids of the playlist last time it was downloaded, and comparing it with whatever it is now, downloading individually what was added (to prevent potential ratelimits from youtube that would occur if i was just to run the command to download the entire playlist again), and deleting any songs that were removed from the playlist! (in the future, i want this to be a togglable setting as sometimes you might want to keep songs if they are removed from youtube or something)

next i want to make sure multiple playlists work properly, as i don’t want it to delete song files if a song was only removed from one playlist, or download a song that is already present from another playlist

Replying to @Nibbles

0
1
Open comments for this post

1h 20m 9s logged

im… sorta getting into the groove of c++!
i’ve added a new class to handle a config file, which:

  • creates config file in whatever directory it should go in (i think it’s kinda hardcoded to only function properly on linux right now… once i have things more finished i’ll definitely get windows support and maaaybe macos support!)
  • serializes and deserializes the config file via the nlohmann json library, converting it into a struct so it can be easily read from other parts of the code

next i’ll make it so downloads are fetched from the playlists in the config with the yt-dlp flags in the config!!

im… sorta getting into the groove of c++!
i’ve added a new class to handle a config file, which:

  • creates config file in whatever directory it should go in (i think it’s kinda hardcoded to only function properly on linux right now… once i have things more finished i’ll definitely get windows support and maaaybe macos support!)
  • serializes and deserializes the config file via the nlohmann json library, converting it into a struct so it can be easily read from other parts of the code

next i’ll make it so downloads are fetched from the playlists in the config with the yt-dlp flags in the config!!

Replying to @Nibbles

0
1
Open comments for this post

52m 5s logged

i have never made anything in c++ before. this project might be a bit.. ambitious.. but i believe… i believe!!

anywayy…

i’ve set up the very very basics of this project, including:

  • wxWidgets window setup
  • a downloader class, which creates the directory that your music will be stored in, as well as running the yt-dlp command with an array of flags (which i’ll prob make configurable at some point)
    yes, it’s all hardcoded right now, it wont be like that forever obviously, its been 47 minutes…

the first thing i plan to get done with this anyway is the syncing and downloading with youtube playlists, so my next thing will probably be creating a config file that contains links to playlists to sync with as well as any yt-dlp flags if needed!

i have never made anything in c++ before. this project might be a bit.. ambitious.. but i believe… i believe!!

anywayy…

i’ve set up the very very basics of this project, including:

  • wxWidgets window setup
  • a downloader class, which creates the directory that your music will be stored in, as well as running the yt-dlp command with an array of flags (which i’ll prob make configurable at some point)
    yes, it’s all hardcoded right now, it wont be like that forever obviously, its been 47 minutes…

the first thing i plan to get done with this anyway is the syncing and downloading with youtube playlists, so my next thing will probably be creating a config file that contains links to playlists to sync with as well as any yt-dlp flags if needed!

Replying to @Nibbles

0
2
Ship

now this site was a project that i have made in the past, but i updated it to add a new feature where i can post anything that i think! this is fetched from a backend that serves a list of .md files along with metadata, which i can easily add/delete/edit to my hearts content!

overall this wasn't toooo challenging of a project for me, mostly just wanted to make something small quickly to brush up on my programming because i kinda didn't make anything for the entirety of may... (thanks school)... but it was very fun to work on! excited to update it and add more thoughts as time goes on :3

  • 8 devlogs
  • 7h
Try project → See source code →
Open comments for this post

52m 53s logged

spent a… while… getting the backend set up on nest.. but now everything is up and running on the domain, and i can easily add new posts via sftp!!!

also did some other final things improving the markdown rendering, including line breaks, more heading levels, link underlines, images… etc…!! (which also meant the backend now serves images from a /assets url !!)

but with that… im done!!! :D

spent a… while… getting the backend set up on nest.. but now everything is up and running on the domain, and i can easily add new posts via sftp!!!

also did some other final things improving the markdown rendering, including line breaks, more heading levels, link underlines, images… etc…!! (which also meant the backend now serves images from a /assets url !!)

but with that… im done!!! :D

Replying to @Nibbles

0
8
Open comments for this post

16m 31s logged

some tiny tiny little finishing touches!

  • make text not wrap weirdly on the topbar on mobile
  • sort posts in order of newest first (based on the timestamp thing in the metadata)
  • made project cards not overly huge on desktop. it was. really big. oops
  • made it so hovering over buttons on the my thoughts page still has the hover mouse cursor like any other button!!
  • added fl studio to my list of software that i like. i added it to the images folder a long time ago and just … forgot about it i guess??

now.. everything should be good to ship, just gotta deploy the backend on nest! (and i promise ill make cooler stuff later… just getting warmed up… :P)

some tiny tiny little finishing touches!

  • make text not wrap weirdly on the topbar on mobile
  • sort posts in order of newest first (based on the timestamp thing in the metadata)
  • made project cards not overly huge on desktop. it was. really big. oops
  • made it so hovering over buttons on the my thoughts page still has the hover mouse cursor like any other button!!
  • added fl studio to my list of software that i like. i added it to the images folder a long time ago and just … forgot about it i guess??

now.. everything should be good to ship, just gotta deploy the backend on nest! (and i promise ill make cooler stuff later… just getting warmed up… :P)

Replying to @Nibbles

0
8
Open comments for this post

44m 52s logged

finishing(?) touches to the my thoughts section!

  • post images can now be served from the backend! posts without an image will have a proper placeholder at some point, but for now… Biribiriuo.webp :P
  • there is now a scrollbar if the contents of the post is big!
  • improved the readability by making the background when a post is open more dark

finishing(?) touches to the my thoughts section!

  • post images can now be served from the backend! posts without an image will have a proper placeholder at some point, but for now… Biribiriuo.webp :P
  • there is now a scrollbar if the contents of the post is big!
  • improved the readability by making the background when a post is open more dark

Replying to @Nibbles

0
3
Open comments for this post

1h 29m 26s logged

the frontend part of the my thoughts section is now hooked up to the backend! posts are loaded from metadata sent from the server, and the post contents are now also from what is on the server!

also did some other minor things like

  • fix newlines not rendering the way i wanted them to with my markdown
  • actually include post date in the metadata of the .md files, just stored as a unix timestamp

still have a few more things to do with this feature like allowing there to be actual images from the server for each post, and making the post contents scrollable… which is important…!!!

the frontend part of the my thoughts section is now hooked up to the backend! posts are loaded from metadata sent from the server, and the post contents are now also from what is on the server!

also did some other minor things like

  • fix newlines not rendering the way i wanted them to with my markdown
  • actually include post date in the metadata of the .md files, just stored as a unix timestamp

still have a few more things to do with this feature like allowing there to be actual images from the server for each post, and making the post contents scrollable… which is important…!!!

Replying to @Nibbles

0
6
Open comments for this post

1h 57m 24s logged

got mosttt of the frontend stuff required for the my thoughts section! this includes…

  • cards for each post! wraps nicely if the descriptions have different lengths/different screen sizes, etc
  • the popup for when you open a note! blurs everything behind so you can read it
  • markdown rendering with the marked library! this will take the text from the .md files on the server and render them in html! very awesome library :3

next, i’ll have to probably make some polishes to this ui.. and then hook it up to the backend!!!
(i’ll also have to add a few more pieces of metadata to each post, including the date it was created and an optional image to go along with it)

got mosttt of the frontend stuff required for the my thoughts section! this includes…

  • cards for each post! wraps nicely if the descriptions have different lengths/different screen sizes, etc
  • the popup for when you open a note! blurs everything behind so you can read it
  • markdown rendering with the marked library! this will take the text from the .md files on the server and render them in html! very awesome library :3

next, i’ll have to probably make some polishes to this ui.. and then hook it up to the backend!!!
(i’ll also have to add a few more pieces of metadata to each post, including the date it was created and an optional image to go along with it)

Replying to @Nibbles

0
4
Open comments for this post

36m 43s logged

aaand back to my faaavorite type of programming… web dev…!!! (…. wink wink nudge nudge i dont like webdev :P)

but uh.. got a basic navbar going! i think all tailwindcss and svelte knowledge just immediately leaves my brain whenever i don’t use it for more than a day but. it redirects to the other links! it glows based on what page its actually on… its a component… and… yea!

the “my thoughts” section will be where all this post/blog stuff whatever will go! still haven’t added that frontend part yet… but that’s a later problem!

aaand back to my faaavorite type of programming… web dev…!!! (…. wink wink nudge nudge i dont like webdev :P)

but uh.. got a basic navbar going! i think all tailwindcss and svelte knowledge just immediately leaves my brain whenever i don’t use it for more than a day but. it redirects to the other links! it glows based on what page its actually on… its a component… and… yea!

the “my thoughts” section will be where all this post/blog stuff whatever will go! still haven’t added that frontend part yet… but that’s a later problem!

Replying to @Nibbles

0
10
Open comments for this post

31m 54s logged

added the endpoint that fetches the contents of a post! this removes the title and description that is present at the top of the post, returning only the actual contents!!

added the endpoint that fetches the contents of a post! this removes the title and description that is present at the top of the post, returning only the actual contents!!

Replying to @Nibbles

0
8
Open comments for this post

34m 50s logged

starting the functionality of a blogging/posts system on my site!

right now im just getting back into the swing of things with programming (school has made me SO DAMN BURNT OUT OF EVERYTHING FOR THE PAST MONTH!!! AGH!!!), and have implemented a backend route to fetch .md files from a folder on the backend

this returns the name and description of the post, which will show up in a list of posts of some sort, they are declared in the first two lines of the md file, the rest is what is displayed in the actual post!

im using go for the backend (which is what i used last time i made something with a web backend, it was nice!!) with the gin library, so far, its awesome!!

starting the functionality of a blogging/posts system on my site!

right now im just getting back into the swing of things with programming (school has made me SO DAMN BURNT OUT OF EVERYTHING FOR THE PAST MONTH!!! AGH!!!), and have implemented a backend route to fetch .md files from a folder on the backend

this returns the name and description of the post, which will show up in a list of posts of some sort, they are declared in the first two lines of the md file, the rest is what is displayed in the actual post!

im using go for the backend (which is what i used last time i made something with a web backend, it was nice!!) with the gin library, so far, its awesome!!

Replying to @Nibbles

0
7

Followers

Loading…