gempir

Results 69 comments of gempir

Yeah there are lots of good reasons to actually have the sources of a library available, I like to explore them in my IDE sometimes or maybe while debugging etc....

I think `.ts` files imported by `.d.ts` files should be treated the same way, so if skipLibCheck is enabled it should ignore them. If you are importing `.ts` files from...

Have you thought about just running the action on start of AeroSpace? ``` [[on-window-detected]] if.app-name-regex-substring = 'Obsidian' if.during-aerospace-startup = true run = ['move-node-to-workspace 5'] ``` This should allow you to...

Maybe an AltStore is an option? This works in the EU at least. https://altstore.io

I generate hashes for python dependencies with like this: ``` pip-compile -v --generate-hashes --output-file=/tmp/python_requirements.txt --pip-args=--no-cache-dir /tmp/python_requirements.in ``` https://github.com/jazzband/pip-tools#using-hashes That ensures I always grab the exact dependency of something. Every major...

Hmm. I haven't published anything on pypi before, but is there maybe a pre-release of sorts that let's you not directly publish the newest version and only when all wheels...

Mentions should just use Recent Messages IMO. Whispers are a separate topic though.

@jammehcow Mentions from https://recent-messages.robotty.de/ API, were we take recent-messages from. So we just need to pass those recent messages through the mentions filterer (not sure how that works in the...

I'm looking to limit sessions to specific folders and I think that's what projects are for. But how could I initiate a project from an existing repository? My usecase here...