Home New Trending Search
About Privacy Terms
Posts
Saanvi πŸ³οΈβ€βš§οΈ's posts

Yeaa it sucksss πŸ₯Ί

4 months ago 1 0 0 0

I haven't been streaming much lately as well

4 months ago 1 0 1 0

Awwwh it's all good didi <3

4 months ago 1 0 1 0
Preview
feat: ":restart" can run arbitrary commands by sathya-pramodh Β· Pull Request #35045 Β· neovim/neovim Problem: There is no way for a user to tell &quot;:restart&quot; to &quot;run this command(s) after restarting&quot;. Solution: All &quot;:restart&quot; args following the optional +cmd arg are tre...

PR: github.com/neovim/neovi...

7 months ago 0 0 0 0
Post image

Officially announcing the FIRST-EVER MCSR CENSUS!

If you have ever watched a Minecraft speedrun, please retweet this - we want maximum exposure for debiasing!

shoutout to the wonderful orgs nessampah, sivianox and emma tortona, as well as the 34 testers and 25 translators that made this happen!

7 months ago 15 12 0 0
Video thumbnail

I MIGHT be cooking something up >.> (PR soon)

github.com/sathya-pramo...

7 months ago 3 0 1 0
api.nvim_create_autocmd("BufWritePost", {
		desc = "Restart automatically if changes are made to any config file",
		group = vim.api.nvim_create_augroup("cfg-auto-restart", { clear = true }),
		callback = function(args)
			local bufnr = args.buf
			local filepath = vim.fn.fnamemodify(vim.api.nvim_buf_get_name(bufnr), ":p")

			local _, err = io.open(filepath, "r")
			if err ~= nil then
				return
			end

			if not vim.endswith(filepath, ".lua") and not vim.endswith(filepath, ".vim") then
				return
			end

			local config_path = vim.fn.stdpath("config")
			local real_config_path = vim.loop.fs_realpath(config_path)

			if not real_config_path then
				return
			end

			if not vim.startswith(filepath, real_config_path) then
				return
			end

			vim.cmd("restart")
		end,
	})

api.nvim_create_autocmd("BufWritePost", { desc = "Restart automatically if changes are made to any config file", group = vim.api.nvim_create_augroup("cfg-auto-restart", { clear = true }), callback = function(args) local bufnr = args.buf local filepath = vim.fn.fnamemodify(vim.api.nvim_buf_get_name(bufnr), ":p") local _, err = io.open(filepath, "r") if err ~= nil then return end if not vim.endswith(filepath, ".lua") and not vim.endswith(filepath, ".vim") then return end local config_path = vim.fn.stdpath("config") local real_config_path = vim.loop.fs_realpath(config_path) if not real_config_path then return end if not vim.startswith(filepath, real_config_path) then return end vim.cmd("restart") end, })

Here's a neat little usage of ":restart" where it automatically restarts Nvim if you change any of your config files :D

This is so unbelievably fast. Imagine this with session restoration and we have a working hot-reloading functionality.

9 months ago 4 0 0 0

It's available in nightly and is experimental.

9 months ago 0 0 0 0

I love the extui work being done by luukvbaal on neovim. I've been giving it a shot for a while now and the syntax highlighting on the command line is something that I didn't know I needed.. And prettier error messages with a counter!

Try it out:
require('vim._extui').enable({})

9 months ago 3 0 1 0
Commit screenshot

Commit screenshot

I applied to GSoC this year with the project idea to implement the ":restart" command. It got rejected but I still went ahead and asked the maintainers if I could do it. They said yes and here we are.
":restart" in a Neovim instance near you.

Huge thanks: justinmk, zeertzjq, bfredl for the reviews

9 months ago 45 5 1 1

Happy pride everyone!!! <3 It sucks what's out there right now and the people in power, but make sure to spread love! <33 All of you are valid and amazing! :3

9 months ago 6 1 0 0

