Viewing profile — azkae
azkae
HN member- Joined
- Mon, Mar 09, 2015, 9:20 AM UTC
- HN karma
- 32
- Public activity
- 8 items
- HN profile
- View on Hacker News ↗
About azkae
No profile information was provided.
Recent public activity
- story
-
comment
Comment #44824013
I am using macher for small edits on a codebase with gptel: https://github.com/kmontag/macher The package define a list of tools that gptel can use to inspect and edit a project. T…
-
comment
Comment #28604383
You can already do this without pattern matching: from typing import Union, NoReturn class Foo: name: str class Bar: size: int Variant = Union[Foo, Bar] # or `Foo | Bar` in Python …
-
comment
Comment #28197490
Yes this wraps subprocess.Popen in a nice API.
-
comment
Comment #28197429
Somewhat related, if you are looking to do scripts in Python you should take a look at `sh`: import sh print(sh.ifconfig("eth0")) https://amoffat.github.io/sh/
-
comment
Comment #25387646
I use icecream [1] for the same purpose while debugging. It's really handy. [1] https://github.com/gruns/icecream
- story
-
comment
Comment #17173026
Scrolling with the trackpad seems way better by default, no more mouse-wheel-scroll-amount/mouse-wheel-progressive-speed hacks !