frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Remove AI Watermarks

https://github.com/wiltodelta/remove-ai-watermarks
1•janalsncm•16s ago•0 comments

VanillaSPA – Web Components and SQLite OPFS and Event Bus, No Virtual DOM

https://vanillaspa.github.io/vanillaspa
1•Jahrome•19s ago•1 comments

Show HN: Remindy – A Spotlight-style reminder app for Mac

1•fayecat910•21s ago•0 comments

Language Models Can Autonomously Hack and Self-Replicate

https://palisaderesearch.org/blog/self-replication
1•cassianoleal•1m ago•0 comments

Censorship Request from Coin Insider (2024)

https://support.bitchute.com/blog/bitchute-receives-censorship-request-from-coin-insider
1•aand16•2m ago•0 comments

RemotePower – Self-hosted Linux fleet manager (no database, pure Python)

https://github.com/tyxak/remotepower
1•tyxak•3m ago•1 comments

Show HN: Trophy UI, Open-source gamification components built on Shadcn

https://ui.trophy.so
1•cbrinicombe•5m ago•0 comments

Show HN: AgentWing – make AI agents complete tasks faster

1•12ziyad•5m ago•0 comments

Google Antigravity Python SDK

https://github.com/google-antigravity/antigravity-sdk-python
1•devhouse•5m ago•0 comments

Detecting Relaxed Memory Concurrency Bugs in C and C++ Compilers

https://lukegeeson.com/publications/2026-04-28-Thesis/
2•matt_d•12m ago•0 comments

IRS Must Drop Audits of Trump and Family

https://www.nytimes.com/2026/05/19/us/politics/trump-irs-doj-lawsuit-audit.html
6•duxup•14m ago•1 comments

The downgrading semantics of memory safety (Extended version)

https://arxiv.org/abs/2507.11282
2•matt_d•17m ago•0 comments

Self-Improving Reward Models

https://www.canvas.inc/research/reward-models
2•essamsleiman•19m ago•0 comments

AI and the Practical Scientist

https://scholarlyfutures.substack.com/p/ai-and-the-practical-scientist
1•JohnHammersley•20m ago•0 comments

React Performance Isn't About UseMemo – It's About Render Boundaries

https://reactdevelopment.substack.com/p/react-performance-isnt-about-usememo
1•javatuts•22m ago•0 comments

AgentPTY: Script Claude Code’s interactive CLI through a persistent PTY

https://github.com/quietforgelabs/AgentPTY
1•quietforgelabs•23m ago•1 comments

Agent First Language by Vercel

https://github.com/vercel-labs/zerolang
1•hmokiguess•24m ago•0 comments

Valkey 9.1 trims memory 10% and pulls search into the core

https://thenewstack.io/valkey-91-cuts-memory/
1•CrankyBear•25m ago•0 comments

Anthropic is killing stainless, so we built our own SDK/MCP generator

2•iiviie•28m ago•0 comments

The $50M Rocket Deal Fueled by Trump's Hypersonic Dreams

https://www.wsj.com/tech/a-50-million-rocket-deal-fueled-by-trumps-hypersonic-dreams-4c14789e
1•JumpCrisscross•28m ago•0 comments

Show HN: I built a native macOS Markdown viewer 100% with AI coding agents

https://github.com/rajatarya/mdviewer
2•rajatarya•33m ago•0 comments

Cognitive Drift and Co-Cognition: How AI Reshapes Human Thought [pdf]

https://ia801602.us.archive.org/12/items/cognitive-drift-and-co-cognition-canonical-overview-faq-...
1•scaledsystems•35m ago•1 comments

Netlify Is Having an Outage

https://www.netlifystatus.com
2•flycatcha•35m ago•0 comments

Ambrose to Theodosius I 390

https://sourcebooks.web.fordham.edu/source/ambrose-let51.asp
1•highfrequency•36m ago•0 comments

Study this tool, kids. Just don't you dare open it

https://www.washingtonpost.com/opinions/2026/05/19/minimum-age-rules-ai-are-bad-policy/
1•IMGROOT2•38m ago•1 comments

I carried my stories From Python to Node and found Apple's hidden city of Metal

https://github.com/jahbini/pipeline-demo
1•GeemoBeamo•40m ago•1 comments

Solo Dev Kills YouTube Ask

https://www.neotube.ai/
18•walkervin•44m ago•2 comments

Meta Goes Big on the Bayou

https://www.bloomberg.com/features/2026-meta-facebook-ai-data-center-louisiana/
1•littlexsparkee•47m ago•1 comments

1k-year-old dingo bones show that it was injured, cared for, and ritually buried

https://www.popsci.com/environment/dingo-bones-ritual-burial-australia/
2•gmays•49m ago•0 comments

OhMyAdmin – PhpMyAdmin Reimagined with Go, React, and Monaco Editor

https://github.com/aranajhonny/ohmyadmin
3•akatsutki•50m ago•0 comments
Open in hackernews

Show HN: YT NoteTaker – Simple Manual Note Taking on YouTube Videos

