Live data from Hacker News

Viewing profile — joouha

joouha

HN member
Joined
Sat, May 08, 2021, 9:49 PM UTC
HN karma
207
Public activity
43 items

About joouha

@josiah@halstead.email

Recent public activity

  1. comment
    Comment #48980207

    Just noticed in the model's metadata: > MiniLMv2 L6-H384 (30M params) progressively distilled L24→L12→L6 from RoBERTa-large-v8 teacher (neobert-v2 recipe, min_words=0). Byte-level …

  2. comment
    Comment #48976190

    Not GP, but I too was interested in this slopdetect-minilm-v3 model. The model appears to be similar to MiniLM-L6 (384 dimension, 6 transformer layers) but uses RoBERTa/GPT-2 style…

  3. comment
    Comment #48356486

    This looks really nice in the screen-shots. I'm working on what is effectively a fork of prompt_toolkit [1], which supports many modern terminal features I needed for euporie [2], …

  4. comment
    Comment #48119323

    tmux now supports sixel graphics, so you can use that instead if running euporie in tmux

  5. comment
    Comment #48106065

    > is there a way to swap the jupyter kernel within euphorie to something else more minimalist? You can use euporie-console for a REPL-like terminal experience (still with rich outp…

  6. comment
    Comment #48106010

    Yes - you need to use the IJulia kernel: https://github.com/JuliaLang/IJulia.jl

  7. comment
    Comment #48104725

    You can absolutely run euporie in tmux. It's useful to do so when using long running notebooks over SSH, so you can disconnect and reconnect later.

  8. comment
    Comment #48104705

    I'm specifically interested in querying for support of particular glyphs (e.g. the symbols for legacy computing block), so applications can use a different fallback if it is know t…

  9. comment
    Comment #48095389

    It's very interesting to learn about the newly proposed glyph protocol [1] in the linked blog post. I was bemoaning the lack of exactly this here about 6 months ago [2]! [1] https:…

  10. comment
    Comment #48095292

    No evolution necessary! With my project, euporie [1], you can have use your data science notebooks with graphical image outputs, HTML, LaTeX, etc, all in the terminal. [1] https://…

  11. comment
    Comment #47967830

    Maybe https://github.com/wesm/msgvault will do what you need?

  12. comment
    Comment #47517995

    Modshim does more than just wrap the external API of a package - it allows you to tweak something internal to the module while leaving its interface alone, without having to re-imp…

  13. comment
    Comment #47516633

    This sounds like an ideal use case for modshim [0] One of its intended use cases is bridging contribution gaps: while contributing upstream is ideal, maintainers may be slow to mer…

  14. comment
    Comment #46332314

    Thanks for the bug report. It has been fixed in the latest version of euporie.

  15. comment
    Comment #46279554

    I use chafa extensively, and it really is the best tool for terminal graphics in my opinion. I use it as a fallback option for terminals without proper terminal graphics support in…

  16. story
    Show HN: Euporie-lite, Jupyter notebooks in terminal in the browser

    I modified my terminal Jupyter client, euporie [1], to run using pyodide in the browser. It's akin to JupyterLite, providing a temporary online Python notebook environment without …

  17. comment
    Comment #45805072

    I'd find it very useful to be able to query a terminal to see if it has font support for a given list of characters. This would allow TUIs to use recent unicode characters which ma…

  18. comment
    Comment #45675514

    I've tested it works from 3.9 to 3.14

  19. comment
    Comment #45673192

    It should in theory be possible to mount the new virtual package over the lower module - but I don't think works currently (I'll have to test this). Doing this would make modificat…

  20. comment
    Comment #45673083

    Let me explain what inspired me to create modshim: I've written a Jupyter client for the terminal (euporie), for which I've had to employ monkey-patching of various third-party pac…

  21. story
    Show HN: Modshim – A new alternative to monkey-patching in Python

    I've invented a new alternative to forking / vendoring / monkey-patching packages in Python. It's a bit like OverlayFS for Python modules - it allows you write modifications for a …

  22. comment
    Comment #41333460

    Toy could try using euporie [1] to run Jupyter notebooks in the terminal [1] https://github.com/joouha/euporie

  23. comment
    Comment #40387874

    I've just found that Mintty supports this https://github.com/mintty/mintty/wiki/CtrlSeqs#overstrike

  24. comment
    Comment #40379906

    This would allow more complex shapes to be drawn by combining multiple glyphs, which would be useful for complex TUI applications (there are only a limited number of box-drawing ch…

  25. comment
    Comment #40379322

    It's up to individual applications how they implement user input. All of this is entirely possible in modern terminal emulators - look at the micro text editor, for example. I gues…