@beknabdik Running everything sequentially right now, so streaming TTS while the LLM is generating should help a lot. Will also try Kokoro and switch to whisper large-v3-turbo.
Appreciate it - time to break the pipeline.
I'm running a janky little voice stack:
FFmpeg • Whisper • Piper • Fmedia
😅 It works… just not in a hurry. There’s a noticeable pause where it rethinks its life choices before replying. Still—speech → text → speech loop is alive, so I’ll take it.
Any suggestions ?
Update on chromectl tool
Improvement 🎚️
Screenshot command, can also capture full-page screenshots now.
New Feature 🔥
Added -s flag to save DOM as Markdown Text HTML & PDF file on current or defined directory.
#Developers#coding#opensource#tool
@Aayush13138763 Thanks! It’s been a fun build so far. Still figuring things out, but learning a lot. I’d be happy to share and swap ideas, will reach out 👍
I was looking for the simplest way to control my active Chrome session straight from the CLI.
At first I tried using Playwright/Puppeteer! great tools, but honestly a bit heavy for what I needed. So I decided to vibe-code my own tiny tool instead (~20KB)
#Coding#developer
Just added MySQL support to my HTML templating tool <Bro />👀
Runs SQL inside HTML, no backend needed.
Still building it out, will open-source soon.
Would love thoughts from devs who enjoy building their own tools ✌️
#devlog#brocode#webdev#buildyourown
More progress on Bro Code — my tiny HTML engine:
🗂️Auto-generates & refreshes robots.txt & sitemap.xml every 24h
📁Can now load & parse .json and .csv using readFile
🔁 Introduced forEach & map loops
⚡Reduced load time drastically, from >900ms to 16ms
#buildinpublic#golang
Bro Code just got a little smarter!
- Dynamic fetch URLs using vars from query/env/local
- Multi-line <bro /> support with mixed HTML inside
- Toggle SHOW_ERRORS to debug directly in UI
Still early, still fun - but it’s coming together 👨💻
Peek the magic 👇
#golang#webdev#html
Built a tiny HTML engine in Go called Bro Code 💡
No frameworks. Just plain .html + <bro /> for dynamic content.
.env, API fetch, includes, query params — all native.
Still cooking 👨🍳
Peek below 👇
#buildinpublic#golang#webdev#opensource#html5
To enhance user experience, I used a PHP #script to ensure invite links open in the default browser instead of Instagram/threads built-in one.
Thanks to Mansour Alnasser for the helpful Stack Overflow tip!
https://t.co/T9Pg673oAi
#Tips#CodeNewbie
I started working on Pix Lab - Image Resizer this weekend, and It's ready enough to share with you all.
Here I'm using system's #GPU to enhance image resizing performance.
Try it here https://t.co/m64EhqfZKR
Also it's #OpenSource, so feel free to explore, contribute, or fork
🧲 If-Else Statements in Go
Go provides straightforward syntax for if-else statements. Below are 3 basic examples of how to use them.
- Simple condition
- Simplified FizzBuzz implementation
- Using an if-else statement inside a variable declaration.
#golang#learning