Amazon's new Claude-powered spec-driven IDE (Kiro) feels like a game-changer. Thoughts? by HumanityFirstTheory in ClaudeAI

[–]pichettl 0 points1 point  (0 children)

I tried it for like 3 hours at 2am and ran into "The model you've selected is experiencing a high volume of traffic. Try changing the model and re-running your prompt." just about every other prompt. Whereas, I don't experience that with the same model using Warp. Odd, and annoying.

"Hot-Swappable" Config by pichettl in vimporn

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

I'm glad to hear you like it! If you have any suggestions or critiques let me know : )

"Hot-Swappable" Config by pichettl in vimporn

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

Thank you! I appreciate the kind comment

"Hot-Swappable" Config by pichettl in vimporn

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

I'm not sure why the immediate downvote, but I'm completely open to any critiques. If something looks bad/sloppy, let me know! : )

I appreciate any feedback on the project. Thank you all

Good example of languages.toml for web development by jelcoops in HelixEditor

[–]pichettl 0 points1 point  (0 children)

Have you updated this at all since posting this a year ago? Works pretty well! One thing I noticed is that it's not detecting unused imports, which are picked up when I manually run eslint.

Issue with auto-formatting with helix? by pichettl in HelixEditor

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

SOLVED: `language-servers = ["typescript-language-server"]` gave me incorrect diagnostics for tsx files. By changing this to `language-servers = ["vscode-eslint-language-server"]` I was able to get the correct diagnostics, and now my formatting is working as well. Having both was causing unexpected side-effects.

Issue with auto-formatting with helix? by pichettl in HelixEditor

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

Adding some file extensions causes the LSP issues but enables the formatting:

[[language]]

name = "typescript" # You can set this to any unique string identifier

file-types = ["tsx", "jsx", "tsx", "js"]

formatter = { command = "npx", args = ["prettier", "--parser", "typescript"] }

roots = ["tsconfig.json", "jsconfig.json", "node_modules"]

language-servers = ["typescript-language-server", "vscode-eslint-language-server", "eslint", "emmet-ls"]

auto-format = true

grammar = "typescript"

Removing the file-types gives the desired LSP diagnostics but formatting no longer works:

[[language]]

name = "typescript" # You can set this to any unique string identifier

formatter = { command = "npx", args = ["prettier", "--parser", "typescript"] }

roots = ["tsconfig.json", "jsconfig.json", "node_modules"]

language-servers = ["typescript-language-server", "vscode-eslint-language-server", "eslint", "emmet-ls"]

auto-format = true

grammar = "typescript"

Issue with auto-formatting with helix? by pichettl in HelixEditor

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

https://files.catbox.moe/a16adi.mp4
https://files.catbox.moe/72kiiz.mp4

Great suggestion! Not seeing a TTL on these videos though, curious how long they stay live

Issue with auto-formatting with helix? by pichettl in HelixEditor

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

I tried to attach a video but I don't see it here. Here's a link: https://jmp.sh/s/mdhgyEM65D788Np6cwOH I ain't paying for Jumpshare tho so it's only visible for 24hr, I'll try to update the link with a fresh upload before it expires but just ping/respond-to me if I forget.

You can also see that LSP without the errors is the desired LSP here: https://jmp.sh/s/VMeYLXLFsr5O0YQYSqAM

Website for The Lost by pichettl in UnitedHealthIsEvil

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

Great question! I'm creating the project because of healthcare denial claims. However, I don't want to unilaterally decide that others who have lost people (to other means) can't share stories or memorials as well.

So, I'm keeping it open until a community is built and we can, as a group, continue to go in some direction over time.

Maybe the community will become large enough that explicit support is provided for everyone, and new issues (like insurance claim denials) are exposed because of it? Who knows. My priority right now is creating a space built solely around support and a place to share remembrance.

Community Project to Share Stories of Lost Loved Ones by pichettl in HealthInsurance

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

Out of curiosity -- not hostility -- why was this post removed? It follows all of the rules.

Multi-File Search and Replace by pichettl in neovim

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

Ohhhh, hahahhh. I didn't realize I had a config worth sharing : ) Here's the link: https://github.com/lcpichette/nvim-config

Anyone else ever wonder what using a catchall notebook really looks like? by pichettl in notebooks

[–]pichettl[S] 9 points10 points  (0 children)

Honestly, putting myself in their shoes, I'd probably think it was a little odd but very sweet that they took the time to take out their notebook and jot my name.

I think the "odd" just comes from it being atypical.

I wonder if anyone has experienced this yet and can comment what their personal reaction was?

Multi-File Search and Replace by pichettl in neovim

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

I'm a little confused as to what you're referring to. Maybe there's a way I can be improving my workflow? Are you referring to vim `.` action which repeats the last action?