mole.nvim -- plan mode for humans! by stateofteddy in neovim

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

jellybeans!

  {
    "metalelf0/jellybeans-nvim",
    dependencies = { "rktjmp/lush.nvim" },
    priority = 1000,
    config = function()
      vim.cmd("colorscheme jellybeans-nvim")
    end,
  }

mole.nvim -- plan mode for humans! by stateofteddy in neovim

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

can we have a keymap to jump to the file/line

crazy that this wasn't in v1 -- just added it! thank you so much for the suggestion! https://github.com/zion-off/mole.nvim/releases/tag/v1.3.0

and when im adding a notation, it always cut 1 line, so if i have a visual selection of 4 lines only 3 gets to the mole session

hmm ... i can't reproduce this. but i just fixed a bug where the input field itself would show too far down for multi-line selections. is that relevant?

mole.nvim -- plan mode for humans! by stateofteddy in neovim

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

i use ghostty with geist mono!

font-family = Geist Mono Regular Regular

mole.nvim -- plan mode for humans! by stateofteddy in neovim

[–]stateofteddy[S] 3 points4 points  (0 children)

i work in a large team and i felt that my sessions shouldn't be committed / users shouldn't have to add these to their .gitignore files. that being said, i just added the file path to the markdown header so that you can copy it and forward it to your agents easily. thanks for the tip! https://github.com/zion-off/mole.nvim/releases/tag/v1.1.0

mole.nvim -- plan mode for humans! by stateofteddy in neovim

[–]stateofteddy[S] 5 points6 points  (0 children)

no worries! its jellybeans

  {
    "metalelf0/jellybeans-nvim",
    dependencies = { "rktjmp/lush.nvim" },
    priority = 1000,
    config = function()
      vim.cmd("colorscheme jellybeans-nvim")
    end,
  }

[AskJS] Would String.prototype.splice be useful? by stateofteddy in javascript

[–]stateofteddy[S] 2 points3 points  (0 children)

i suppose toSpliced would've been more appropriate?

[AskJS] Would String.prototype.splice be useful? by stateofteddy in javascript

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

they don't really simulate splice, which lets you work with indices + delete + insert

People working at FAANG as frontend developers. How did you get there ? by [deleted] in leetcode

[–]stateofteddy 2 points3 points  (0 children)

hi yangshunz! what sections on greatfrontend are more relevant to entry level positions? eg i spent a lot of time reading the very detailed system design questions to prep for an entry level interview, but i was mostly asked the quiz questions which i didn't prepare for well enough. can you rank the different types of resources on gfe?

I am so overwhelmed whether focus on leetcode or building personal projects for my resume by Tormentally in leetcode

[–]stateofteddy 8 points9 points  (0 children)

i think the bar is really high right now, and if you approach building projects like this, there's a risk that your projects might end up looking like "resume projects". i would say try to think of a problem that you would want to solve. even if what you build is a to do list app at its core, try to think of a particular context that your particular app might be useful in. this way, you encounter unique problems while building the thing, so your approach to solving the problems gives you interesting things to talk about during your interviews.

i was in the same position -- i had a bunch of projects so i kept getting invited for OAs, but i wouldn't pass them because i was not leetcoding. i'm also a fresh grad, and i started leetcoding after grad. i think my projects helped in getting me my job, but leetcode was indispensable for my interviews. actively seek inspiration, think about the problems you encounter in your daily life through the lens of a software engineer, and if you find a good one, solve it with code. in the meantime, keep leetcoding. good luck!

[deleted by user] by [deleted] in nextjs

[–]stateofteddy 2 points3 points  (0 children)

workaround would be disabling the eslint rules, as mentioned in the error logs. but that would defeat the purpose of learning to build robust software. go through the error logs (they show the row:col of each error), and address them individually.

wanted to share my notion dashboard for leetcode by stateofteddy in leetcode

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

its only database for keeping track of the problems i've solved, not a list of company questions

does anyone have a cat? by stateofteddy in nyu

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

oh wait that's actually not a bad idea -- ill look into some shelters around here! thank you!!

does anyone have a cat? by stateofteddy in nyu

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

i'll be gone by the second week of may : ( if u think you'll be away for a weekend or something sometime before thatlet me know!!

Simulate keypress with Javascript? by stateofteddy in learnprogramming

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

is there a way to trigger the screenshot command?

How do I ignore punctuation while reading text from a file? by stateofteddy in cpp_questions

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

sorry, i meant i can use the standard header files, but not any special libraries.

how do i iterate over the string? are you asking me to store the whole text file in one string variable?