惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog RSS Feed
Y
Y Combinator Blog
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point Blog
M
MIT News - Artificial intelligence
Last Week in AI
Last Week in AI
V
V2EX
腾讯CDC
F
Fortinet All Blogs
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss

Hacker News - Newest: "LLM"

GitHub - lechmazur/position_bias: A benchmark for testing whether LLM judges keep the same preference when two lightly edited versions of the same story are shown in opposite orders. Flex routing (EU and EFTA) Dark Factories: Retooling for LLM Velocity Ask HN: What would be the impact of a LLM output injection attack? GitHub - AronDaron/dataset-generator: No-code desktop app for generating high-quality synthetic datasets to fine-tune LLMs — plan-then-execute pipeline, LLM-as-judge, HuggingFace upload. GitHub - Oaklight/llm-rosetta: Production-ready LLM API translation layer for Python — bidirectional conversion between OpenAI, Anthropic & Google formats via hub-and-spoke IR. Optional API gateway. Streaming & non-streaming. Zero core deps. Contributions welcome! GitHub - browser-use/browser-harness: Self-healing browser harness that enables LLMs to complete any task. Analyzing 156 LLM Launch Posts on Hacker News ChatGPT vs Gemini vs Claude: The Best LLM Subscription You Should Buy GitHub - salaamalykum/quran-semantic-search: High-density RAG Semantic Search Engine & Quran Corpus (GEO/SEO Architecture) GitHub - NVIDIA/TensorRT-LLM: TensorRT LLM provides users with an easy-to-use Python API to define Large Language Models (LLMs) and supports state-of-the-art optimizations to perform inference efficiently on NVIDIA GPUs. TensorRT LLM also contains components to create Python and C++ runtimes that orchestrate the inference execution in a performant way. The State of LLM Bug Bounties in 2026 Operational Readiness Criteria for Tool-Using LLM Agents Meshcore: Architecture for a Decentralized P2P LLM Inference Network How an LLM becomes more coherent as we train it GitHub - seetrex-ai/laimark GitHub - Jossifresben/BibCrit: AI-assited biblical textual criticism GitHub - wastedcode/memex: File system based wiki, maintained by Claude 99helpers.com GitHub - cliver-project/AITrigram GitHub - unbody-io/adapt: A self-evolving memory layer for AI agents. GitHub - hb20007/awesome-gen-ai-fails: A list of incidents where reliance on generative AI and LLMs resulted in harm to companies, individuals, or society GitHub - nevenkordic/localmind: Run any local LLM with persistent memory and context. CLI agent over Ollama with SQLite-backed hybrid recall. No cloud. Ask HN: What are the machine requirements for a LLM like Llama-3.1-8B? Faster LLM Inference via Sequential Monte Carlo grpo explained: group relative policy optimization for llm finetuning - cgft Stop comparing price per million tokens: the hidden LLM API costs · TensorZero Andrej Karpathy's LLM Wiki Is a Bad Idea GitHub - GG-QandV/mnemostroma: Offline RAM-first cognitive leer/coprocessor for AI agents and robotics. Solves "Context Abandonment" with 20-80ms latency using a dual-thread biomimetic memory architecture (ONNX + SQLite WAL). mempalace/agent at agent · skorotkiewicz/mempalace
GitHub - moeen-mahmud/remen: Remen turns thoughts into so...
moeen-mahmud · 2026-04-20 · via Hacker News - Newest: "LLM"

Remen turns thoughts into something you can return to.

A notes app for iOS: Zero-friction capture, search with natural language, and keep everything in sync with iCloud. AI runs on-device.

Backstory

I've been using Apple Notes and Google Keep for years. I'm a big fan of the simplicity and ease of use. But most of the time I forgot the keywords to search for an specific note. This project was started as an R&D to see if I can run an language model on device to make it simple and easier to capture my messy thoughts, voices, tasks, scans, and reminders and organize (because I'm a lazy ass, can't even want to add a title) them in a way that I can easily search for them later. I wanted to make it minimal and maximize the privacy and the performance. After using my own app for few weeks, I believe it would be a good fit for someone else who wants to have similar experience.

Features

  • Notes — Create and edit notes (task notes, reminders). Pin, archive, trash or delete permanently.
  • Voice — Record speech and save as a note (transcription).
  • Search — Keyword, semantic, and natural-language search (“what I wrote last week”).
  • AI — On-device LLM and embeddings for search and auto categorization and tagging (models downloaded in-app).
  • iCloud — Backup and sync notes; permanent deletes stay deleted across sync.

Core Tech Stack

AI Models Used

Prerequisites

  • Node.js 24+
  • Bun
  • iOS: Xcode, CocoaPods (for running on simulator or device)
  • For voice: device or simulator with speech recognition
  • For AI: download models in-app (first use)

Run locally

git clone https://github.com/moeen-mahmud/remen.git
cd remen
bun install

Note: You need to have development build for full features like camera and iCloud. Recommended not to use Expo Go for development.

iOS device / full features:

bun prebuild # bun prebuild:clean to clean the build
bun ios # optionally bun ios -d to run on physical device

Scripts

Command Description
bun ios Run on iOS (after prebuild)
bun lint Run ESLint
bun format Format with Prettier
bun type-check TypeScript check

Known Issues

Sometimes, the AI can hallucinate or take a while searching for notes, since it's a very (very again) small model and it's not trained on a lot of data. Besides, the OCR is not perfect and sometimes it can't extract the text from the image. AI processing is done in the background and it's not instant, for this reason, it'll drain a bit of battery and slow down the app (mostly in older devices).

  • Voice recognition is not working on iOS simulator
  • Camera is not working on iOS simulator
  • iCloud is not working on iOS simulator

License

AGPL-3.0. See LICENSE for details.

Author

Moeen Mahmudmoeen@osmynt.dev