https://kavinaidoo.github.io/ytnt/
2•kavinaidoo•1y ago
Hi HN,

YTNT is a simple web-app for manually typing notes while watching a YouTube video. Simultaneously type and control playback with keyboard shortcuts. Export to Word (.docx) when you're done.

I'm seeking general feedback.

NOTES:

- The only way to "save" (for now) is to export to a Word .docx

- Speech-to-text only works in Chrome

GitHub: https://github.com/kavinaidoo/ytnt

Blog Post: http://archive.today/FRqwp

Thanks, Kavi

Comments

Leftium•1y ago
I forked oTranscribe and added some features to solve a similar problem.

- demo: https://otranscribe.netlify.app/?vsl=definedefine

- source code: https://github.com/Leftium/oTranscribe

- CLI tool to generate OTR (oTranscribe) files from (YouTube) SBV/TTML files: https://github.com/Leftium/otrgen

In my case, I wanted to start with the (auto-generated) YouTube transcript and get clickable timestamps. This makes it much faster to search through the content of a video: I can read/search much faster than watching a video, even on 2X speed.

I could also add my own notes to the transcript.

If you add support for loading transcripts like this, it could work cross-browser without the microphone/speech-to-text.

kavinaidoo•1y ago
Aha, starting with the YouTube transcript is a great idea. I wanted to start with it but I couldn't find a way to get it from the YouTube iFrame API so I went with the Web Speech API to listen and convert.

Forgive me for the confusion, the demo link implies that the transcript is loaded from the video but I see in the code that there's a pre-existing "/txt/definedefine.md" that is loaded. How are these SBV/TTML files downloaded from YouTube in the first place? I assume that it is a separate process? I see you are then using otrgen to presumably convert these so they can be used by oTranscribe.

If I could load the transcripts dynamically when loading the YouTube video that would be a great feature.

Leftium•1y ago
The demo simply demonstrates how I used my tool. It requires some manual set up:

- TTML files are downloaded via CLI: `yt-dlp.exe --skip-download --write-auto-sub --sub-format ttml`

- TTML files are converted to the OTR .MD format via my CLI tool

- The MD file can be dragged & dropped onto the web app.

---

I think it is possible to download SBV/TTML files, but the download must be done from the server due to CORS restrictions.

My app didn't go this far due to limitations of the (serverless) platform it is hosted on. Also it was faster to just do the steps manually vs. developing a server that does it.

I have seen many services that download the transcript. Here are a few:

- https://youtubetranscript.com

- https://kagi.com/summarizer

- https://www.tubepen.com

However, note YouTube may block your server if you download too many transcripts: https://kagifeedback.org/d/4451-universal-summarizer-cant-fi...

kavinaidoo•1y ago
I think I'll just have to stick with my current method for now, looks like the only way to get it done with static hosting.
Leftium•1y ago
I'm planning a beat-aware YouTube player. Unfortunately, it is not possible to access the audio stream data across the YouTube embed. (For beat-detection analysis.)

I considered using the microphone like this. It's nice to see it works. Although there seems to be a time limit to how long the microphone can record?

My plan was to download video (youtube-dlp), then make a CLI tool that analyzes and uploads the beat-detection data. An advantage of the CLI tool is it can complete the analysis faster than playing the video at 1X.

kavinaidoo•1y ago
Yeah, I also wanted to "pipe" the audio directly to the Web Speech API but had to resort to using the mic. Another feature I wanted to add was to have a keyboard shortcut insert a screenshot of the video into the notes. Handy for diagrams etc but I hit some roadblocks there too and the workarounds were getting crazy.

Regarding the time-limit, I'm entirely accessing the audio stream using the Web Speech API and it "decides" (usually when there's a sufficient pause) when to finalize a recognition result. It was also firing a "recognition.onend" event after a certain amount of time (some old details here: https://stackoverflow.com/questions/38213580/chromes-webkits...) so I have a workaround where if the user did not turn off speech-to-text, it is immediately restarted. You'll see console warnings "userStopped == false - trying to restart" when this happens.

I assume you'll have no such issues because you'll be handling the "raw" audio data and not working through this API. Also, I've noticed that when using the Web Speech API on Safari, it does not "hear" what the tab is playing. It only hears external audio. I'm not sure whether this will be an issue for you but for me it means my app is Chrome only (suboptimal). Forgive me for my naïveté in this arena, It's the first time I'm using any browser audio API.

Would your tool run on a server and work with a frontend for YT link ingestion or will you just use it yourself from the cli?

Leftium•1y ago
Ideally, my tool would run on the server. Especially if I wanted to monetize the service. (However I think there may be legal issues that are larger than the technical ones...)

However it's just a small hobby project. So realistically I think this is how it will work:

- If user tries to load a video without beat data yet, instructions are shown for how to add the beat data. The instructions will be running CLI command like `npx upload-beat-data [YOUTUBE-URL]`

- The CLI tool will download the audio, then upload the beat data to my site.

- The site will also log which videos got a lot of requests, but are missing beat data. So I can manually add the beat data myself.