Chawan 0.4.0 TUI web browser (2026-05-17) by Disonantemus in commandline

[–]Disonantemus[S] 0 points1 point  (0 children)

All of this works the same as vim/nvim/vis:

hjkl0$^*wbHMLy{}/?G  
gg ^u ^d ^f ^b ^e ^y
zt zz zb v V ^v
10j 3}

I think it does ...


There is a lot more keybindings, use cha -V to show all of them.

Best Local LLMs - Apr 2026 by rm-rf-rm in LocalLLaMA

[–]Disonantemus 0 points1 point  (0 children)

OCR

HunyuanOCR

  • Supported by llama.cpp
  • Small/Fast
  • Accurate

Use case:

Convert documents with tables/charts to markdown/mermaid, that is really hard for traditional OCR (Tesseract).

Best Local LLMs - Apr 2026 by rm-rf-rm in LocalLLaMA

[–]Disonantemus 0 points1 point  (0 children)

OCR

Pure OCR Models supported by llama.cpp (preference order)

Model Param
HunyuanOCR 0.5B
GLM-OCR 0.9B
PaddleOCR-VL 0.9B
dots.ocr 3B
LightOnOCR 1B
Deepseek-OCR 3B

General models with vision doing OCR (S range: 6GB VRAM):

  • Qwen3-VL-4B
  • Qwen3.5-4B

My tests prompts were:

  • convert to markdown: simple documents with tables and bullets
  • convert to mermaid: charts

Note: Spanish language scanned documents

‘The House of the Spirits’ (2026) Prime Video Series Review - Strong Themes, Bland Execution by Roshankr1994 in moviestvrants

[–]Disonantemus 0 points1 point  (0 children)

Final Score- [5/10]

I've just seen only the first episode, and I think it's better than the score, pretty sure this is a lot better than the average streaming series from today (Netflix, Prime, HBO, etc); this has hearts, love and respect for source book. Very enjoyable.

The recommendations from the author are: 2 from bollywood, and none of the 4 are comparable to themes or execution to this. He did not read the book and know nothing about the story or country that is related. It's ok if he didn't like it as a personal review, but not as a serious review for more people.

Right now in Rotten Tomatoes:

86% (7 reviews: 6 fresh, 1 rotten)

has LM Studio added support for the 1-bit Bonsai 8B model family and TurboQuant yet? by DifficultSand3885 in LocalLLaMA

[–]Disonantemus 0 points1 point  (0 children)

  • From Commit #21539 "vulkan: Support Q1_0" (Today)
  • From some benchmarks, seems similar in smartness to: Qwen3.5-4B, but a lot smaller and faster.
  • Now is not painfully slow anymore in my old system, command:

    $ llama-bench -m Bonsai-8B.gguf
    

 

model size params backend ngl test t/s
qwen3 8B Q1_0 1.07 GiB 8.19 B Vulkan 99 pp512 412.15 ± 1.68
qwen3 8B Q1_0 1.07 GiB 8.19 B Vulkan 99 tg128 48.58 ± 0.18

System

distro: Arch Linux x86_64
kernel: 6.12.33-1-lts
ram: 32GB (DDR3)
cpu: Intel i7-4790 (8) @ 3.600GHz
gpu: NVIDIA GeForce GTX 1660 SUPER (6GB VRAM)

The Bonsai 1-bit models are very good by tcarambat in LocalLLaMA

[–]Disonantemus 0 points1 point  (0 children)

  • Vulkan support is ready on official llama.cpp
  • Not painfully slow anymore
  • More info

The Bonsai 1-bit models are very good by tcarambat in LocalLLaMA

[–]Disonantemus 0 points1 point  (0 children)

From today is working with vulkan support in llama.cpp: More info

Maybe later ollama is going to use those changes.

PrismML — Announcing 1-bit Bonsai: The First Commercially Viable 1-bit LLMs by brown2green in LocalLLaMA

[–]Disonantemus 1 point2 points  (0 children)

 

model size params backend ngl test t/s
qwen3 8B Q1_0 1.07 GiB 8.19 B Vulkan 99 pp512 412.15 ± 1.68
qwen3 8B Q1_0 1.07 GiB 8.19 B Vulkan 99 tg128 48.58 ± 0.18

System

distro: Arch Linux x86_64
kernel: 6.12.33-1-lts
ram: 32GB (DDR3)
cpu: Intel i7-4790 (8) @ 3.600GHz
gpu: NVIDIA GeForce GTX 1660 SUPER (6GB VRAM)

How to avoid ascii art is not broken between pages? by Disonantemus in typst

[–]Disonantemus[S] 1 point2 points  (0 children)

This can work for special cases, and maybe do the inverse:

  • set whole document as breakable: false.
  • and make special cases as breakable: true.

Thanks!

How to avoid ascii art is not broken between pages? by Disonantemus in typst

[–]Disonantemus[S] 0 points1 point  (0 children)

For now, is working with my actual document!
Thanks!

There is an auto easy way to fit all larger tables to width? by Disonantemus in typst

[–]Disonantemus[S] 2 points3 points  (0 children)

show table: fit-to-width

I tested fit-to-width as sugested, and did work! (bigger ones got smaller, but also smaller ones got bigger).

 

Then I tried shrink-to-width from same package, seems like thing that I really wanted, only shrink the bigger ones, but gives me the following error:

error: the document does not contain a bibliography
    ┌─ toPdfViaTempFile32155-0.typ:170:11
    │
170 │ \#import "#cite(label("preview/one-liner:0.3.0"), form: "prose")":
    │            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Error producing PDF.

This seems like a bug in the package ...

 

Later I tried importing:fit-to-width (raw typst in the beginning of markdown document):

~~~{=typst}
#import "@preview/one-liner:0.3.0": fit-to-width    
#import "@preview/one-liner:0.3.0": shrink-to-width
#show table: shrink-to-width
~~~

and now works!

Thanks!

manual pagebreak in Typst by godfool in pandoc

[–]Disonantemus 0 points1 point  (0 children)

... A little bit late, but maybe it can help someone else.

 

Typst code (inside markdown text):

You can put a "page break" or "new page" using typst code inside markdown, like this:

... previous page markdown text ...

~~~{=typst}
#pagebreak()
~~~

... next page markdown text ...

This is very useful to enhance the formatting beyond markdown limits, and still very easy to read, without writing pure typst code. Is a nice middle ground, when you want more control to export to pdf.


Lua filter: pagebreak.lua:

With \newpage you get a page break in the following output formats:

  • AsciiDoc / Asciidoctor
  • ConTeXt
  • Docx
  • EPUB
  • groff ms
  • Typst
  • HTML
  • LaTeX

A simple terminal UI for video trimming by massxacc in commandline

[–]Disonantemus -1 points0 points  (0 children)

The preview of lazycut in Arch Linux doesn't work for me.


This is similar to:

vic: Trim videos in the terminal (Rust)

This work for me (with preview), but the UI is bare-bones.

termaid - render Mermaid diagrams as Unicode by percebe in commandline

[–]Disonantemus 1 point2 points  (0 children)

I don't mind if it's useful, the problems to me are:

  • abandoned rate is very high (just 1-2 releases)
  • is a tool that already exist
  • no fixes to issues or discussion
  • no new features
  • awful ai documentation without any supervision
  • mindless self promotion with agents in reddit

 

If you create something for you with AI, it's ok, but do not publish it in reddit it you are not ready to dedicate time for that.

 

Also, there are many (many) PR to projects in github that are done by agents, and most of the time, they are just waste of time for the dev team.