#Nicolium is nice, snappy and looking good, but it's a webapp sadly.

@mkljczk Is there a chance for #Tauri based """desktop""" repack maybe? I don't know how much work it would take, as I don't do any webdev, just wondering.

Token Dashboard – local desktop app to see where your Claude Code tokens go

Token Dashboard는 Claude Code 사용자의 JSONL 트랜스크립트를 로컬에서 분석해 프롬프트별 토큰 사용 비용, 도구 및 파일 사용 히트맵, 서브에이전트 기여도, 캐시 분석, 비용 절감 팁 등을 제공하는 데스크톱 앱입니다. 완전 오프라인으로 동작하며 Windows, macOS, Linux를 지원하고, Rust와 Tauri로 개발되어 가볍고 설치가 간편합니다. 개발자들은 비용 최적화와 LLM 사용 모니터링에 즉시 활용할 수 있습니다.

https://github.com/Arylmera/Token-Dashboard

#claude #tokentracking #desktopapp #rust #tauri

GitHub - Arylmera/Token-Dashboard: Local desktop dashboard for Claude Code. Reads your JSONL transcripts and surfaces per-prompt cost, tool heatmaps, subagent attribution, cache analytics, and a rule-based tips engine. Rust + Tauri, fully offline, MIT.

Local desktop dashboard for Claude Code. Reads your JSONL transcripts and surfaces per-prompt cost, tool heatmaps, subagent attribution, cache analytics, and a rule-based tips engine. Rust + Tauri,...

GitHub

API課金ゼロで米国ニュース要約デスクトップアプリを作った(Tauri × ローカルLLM)
https://qiita.com/chaochire/items/46df03c9c3bf56670e05?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items

#qiita #TypeScript #NewsAPI #Tauri #LLM #ollama

API課金ゼロで米国ニュース要約デスクトップアプリを作った(Tauri × ローカルLLM) - Qiita

こんにちは。 ソーイ株式会社、入社2年目の村上です。 AIをアプリに組み込もうとすると、APIやクラウドサービス(AWSなど)を経由するケースが多く、継続的に利用する場合はコストが気になるところです。 そこで今回は、以前から気になっていた Tauri と、ローカルでLLMを...

Qiita

VentoyISOManager semplifica la gestione delle ISO per Ventoy con download integrati, analisi dei file e configurazione del boot. #Ventoy #Linux #ISO #Tauri

https://www.linuxeasy.org/ventoyisomanager-gestione-avanzata-iso-ventoy/?utm_source=mastodon&utm_medium=jetpack_social

Shine — C++ Фреймворк для десктоп приложений с использованием React

Краткий обзор и представление фреймворка Shine для разработки десктоп приложений используя C++ и React.

https://habr.com/ru/articles/1031200/

#C++ #Frontend #Backend #React #Tauri #Shine_Framework

Shine — C++ Фреймворк для десктоп приложений с использованием React

Доброго времени суток, уважаемые пользователи Хабра. Я не то что бы профессиональный разработчик на C++, в основном я занимаюсь геймдевом на UE5 (по крайней мере последнее время). Но последнее время...

Хабр

»#Tauri is an alternative cross-platform, open-source framework for building desktop and mobile apps using web technologies while leveraging #Rust on the back-end. In replacing #Electron with Tauri, the #Lemonade SDK is now "10x smaller" than before. The pre-built macOS and Windows binaries for example were 101~107 MB with Lemonade 10.2 and are now 7~9 MB with Lemonade 10.3.«

https://www.phoronix.com/news/AMD-Lemonade-10.3

AMD's Lemonade SDK 10.3 Now 10x Smaller By Getting Rid Of Electron

Lemonade as the open-source local AI server backed by AMD and supported across AMD CPUs / GPUs / NPUs on Windows and Linux is out with a big update.

HelixNotes v1.2.9 is out.

- Mermaid diagrams (opt-in render, copy/save as PNG/SVG)
- Live KaTeX math editor with /math and /imath
- Heading hotkeys Ctrl+1 to Ctrl+6
- Manual notebook ordering (drag and drop)
- Blank lines now round-trip cleanly through markdown

Local markdown notes. Rust + Tauri + SvelteKit. AGPL-3.0. No account, no telemetry, just .md files on disk.

https://helixnotes.com
https://codeberg.org/ArkHost/HelixNotes

#FOSS #Markdown #Notetaking #Rust #Tauri

I am working on an idea for a #tauri based CMS for a static web site. I really love #11ty as a static site generator so I'd like to use it.

To build the site from the CMS, I need to be able to run npm.

**My question to the Tauri experts:** Is there a way to "bundle" the node runtime (maybe as a sidecar) into my tauri app?

The information that I can find here: https://v2.tauri.app/learn/sidecar-nodejs/ suggests that I need to pre-package the node app. Unfortunately, Eleventy needs to build .js on the fly.

Node.js as a sidecar

The cross-platform app building toolkit

Tauri

I've started sketching out an app I want to develop and as I want it to have Windows, Mac and Linux builds I was starting down the Electron route but then noticed Tauri. Given this apps usage, amount of data it sometimes processes and possible later uses of the code Rust might have some advantages. Anyone on here used both?

#coding #rust #electron #tauri

YAKE! вместо нейросети: как мы заменили 600 МБ ONNX-реранкера на 400 строк статистики

В Yttri мы изначально использовали ONNX-реранкер bge-reranker-v2-m3 для RAG-поиска. Качество было хорошим, но цена для local-first desktop-приложения оказалась слишком высокой: около 600 МБ модели, до 1.8 ГБ RAM в пике и ощутимая нагрузка на CPU. В статье разбираю, как мы заменили тяжёлый нейросетевой реранкер на собственную реализацию YAKE! на Rust: без модели, без прогрева, без внешних сервисов и с латентностью порядка микросекунд. Показываю механику алгоритма, интеграцию в RAG, автотегирование, ограничения подхода и главный архитектурный вывод: не каждая AI-задача требует ещё одной нейросети. Иногда лучший AI-компонент - это тот, который удалось удалить.

https://habr.com/ru/articles/1027726/

#Rust #Tauri #RAG #SQLite #Localfirst #NLP #YAKE #Embeddings #Desktop

YAKE! вместо нейросети: как мы заменили 600 МБ ONNX-реранкера на 400 строк статистики

YAKE вместо ONNX-реранкера В прошлой статье я рассказывал, что такое Yttri : local-first desktop-приложение для управления знаниями, задачами, встречами, документами и AI-контекстом. Теперь хочу...

Хабр