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

nibblz.xyz

  • 8 Devlogs
  • 7 Total hours

my snazzy personal site!

⭐ AVD marked your project as a Super Star! As a prize for your great work, look out for a bonus prize in the mail :)

0 10
Ship #1

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…