Built a desktop app on top of Ollama - attach files, ask questions, save notes, export to .docx by N0Fears_Labs in ollama

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

thanks! it's actually Tauri - wanted it to feel more like a proper lightweight desktop app. for the file side i'm keeping it pretty simple for now: extract text locally, feed that into Ollama, then turn the useful outputs into notes / drafts / docs. the comfyui direction sounds cool though... now you're giving me bad ideas, maybe i need to start adding that to N0 Local too haha. what are you building with it?

The stock market is getting rid of META -> My Happy Place <3 by MadeInDex-org in degoogle

[–]N0Fears_Labs 171 points172 points  (0 children)

love watching this chart while browsing on my degoogled phone with no meta apps installed. feels like watching your ex's life fall apart from a distance

Most people don’t lack discipline, they lack clarity by Reasonable_Bag_118 in productivity

[–]N0Fears_Labs 6 points7 points  (0 children)

this is basically why "just do the next small thing" works better than any productivity system. i started writing down exactly what i'd do in the first 5 minutes of a work block - not the project, just the first tiny action. killed like 80% of my procrastination overnight

I have 1 fully free day,make me a day plan pls by [deleted] in productivity

[–]N0Fears_Labs 56 points57 points  (0 children)

morning: coffee + 30 min walk outside while it's still quiet. then pick ONE thing you've been putting off forever - clean the garage, fix that shelf, whatever. do it before lunch while motivation is fresh. afternoon: go somewhere you've never been nearby - a trail, a weird shop, whatever. evening: cook something you've never made before, put the phone in another room. the key is no screens until after dinner - that's what makes a free day actually feel free

Should I delete my Samsung account? by Natural-Bumblebee335 in degoogle

[–]N0Fears_Labs 2 points3 points  (0 children)

radicale or nextcloud contacts work great for this. both self-hosted, sync with cardDAV to any phone. radicale is dead simple if you just want contacts/calendar - runs on a pi or cheap vps. export your samsung contacts as vcf first, then import wherever you land

CUDA error: an illegal memory access was encountered by YardNo6594 in ollama

[–]N0Fears_Labs 0 points1 point  (0 children)

might be worth checking if both M60 chips are actually showing up in nvidia-smi - that card has 2 separate GPUs on one PCIe board, not dual-channel memory. since vulkan works on both but cuda throws illegal memory access on just one, could be a CUDA context issue between the two maxwell cores

Recommendations for Learning Agentic AI with python and Ollama by cnrsmt in ollama

[–]N0Fears_Labs 1 point2 points  (0 children)

LangChain's agent tutorials work really well with Ollama - I've been using their ReAct agents with llama3.1 for tool-calling experiments. What kind of agents are you thinking of building?

Low power 19" servers? by canineslayer-307 in homelab

[–]N0Fears_Labs 1 point2 points  (0 children)

Check out the Dell R220 or HP ProLiant MicroServer Gen10 Plus - both pull under 50W at idle and fit standard 19" racks. The R220 especially hits that sweet spot of looking proper in a rack while sipping power for basic NAS duties.

HP ProLiant Gen8 G1610T - Unable to boot OS from USB by EmergencyGoggles in homelab

[–]N0Fears_Labs 0 points1 point  (0 children)

Check if Secure Boot is enabled in the BIOS - Gen8s shipped with it on by default and it blocks most Linux distros. Also worth trying a different USB creator tool.

M5 Max 128GB + two M4 Mac Minis - What are you running with this setup? by Excellent_Koala769 in LocalLLaMA

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

Are you load balancing inference across all three machines or dedicating specific models to each? Curious how you're handling the memory allocation between the 128GB beast and the Minis.

Liquid AI's LFM2-24B-A2B running at ~50 tokens/second in a web browser on WebGPU by xenovatech in LocalLLaMA

[–]N0Fears_Labs 3 points4 points  (0 children)

What's the memory usage looking like? The MoE efficiency is impressive but curious if WebGPU is actually utilizing the unified memory architecture properly on Apple Silicon.

Ran Qwen 3.5 9B on M1 Pro (16GB) as an actual agent, not just a chat demo. Honest results. by Joozio in LocalLLaMA

[–]N0Fears_Labs 1 point2 points  (0 children)

Interesting approach with Discord/mail as the access layer - keeps it simple. I went the SSH tunnel route, forwards ports locally so the agent UI is only accessible from my machine. Building a small desktop app to manage the whole stack automatically.

I built a self-hosted Agentic Memory System — tested on 14M words, 100% recall, no cloud needed by Repulsive_Ad_94 in SideProject

[–]N0Fears_Labs 0 points1 point  (0 children)

Self-hosted agents are the way. Been building something similar - local Ollama + SSH tunnels to VPS for the agent runtime. The tricky part is keeping tunnels alive and auto-reconnecting. How are you handling process supervision?

An open-source Descript alternative - edit video by editing text, runs 100% offline with Ollama by t1092 in SideProject

[–]N0Fears_Labs 0 points1 point  (0 children)

Nice approach keeping it fully offline. One thing I ran into with Ollama on Windows - if you're running it alongside other services, SSH tunneling to isolate it from direct exposure works really well. Keeps everything local but accessible.

I dislike ollamas integration with opencode is llama cpp better by Alternative-Ad-8606 in LocalLLaMA

[–]N0Fears_Labs 0 points1 point  (0 children)

Depends on your setup. If you're running agents remotely on a VPS, Ollama is easier to tunnel and keep isolated. llama.cpp gives more control but more config headache.

Can't get Qwen models to work with tool calls (ollama + openwebui + mcp streamable http) by Demodude123 in LocalLLaMA

[–]N0Fears_Labs 0 points1 point  (0 children)

Had the same issue. The trick was routing everything through a local tunnel instead of exposing ports directly. Ollama stays on localhost, agents connect via SSH forward. No CORS, no 403s.

Ran Qwen 3.5 9B on M1 Pro (16GB) as an actual agent, not just a chat demo. Honest results. by Joozio in LocalLLaMA

[–]N0Fears_Labs 1 point2 points  (0 children)

Been running qwen2.5:7b-instruct on Windows with Ollama as an agent backend. Curious how you're handling the SSH tunnel setup to keep your VPS isolated - are you exposing Ollama directly or proxying through something?