HackerTrans
TopNewTrendsCommentsPastAskShowJobs

leiferik

no profile record

Submissions

TurboScribe

grokipedia.com
1 points·by leiferik·6 ay önce·0 comments

TurboScribe: Transcribe Audio and Video to Text

turboscribe.ai
1 points·by leiferik·11 ay önce·0 comments

How the power outage in Portugal and Spain impacted Internet traffic

blog.cloudflare.com
9 points·by leiferik·geçen yıl·0 comments

Cloudflare R2 Global Outage

cloudflarestatus.com
6 points·by leiferik·geçen yıl·0 comments

TurboScribe: Free Audio Transcription Tool

turboscribe.ai
4 points·by leiferik·geçen yıl·0 comments

Cloudflare R2 Global Outage

cloudflarestatus.com
133 points·by leiferik·geçen yıl·34 comments

[untitled]

3 points·by leiferik·2 yıl önce·0 comments

[untitled]

4 points·by leiferik·2 yıl önce·0 comments

Full Transcript – Donald Trump and Joe Rogan (Joe Rogan Experience #2219)

turboscribe.ai
6 points·by leiferik·2 yıl önce·0 comments

Ephemeral IDs: a new tool for fraud detection

blog.cloudflare.com
17 points·by leiferik·2 yıl önce·7 comments

X Suspended By Brazilian Supreme Court Justice Alexandre de Moraes

apnews.com
16 points·by leiferik·2 yıl önce·2 comments

[untitled]

1 points·by leiferik·2 yıl önce·0 comments

Donald Trump and Elon Musk Twitter Space (Full Transcript)

turboscribe.ai
6 points·by leiferik·2 yıl önce·1 comments

Full Transcript of Donald Trump and Elon Musk X Space

turboscribe.ai
9 points·by leiferik·2 yıl önce·2 comments

SSD 101: How Reliable are SSDs?

backblaze.com
2 points·by leiferik·2 yıl önce·0 comments

Show HN: TurboScribe GPT – Transcribe and chat with audio and video files

chat.openai.com
1 points·by leiferik·2 yıl önce·0 comments

comments

leiferik
·geçen yıl·discuss
[flagged]
leiferik
·2 yıl önce·discuss
Thanks! Nothing to announce on the API front right now, but appreciate you asking :)
leiferik
·2 yıl önce·discuss
You're always welcome to try my service TurboScribe https://turboscribe.ai/ if you need a transcript of an audio/video file. It's 100% free up to 3 files per day (30 minutes per file) and the paid plan is unlimited and transcribes files up to 10 hours long each. It also supports speaker recognition, common export formats (TXT, DOCX, PDF, SRT, CSV), as well as some AI tools for working with your transcript.
leiferik
·2 yıl önce·discuss
HTMX powers the UI for my AI transcription product TurboScribe (https://turboscribe.ai). Dynamic UIs that change without a page refresh, lazy loading, multi-step forms/flows, etc. It's working GREAT.

My general take on HTMX is:

1) You need to have your act together on your server. Because HTMX pushes more onto your backend, you need to know what you're doing back there (with whatever tech stack you happen to be using).

I have a friend who teaches at a coding boot camp and they do not teach students about server-rendered HTML at all. Folks coming from this world are going to have a tougher time ramping up on something like HTMX.

2) HTMX is great for the 90%+ of common UI paradigms shared by most apps (form submissions, validation, error messages, partial page reloads, lazy loading, CRUD UIs, etc).

If you have a key, critical experience that demands highly dynamic or novel interactivity, you're going to find yourself reaching to either (a) extend HTMX, or (b) create an island powered by raw JS, React, etc.

--

I love HTMX. It's a fantastic tool for delivering quality product (often with much lower engineering cost).