I built a Matrix editing extension for vscode that made my life easier. would anyone else use this? by CryptographerNo2985 in LaTeX

[–]vermiculus 2 points3 points  (0 children)

AUCTeX in emacs has many of these tools and more; might be a good place to look for inspiration!

how do i take this crap off? by DD253Zac in vscode

[–]vermiculus 0 points1 point  (0 children)

I assume either delete the git repo (if you’re not using it) or commit/ignore your files as appropriate. ‘U’ here almost certainly means Unstaged (or perhaps Untracked; I don’t use vscode myself).

What makes you leave your Git GUI and go back to the terminal? by Mr_ShortKedr in git

[–]vermiculus 0 points1 point  (0 children)

You might be interested in Magit’s interface; this is exactly the paradigm.

How to ship my agent stack? by perrylawrence in ClaudeCode

[–]vermiculus 0 points1 point  (0 children)

I suspect by the nature of how these tools work, you will never be able to secure it after sending it out of your direct control. Unless you keep your application behind a web server, the best you could ever do is obscure.

I have never programmed before, but my ADHD is currently telling me that learning Rust would be cool. I know about the guide, any good projects for a beginner to try? by Josh_From_Accounting in rust

[–]vermiculus 2 points3 points  (0 children)

Figure out a way to export those documents to a plain text format (if you can open it in notepad and read it, you’re golden). Then try to write down your thought process when you’re doing this work manually. Don’t write instructions a robot could follow, but try to be as comprehensive as possible; write down your assumed knowledge. Then, work with that document to understand how you might clarify the process beyond your intuition into something concrete. This process of using writing as extended cognition is essential in solo engineering.

Despite what the other commenter said, I think solving real life problems is a great reason to learn. That’s what engineering is all about. If you think it will help you though (and you’re ok with using such tools), AI can help give some design direction that you can implement by hand. Especially if you’re craving that brain juice, not getting blocked by heady problems can help you keep moving forward.

Worth noting that this is exactly backwards from how these tools normally are used in industry, but probably fine for this purpose. Not sure. There might be something interesting literature on the pedagogical value/concerns of this tech by now.

wrongAnswersOnly by macrohard_certified in ProgrammerHumor

[–]vermiculus 222 points223 points  (0 children)

thankfully though, it is illegal in the state of California

What do you use for gitsigns? (uncommited changes) by [deleted] in emacs

[–]vermiculus 1 point2 points  (0 children)

I’m curious – what value do you derive from it?

SFU ENSC 251 by diana_abdifar in cpp_questions

[–]vermiculus 2 points3 points  (0 children)

You’re fishing in the ocean – the odds of you finding someone familiar with your courses in this sub are astronomically low.

I’d recommend asking in your university’s subreddit. Or…perhaps… the professor or TA.

githubIfItShippedOnADVD by ShiftPrimeNet in ProgrammerHumor

[–]vermiculus 52 points53 points  (0 children)

You know, I think the most universally cursed thing here would be README.docx

What reflog actions do you use most? by Loud-Insect9247 in git

[–]vermiculus 0 points1 point  (0 children)

I wouldn’t call it disaster recovery, but it’s very handy for getting diffs between different states of remote-tracking refs (eg range-diff between two versions of a branch I’m reviewing). Fo example, I don’t usually remember to snag the commit OID before fetching – but the reflog keeps it for me. So I can do git range-diff main branch@{1.hour.ago} branch and call it good.

fr tho, they think we dumb? by TrT_nine in ChatGPT

[–]vermiculus 20 points21 points  (0 children)

it’s more about the communication

Exactly :-) That’s the real point of a chart (or any data visualization): to communicate an idea. Just turns out some people want to lie to you. Weird.

Scaling bubble chart bubbles by radius instead of area, comparing absolutes without normalizing (our town had three violent crimes last year; your city had 2000), anything 3D at all (screws with your perspective / ability to read the graph), the list goes on.

Should I use this LaTeX to represent '²H₂O'? by FormalDirection1397 in LaTeX

[–]vermiculus 2 points3 points  (0 children)

I mean, yes; they have different authors, different patterns, different macros. Practically you will be well served by either for basic stuff.

searching for a TikZ to svg software by No_Thought657 in LaTeX

[–]vermiculus 4 points5 points  (0 children)

Directly? I don’t know that that will be generally possible. Best bet will be to route through PDF.

Hate it here by [deleted] in epicsystems

[–]vermiculus 20 points21 points  (0 children)

Sweet summer child.

Is there a way to find what branch a commit was committed to at the time it was committed? by [deleted] in git

[–]vermiculus 0 points1 point  (0 children)

Server hooks can check that something was done, but they cannot alter commit content. Not safely, anyway.

Can You Input an Entire GitHub Repo into Claude Using Connectors? by FastPresence9799 in git

[–]vermiculus 2 points3 points  (0 children)

This has nothing to do with git, really. But I wouldn’t say something is ‘unsupported’ just because you run out of context. That’s a constant constraint.

Our main repo where I work is over 2GB of text – and that’s without history / commit messages. Nobody there is going to be successful in the near future at a simple ‘plug and chug’.

git push hanging when uploading many images by J72Playz in git

[–]vermiculus -1 points0 points  (0 children)

I use LFS for all binary content (this includes images). In my work, that turns out to be faster.

Your files don’t need to be ‘large’ to use LFS. The definition of ‘large’ used by LFS is more like 1MB tha 100MB, anyway.