Viewing profile — Pawamoy
Pawamoy
HN member- Joined
- Mon, Apr 09, 2018, 3:20 PM UTC
- HN karma
- 67
- Public activity
- 45 items
- HN profile
- View on Hacker News ↗
About Pawamoy
No profile information was provided.
Recent public activity
-
comment
Comment #46400133
No. When such upper bounds are respected, they contaminate other packages, because you have to add them yourself to be compatible with your dependencies. Then your dependents must …
-
comment
Comment #45730784
A friend shared his technique with me, and after adapting it to my needs, it works well. None of the other commonly mentioned techniques ever worked for me, because they ask for fo…
-
comment
Comment #45020614
I'll get a closer look at the code tomorrow, but maybe you can provide an answer in the meantime: how do you handle line numbers? Bash's LINENO is unreliable, contrary to Zsh's, se…
-
comment
Comment #43668720
I follow a sponsorware strategy: public version with basic features, paid version (monthly subscription) with more features. When a funding goal is reached (dollars per month), a s…
-
comment
Comment #43055233
Following the /llms.txt standard proposition, I create a MkDocs plugin that generates an /llms.txt file at the root of your site. So, same thing, but generates the Markdown documen…
-
story
Show HN: Griffe, load Python APIs, find breaking changes
Hey all, Griffe was already submitted two years ago on HN, but it nicely evolved since then so I figured I'd submit it again myself, especially since I just finished rewriting its …
-
comment
Comment #40820162
I maintain git-changelog, which is a similar implementation in Python (started two years before git-cliff). When I discovered git-cliff a few months ago, I was very impressed by th…
-
story
Show HN: Python) Markdown Exec, execute code blocks and render their output
Hey everyone, here's an extension I made for Python-Markdown ( https://github.com/Python-Markdown/markdown ). It builds on top of PyMDown Extensions' SuperFences ( https://faceless…
-
comment
Comment #33403690
> But again they don't export a Sphinx inventory so I cannot cross-reference their units But they do! So you can! The inventory is right here: https://textual.textualize.io/objects…
-
comment
Comment #31630514
Author here (I'm a bit late!): indeed Griffe's goal is to be able to support any Python code, natively or thanks to extensions. Thanks for sharing by the way!
-
comment
Comment #30257714
This is probably a bit off-topic, but I wonder if you know about the GenIDA project: https://genida.unistra.fr/ . It's basically a research website where families can register and …
-
comment
Comment #23210552
Why not checking the contributors instead of the forks? Just pick the most regular ones, or the ones that contributed the most (in number of PRs).
-
comment
Comment #23123329
My favorite as well. I think Terminator gave me a real boost on productivity. The split feature is great. And it has a lot more good things, like increase/decrease/reset text size,…
-
comment
Comment #23089283
To expand on this, yes, you can force Bash to read more lines and keep them in memory before executing them by wrapping them in blocks. These blocks can be (), {}, functions, and m…
-
comment
Comment #22597555
I even have this problem with bikes. Not motor bikes, just bikes. Some of them have a front light that just blinds me. I can't determine their speed anymore, not the direction they…
-
comment
Comment #21499245
Check out Basher: https://github.com/basherpm/basher
-
comment
Comment #21427037
Shameless plug: aria2p. I built an interactive interface very similar to htop to see your aria2 downloads progress. https://github.com/pawamoy/aria2p
-
comment
Comment #21130895
Woops, "didn't read", will delete later
-
comment
Comment #21130870
Similar to https://github.com/dumb-password-rules/dumb-password-rules
-
story
Ask HN: How do you find developers with same interests, for side projects?
I have a lot of side projects on which I try to work a bit everytime I have the opportunity, but honestly sometimes it feels like I will never finish all the work I'm giving to mys…
-
comment
Comment #20558970
echo -n hello world considered wrong as well. Also Question: Write the command that you use if you finish working with the terminal and you want to log out from the current session…
-
comment
Comment #20008401
There's git-bug: https://github.com/MichaelMure/git-bug
-
comment
Comment #19968816
I don't know if it's because I'm so used to find, but I had a bad UX with fd. This is my thought process each time I use it: "Why separating the extension from the filename? Is thi…
-
comment
Comment #19904111
Then throw it into space, whatever the direction. The universe is so vast, even if the entirety of the earth was garbage it would be nothing compared to it ;)
-
comment
Comment #19887652
But using Python is very painful as well for shell use-case. Do you really want to open files, subprocesses, and create fifo manually instead of typing "cmd1 | cmd2 > output"? Then…