@serializdapp.bsky.social is such a banger website, so many good features and a really nice community, love the custom posters and banners
www.serializd.com/user/Rishabh...
@serializdapp.bsky.social is such a banger website, so many good features and a really nice community, love the custom posters and banners
www.serializd.com/user/Rishabh...
January was a good month for movies (ignore the two repeated ones its an issue with statsboxd) #moviesky
Am I the only one who tracks there anime watchlist and movies i have downloaded through a fkn text file?
For me its a very satisfying experience manually entering data and handling everything myself
such an amazing find statsboxd.top
really liked its wrapped also, looks so much better to me than the letterboxd one
I guess i am pretty mid π
What a great year of movies, hope next one is another one, and i will try to post more about what i watch here also
Diary milestones, i don't care so; these are just random ones but funny that random short movie about video editing with the funniest name was my 100th one
This was the year of horror for me went ham in spooktober, over the year 35 horror movies, just my favorite genre
I don't even remember i watched pride and prejudice as the first movie of the year, valid though such a goated movie
Finished with Lost and Found, because i like pain
Sunday more like movie-day
First half of the year was slow, but really picked the speed in the second half, bcz found so much more free time than
I have a pretty huge watchlist and backlog so i dont watch that many recent movies, still watched 13 this year.
Unreachable was the hidden gem i discovered, brawled so hard watching it how could i not give it 5 stars, No other choice just another PCW banger. Sinners just rocked so hard
I was surprised to se PCW here, but it made sense, every couple of months i just came back to him, he is just my type of director.
Also Lee Yong-nyeo, she just happened to be in so many koreans films i watched lol truly random
Also shout out to my boi Kiyoshi Kurosawa, he was close second
118 movies logged, no i idea why i have 1 more film reviewed though :)
I only watch 1 per day, so watched a movie almost third of the year, and whenever i did it just made my day, a way out of this boring ass days
Letterboxd Wrapped for 2025 is here, what a great year for movies it was for me, got to watch amazing movies, discovered brilliant directors like Kiyoshi Kurosawa and so much more
letterboxd.com/rishabh100/y...
My year-end/New-Year movie tradition "When Harry Met Sally"
I love this movie so much, the whole message of how a friendship can actually lead to such deep and personal love and especially that final confession i cry every time I hear it.
RIP Rob Reiner I will remember you always #moviesky
I think they did 0 marketing for it, like even I found about it bcz I saw one person tweeting about it and thought it looked interesting.
Also really nice, i watched chungking express 2 months ago, I agree it would go well with this one
Mysterious skin
Why the bruh? lol
The left handed girl was great indeed, I just loved how it was filmed and captured such a vibe
This is the same for me with lakers π
The picture shows the 12 movies ranked in order of, 1. Unreachable 2. No other choice 3. One battle after another 4. Sinners 5. Left Handed Girl 6. Sentimental Value 7. Eternity 8. Flat girls 9. Mickey 17 10. Companion 11. Bring her back 12. Weapons
Didn't Watch that many movies, still pretty good ones
"Unreachable" was the gem i found randomly but it resonated with me so much, cried a river.
Watched "No other choice" today only so peak, Park Chan-Wook banger again.
Also didn't like the horror of this year
#moviesky
I guess found the reason for my atheism πΆ
One piece is the one of the greatest work of fiction ever written
most of all code i wrote while learning it:
github.com/Rishabh67200...
Completed the Rust book, I guess I am officially a Rustacean now π¦
Happy Ο day people, this has become my yearly tradition to celebrate it by watching @standupmaths.bsky.social calculating pi manually www.youtube.com/watch?v=vlUT... and this year was a double whammy with @3blue1brown.com joining the fun youtu.be/6dTyOl1fmDo
Photo of the imax screen, with the text interstellar
Watched Interstellar in Imax now i can die in peace
Didn't know neovim came with extra ram, truly the best editor ever
Ask gpt to explain the code, that's one thing is good at
-- Bootstrap lazy.nvim local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"if not (vim.uv or vim.loop).fs_stat(lazypath) then local lazyrepo = "https://github.com/folke/lazy.nvim.git" local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath }) if vim.v.shell_error ~= 0 then vim.api.nvim_echo({ { "Failed to clone lazy.nvim:\n", "ErrorMsg" }, { out, "WarningMsg" }, { "\nPress any key to exit..." }, }, true, {}) vim.fn.getchar() os.exit(1) end end vim.opt.rtp:prepend(lazypath) -- Make sure to setup `mapleader` and `maplocalleader` before -- loading lazy.nvim so that mappings are correct. -- This is also a good place to setup other settings (vim.opt) vim.g.mapleader = " " vim.g.maplocalleader = "\\" -- Setup lazy.nvim require("lazy").setup({ spec = { { "folke/todo-comments.nvim", opts = {} }, }, -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins. install = { colorscheme = { "habamax" } }, -- automatically check for plugin updates checker = { enabled = true }, })
Go to .config/nvim make an init.lua add this code in the alt text, not that hard is it
Code taken from lazy.folke.io/installation