HackerTrans
TopNewTrendsCommentsPastAskShowJobs

nvdnadj92

no profile record

comments

nvdnadj92
·4 เดือนที่ผ่านมา·discuss
One clear use case where MCP is better than anything else: design system documentation for an enterprise, or using a specific UI library. Daisy UI has an example: https://github.com/birdseyevue/daisyui-mcp

Context7 is a good MCP. If one were to point an agent to a docs website, the amount of tokens consumed would use up too much of the context window to be able to do a meaningfully complex task with it.

Figma MCP translates Figma to a language an agent understands.

Not everything can be a cli.
nvdnadj92
·5 เดือนที่ผ่านมา·discuss
Carta | Senior Software Engineer II | Waterloo / Toronto | ONSITE (Hybrid OK)

Apply Here:

- https://job-boards.greenhouse.io/carta/jobs/7544237003

- https://job-boards.greenhouse.io/carta/jobs/7504452003

⎯

Carta connects founders, investors, and limited partners through world-class software, purpose-built for everyone in venture capital, private equity and private credit.

Frontend Platform: You will own the core infrastructure and monorepo that underpins our entire frontend. Our mantra: "Create a development experience that people will miss when they leave."

Design Systems (Ink): You will build the foundational React components, tooling, and accessibility standards used by hundreds of Carta engineers to ship consistent UI. Check out our docs site at https://ink.carta.com

⎯

Tech: React, TypeScript, Rspack/Vite/Rush, Node.js.

We are looking for engineers who care deeply about developer experience, accessibility, and enabling great design at scale.
nvdnadj92
·8 เดือนที่ผ่านมา·discuss
Amazing! I was planning on making a tool just like this, will take yours for a spin!
nvdnadj92
·8 เดือนที่ผ่านมา·discuss
Building a set of experiments that explores LLMs visual understanding of your photos to learn about you, especially given the recent learnings from deepseek-OCR. Part of the experiments delve into storing the memories with GraphRAG so they can be effectively retrieved without losing too information.
nvdnadj92
·9 เดือนที่ผ่านมา·discuss
Laptop: Apple M2 Max, 32GB memory (2023)

Setup:

Terminal:

- Ghostty + Starship for modern terminal experience

- Homebrew to install system packages

IDE:

- Zed (can connect to local models via LM-Studio server)

- also experimenting with warp.dev

LLMs:

- LM-studio as open-source model playground

- GPT-OSS 20B

- QWEN3-Coder-30B-AEB-quantized-4bit

- Gemma3-12B

Other utilities:

- Rectangle.app (window tile manager)

- Wispr.flow - create voice notes

- Obsidian - track markdown notes
nvdnadj92
·9 เดือนที่ผ่านมา·discuss
After reading this post and the readme, I'm not convinced that this is solving a real, observed problem. You outline an example with the long-term coaching mentorship, but why or how is your solution preferable to telling Claude to maintain a set of notes and observations about you, similar to https://github.com/heyitsnoah/claudesidian?

the jazz metaphors do not help provide additional context.
nvdnadj92
·9 เดือนที่ผ่านมา·discuss
In case you need conversational data for the experiment you want to try, I developed an open-source cli tool [1] that create transcripts from voice chats on discord. Feel free to try it out!

[1] https://github.com/naveedn/audio-transcriber
nvdnadj92
·9 เดือนที่ผ่านมา·discuss
Agree with the first half of the article, but every example the author pointed out predates AI. What are examples of companies that have been founded in the past 3 years and prove the authors point that the data model is the definitive edge?
nvdnadj92
·9 เดือนที่ผ่านมา·discuss
Yes, but by a negligible margin. My program is designed for multi-track audio, which means I run this in parallel on multiple 3 hour recordings, and get results in 12 minutes.

You haven’t shared any architectural details. What model? What size? How can anyone be sure that what you’re building is truly offline?
nvdnadj92
·9 เดือนที่ผ่านมา·discuss
I vibecoded a similar app. Here’s the open source link, if folks want to build their own:

https://github.com/naveedn/audio-transcriber
nvdnadj92
·9 เดือนที่ผ่านมา·discuss
Ah lovely! I’d be happy to assist, create an issue on GitHub and we can go from there!
nvdnadj92
·9 เดือนที่ผ่านมา·discuss
I wanted to build my own speech-to-text transcription program [1] for Discord, similar to how zoom or google hangouts works. I built it so that I can record my group's DND sessions and build applications / tools for VTTs (Virtual TableTop gaming).

It can process a set of 3-hour audio files in ~20 mins.

I recorded a demo video of how it works here: https://www.youtube.com/watch?v=v0KZGyJARts&t=300s

[1] https://github.com/naveedn/audio-transcriber

I alluded to building this tool on a previous HN thread: https://news.ycombinator.com/item?id=45338694
nvdnadj92
·10 เดือนที่ผ่านมา·discuss
I would suggest 2 speaker-diarization libraries:

- https://huggingface.co/pyannote/speaker-diarization-3.1 - https://github.com/narcotic-sh/senko

I personally love senko since it can run in seconds, whereas py-annote took hours, but there is a 10% WER (word error rate) that is tough to get around.
nvdnadj92
·10 เดือนที่ผ่านมา·discuss
I'm working on the same project myself and was planning to write a blog post similar to the author's. However, I'll share some additional tips and tricks that really made a difference for me.

For preprocessing, I found it best to convert files to a 16kHz WAV format for optimal processing. I also add low-pass and high-pass filters to remove non-speech sounds. To avoid hallucinations, I run Silero VAD on the entire audio file to find timestamps where there's a speaker. A side note on this: Silero requires careful tuning to prevent audio segments from being chopped up and clipped. I also use a post-processing step to merge adjacent VAD chunks, which helps ensure cohesive Whisper recordings.

For the Whisper task, I run Whisper in small audio chunks that correspond to the VAD timestamps. Otherwise, it will hallucinate during silences and regurgitate the passed-in prompt. If you're on a Mac, use the whisper-mlx models from Hugging Face to speed up transcription. I ran a performance benchmark, and it made a 22x difference to use a model designed for the Apple Neural Engine.

For post-processing, I've found that running the generated SRT files through ChatGPT to identify and remove hallucination chunks has a better yield.
nvdnadj92
·2 ปีที่แล้ว·discuss
The best introductory resource I have found in my career was: "Distributed Systems for Fun and Profit" by Mixu. It's about 50 pages long, and is broken down quite well.

https://book.mixu.net/distsys/single-page.html