Updated intro post hehe:
Hi!! I'm Saanvi! I'm a Minecraft speedrunner (very bad at it), Twitch Streamer, Developer, CS&E major and trans girl πŸ³οΈβ€βš§οΈ (She/her primary, They/Them secondary). Pet pictures <3. I appreciate Art and Artists in my TL (y'all are making my day everyday) :3

10 months ago 8 0 0 0

Obligatory name change alert post :D

10 months ago 7 1 0 0

Happy birth justin!

1 year ago 1 0 0 0

Right now is a scary time to be trans in AmericaπŸ³οΈβ€πŸŒˆ

That is why I'm putting it out there, that if any queer folx need help with moving to a safer state, I want to be a resource! Whether it's proof-reading a resume, being a reference, finding cheep furniture, or helping you with the process. 1/3

1 year ago 17 5 1 0

OH and seedqueue and help alpha test it. Those were some fun times as well πŸ₯°. Made a singular PR to it and I'm happy that I did that.

1 year ago 2 0 0 0

Happy new year!! πŸŽ‰ This year was great for me. Finally figuring out who I am was a huge thing ofc. PaceManBot and being involved in getting PaceMan out there to the community was amazing, so glad I could be a part of it.

Idk what I'm gonna do this year tho πŸ˜…

1 year ago 9 0 1 0

This was a great year for MCSR development πŸŽ‰

1 year ago 1 0 0 0

Goodbye alacritty, you served me well. Ghostty is my friend now :D

Its so cool that there is in-built theme support with ghostty. And it has the easier configuration I've ever seen. It's really cool :D

P.S.: Yes, I watched the Theo video on it and decided to switch.

1 year ago 2 0 0 0

10/10 crack smoker

1 year ago 1 0 0 0

Good job OpenAI on sucking the humanity out of Competitive Programming which literally is a sport πŸ‘. Expect a lot of these "Oh I used an LLM to get Expert in Codeforces" types of posts coming next. It's so annoying man 😭

Don't even get me started on the environmental impact of this.

1 year ago 1 0 0 0

If all they did was give it a 2300 problem and measure how it performed on it, nope I don't believe that it's better at programming actually. Fwiw, regurgitating pre-existing problems and solutions to them (from tutorials which are available on most problems) isn't really impressive is it.

1 year ago 1 0 1 0

I see the codeforces thingy mentioned for o3 today and lemme just say this, THEY DIDNT RELEASE THE FUCKIN BENCHMARK. Everyone who's given a contest on codeforces knows for a fact that the Rating given in the Problemset are just a rough estimate of who solved the problem during the actual contest.

1 year ago 0 0 1 0

We all know why the "database" is in quotes :)

1 year ago 2 0 1 0
Preview
Advent-Of-Code/2024/15/soln2.py at main Β· sathya-pramodh/Advent-Of-Code My solutions to Advent of Code Problems. Contribute to sathya-pramodh/Advent-Of-Code development by creating an account on GitHub.

Today's problem was something..... I liked it tho... But I implemented it in such a janky way... I wonder if there is an optimal solution tho

If ya wanna see: github.com/sathya-pramo...

1 year ago 2 0 0 0

How many of y'all found the tree today? (In Advent of Code, ik y'all don't go outside, it's ok)

1 year ago 2 0 1 0

They're so cool wtf 😧

1 year ago 1 0 0 0

Hey today's Advent of Code problem is gonna be nice right?
(Just spent 5 hrs tryna come up with a good solution, I think its time to end it all /j)

1 year ago 4 0 0 0

aaaaaaaaand I spelt it wrong.... Really.....

1 year ago 0 0 0 0

Feminomenon πŸ‘€πŸ‘€πŸ‘€πŸ‘€πŸ‘€

1 year ago 1 0 1 0
Saanvi πŸ³οΈβ€βš§οΈ
Saanvi πŸ³οΈβ€βš§οΈ
@its-saanvi
106 Followers 127 Following 61 Posts
Posts Following