Live data from Hacker News

Viewing profile — azkae

azkae

HN member
Joined
Mon, Mar 09, 2015, 9:20 AM UTC
HN karma
32
Public activity
8 items

About azkae

No profile information was provided.

Recent public activity

  1. story
  2. 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…

  3. 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 …

  4. comment
    Comment #28197490

    Yes this wraps subprocess.Popen in a nice API.

  5. 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/

  6. comment
    Comment #25387646

    I use icecream [1] for the same purpose while debugging. It's really handy. [1] https://github.com/gruns/icecream

  7. story
  8. comment
    Comment #17173026

    Scrolling with the trackpad seems way better by default, no more mouse-wheel-scroll-amount/mouse-wheel-progressive-speed hacks !