Feed aggregator

Show HN: SeeVideo A web-first workspace to benchmark Seedance 2.0 vs. Kling 3.0

Hacker News - Tue, 03/03/2026 - 6:15am

Hi HN,

Like many of you, I've been tracking the "Sora-level" video models coming out of ByteDance and Kuaishou. While the tech is impressive, the accessibility often sucks—many are locked behind mobile apps (like Higgsfield) or fragmented invite-only portals.

I built SeeVideo to provide a unified, web-first workspace specifically for Seedance 2.0 and Kling 3.0.

Why I built this:

The Web Gap: Many users are searching for "Higgsfield Online" only to find it's mobile-only. I wanted a desktop-class environment for professional prompt engineering.

Model Nuances: Seedance 2.0 (ByteDance) handles complex physics like liquid and hair differently than Kling. I’ve included a "Prompt Transformer" to help adapt generic prompts into the specific "dialects" these models prefer.

Side-by-Side Benchmarking: It’s hard to judge "cinematic quality" without a direct comparison. This tool lets you see how they stack up on the same prompt.

Technical Observations: From running ~1000 generations, Seedance 2.0 seems to have a higher "motion ceiling" but requires much more specific lighting descriptors compared to Kling's more "forgiving" default style.

I’d love to get the community's feedback on the UI and hear about your experience with the temporal consistency of these latest Chinese diffusion models.

Check it out here: https://seevideo.dance/

Comments URL: https://news.ycombinator.com/item?id=47230843

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: Cloudstic – Open-source CLI for encrypted, cloud-native backups

Hacker News - Tue, 03/03/2026 - 6:15am

Hi HN, I built Cloudstic (https://github.com/Cloudstic/cli), an open-source Go CLI that creates encrypted, deduplicated, point-in-time backups of your Google Drive, OneDrive, and local files.

The Problem Google Drive and OneDrive are sync tools, not backup tools. If you accidentally delete a folder, it’s gone everywhere. If ransomware encrypts your local files, the "mistake" propagates to the cloud immediately. There is no easy way to say: "Restore my entire Drive exactly as it looked on January 15th."

Why not just use Restic or Borg? I’m a huge fan of Restic, and Cloudstic’s content-addressed design is heavily inspired by it. However, tools built for local filesystems struggle with cloud semantics: 1. File Identity: In Google Drive, files have unique IDs and can have multiple parent folders. They don't have a single canonical path. 2. Efficiency: Scanning a 1TB Drive to find changes is slow and hits API rate limits. 3. Structure: Restic’s tree structure mirrors a directory hierarchy. Cloudstic uses a Merkle-HAMT (Hash Array Mapped Trie) keyed by file ID instead. This allows us to handle cloud-native metadata natively while maintaining structural sharing between snapshots.

Key Features * Encryption by Default: AES-256-GCM (via standard Go crypto libraries). You can recover via password or a BIP39 recovery phrase. Your storage provider (S3, B2, SFTP) sees only encrypted blobs. * Cross-Source Deduplication: We use FastCDC (Content-Defined Chunking). If the same 50MB PDF exists on your laptop and your Google Drive, it is stored exactly once in your backup repository. * Incremental via APIs: Instead of walking the whole tree, we use the Google Drive Changes API and OneDrive Delta API. It only fetches what has changed since your last snapshot. * Crash-Safe & Immutable: All objects in the repository are append-only. An interrupted backup or a network drop leaves zero corruption. * Performance: In my benchmarks (1GB dataset / 10k files), Cloudstic edges out Restic on initial local backups (1.2s vs 1.8s) and matches it on S3 uploads while maintaining a small, bounded memory footprint.

Quick Start Cloudstic is a single static binary. You can point it at local disk, S3/R2/MinIO, Backblaze B2, or SFTP.

brew install cloudstic/tap/cloudstic cloudstic init --backend s3 --bucket my-backups cloudstic backup --source gdrive cloudstic list-snapshots cloudstic restore --to ./recovery

I’m also working on a managed version (https://cloudstic.com) for those who want the same engine but don't want to manage their own crontabs or S3 buckets. The code is MIT Licensed. You can find the full storage spec and encryption design doc in the /docs folder of the repo. I’d love feedback on the HAMT implementation and the crypto design!

Comments URL: https://news.ycombinator.com/item?id=47230835

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: VibeWhisper – macOS voice-to-text with push-to-talk,cloud or 100% local

Hacker News - Tue, 03/03/2026 - 6:14am

Hey HN,

I built VibeWhisper because I was using Claude Code all day and the bottleneck wasn't thinking — it was typing. I tried an existing voice-to-text tool, loved the workflow, then saw the price: $20/month for a thin wrapper around OpenAI Whisper where 10 minutes of API usage costs $0.06. So I built my own in a weekend.

How it works: Hold a configurable global hotkey (default: Right Command), speak, release. Transcribed text appears in whatever text field has focus — VS Code, Terminal, Slack, browser, anything. No clipboard hijacking — it uses the macOS Accessibility API to inject text directly at the cursor position (same APIs screen readers use).

Two transcription engines:

Cloud: OpenAI Whisper API via your own key (~$0.006/min, fastest and most accurate)

Local: WhisperKit running on-device via CoreML/Apple Neural Engine. 10 models from Tiny (50 MB) to Large V3 Turbo (1.6 GB). Your voice never leaves your Mac. No API key needed, no internet needed. The app auto-recommends the best local model for your hardware.

Tech details for the curious:

Native Swift/SwiftUI, no Electron. Uses less RAM than a Chrome tab.

CGEvent taps for global keyboard hooks

Accessibility API for text injection

API key stored in macOS Keychain

Universal binary (arm64 + x86_64), macOS 14+

No backend, no accounts, no telemetry

Pricing: $19 one-time. No subscription. 15-minute free trial (actual recording time, not calendar time), no credit card, no signup. If you use cloud mode, you pay OpenAI directly at their rate. If you use local mode, it costs nothing after purchase.

I use it myself 2-3 hours a day. My main use case is dictating long prompts to AI coding assistants — I can speak a 400-word prompt in 45 seconds instead of typing it in 3-4 minutes. I also use it as a thinking tool: talking through problems out loud and capturing the output.

Website: https://vibewhisper.dev

Happy to answer any technical questions.

Comments URL: https://news.ycombinator.com/item?id=47230833

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: TubeNitro – long-press and vertical drag to dial YouTube speed(0.5-10×)

Hacker News - Tue, 03/03/2026 - 6:13am

I built TubeNitro because I found YouTube’s 2x long-press feature both useful and frustrating.

It’s great for quickly skimming, but 2x is often too fast for tutorials and too slow for boring segments. I wanted something fluid — more like scrubbing with a mouse — but for playback speed.

TubeNitro lets you long-press anywhere on the video and slide your mouse vertically: • Slide up → accelerate (up to 10x) • Slide down → slow down (down to 0.5x)

The speed changes continuously and shows a small overlay so you can see the exact rate.

Comments URL: https://news.ycombinator.com/item?id=47230824

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: AgentThreads – Stack Overflow for AI Agents

Hacker News - Tue, 03/03/2026 - 6:11am

I was listening to a recent YC podcast about "build something agents want", and while building apps with Claude Code, I kept running into trouble figuring out how APIs actually behave in practice. And knowing that most companies won't update their docs to be agent-friendly, it clicked — agents need their own Stack Overflow.

AI agents are consuming APIs at a scale and speed that human-written documentation can't keep up with. AgentThreads is a community directory where agents discover, submit, and review APIs — for agents, by agents.

The idea came from watching agents fail silently on undocumented edge cases, relying only on Google searches and bad docs. They need structured, community-maintained knowledge they can query at runtime.

A few things we built: - API directory with agent-written reviews and ratings - No UI, just REST — built for agents, not humans - Anti-spam verification (agents solve reasoning challenges, not CAPTCHAs) - Karma system so agents build reputation over time

Built mostly with Claude Code over a few weekends.

Early days — would love feedback from people building agents on what's missing.

Comments URL: https://news.ycombinator.com/item?id=47230810

Points: 1

# Comments: 0

Categories: Hacker News

The Retention Imperative: Why AI-Powered SaaS Companies Are Winning in 2026

Hacker News - Tue, 03/03/2026 - 6:06am

The SaaS growth playbook has changed: retention now beats acquisition 2.5x. AI-powered companies grow 27% faster and reach $100M ARR 1.7 years sooner.

Key shifts: - Median ARR growth: 35% (2021) → 15% (2026) - CAC payback: 18mo → 23mo; cost per $1 ARR: $1.24 → $2.08 - NRR drives growth: >106% = 2.5x faster than peers - Expansion ARR = 40% of total new (50%+ at scale)

AI transforms retention: 1. Product: predictive analytics, churn-preventing workflows 2. Operations: agents automate CRM, save reps 8-12 hrs/week

Data quality crisis: manual CRM misses 20-30% of critical events, distorting NRR.

Implementation: - Phase 1: clean CRM data, set baselines - Phase 2: email automation, lead scoring - Phase 3: CRM agents, automated NRR - Phase 4: scale personalization

Real examples (our portfolio): - xbeast.io: 3-5x engagement, 2-3x follower growth - nextblog.ai: 35.8% organic traffic growth - reddbot.ai: Reddit-sourced churn 25% lower - vidmachine.ai: 30% higher activation via video

Quantified: $5M→$10M takes 2.3 years (AI) vs 4.7 years (traditional) — a $75M valuation advantage at 15x multiple.

Pitfalls: start with problem not tool; fix data first; augment humans, don't replace; focus on NRR/GRR not vanity metrics.

---

Building AI tools for SaaS growth? Follow @0xWuki for trenches insights.

*Disclosure*: Our portfolio: xbeast.io, nextblog.ai, reddbot.ai, vidmachine.ai. Data from real customers & benchmarks.

Comments URL: https://news.ycombinator.com/item?id=47230780

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: A virtual machine in the Rust type system

Hacker News - Tue, 03/03/2026 - 6:05am

As a follow-up to a CTF challenge I wrote, I created a small proof-of-concept virtual machine embedded in the Rust type system. Trait resolution and in particular associated types are used to "execute" a program, represented as a type, to its final state. (The "execution" happens during Rust compilation.)

The VM architecture is simple: two 8-bit registers, a stack, a small number of instructions, including conditional control flow. However, other than patience and hitting the recursion limits, more useful/realistic architectures could be embedded as well.

I wrote a blog post that goes into more depth about how this was developed and how it all works: https://www.thenet.sk/blog0011

Comments URL: https://news.ycombinator.com/item?id=47230768

Points: 2

# Comments: 0

Categories: Hacker News

Show HN: The Content Repurposing Fallacy: AI Clips Underperform

Hacker News - Tue, 03/03/2026 - 6:02am

The Content Repurposing Fallacy: Why Your AI-Generated Clips Underperform (And How to Fix It)

Most teams think repurposing = cutting a long video into clips and posting everywhere. They're wrong. We tested this for 3 months with naive repurposing:

Platform Avg Views Engagement Cost/Engaging View TikTok 187 1.2% $2.84 Instagram Reels 243 1.8% $2.11 YouTube Shorts 156 0.9% $3.47 Twitter 89 0.7% $4.22 LinkedIn 201 2.1% $1.89

Time: 8h/week, $0 ad spend. Results were terrible.

Then we switched to strategic platform-native repurposing using AI automation. Results in 90 days:

- Multi-platform reach: 317% increase - Time spent: 12+ hours/week saved - Lead attribution: 28% uplift - Engagement rate: 300% increase - Leads: 675% increase - Cost per lead: 87% reduction

Our framework: "One Core, Many Faces"

1. Pillar Content Audit: Score content on evergreen, actionable, emotional, and platform fit. Only 7+ scores get full treatment.

2. Platform-Specific Angles: Each platform gets a unique angle that serves its audience's intent: - Hacker News: Technical deep-dive with code - Reddit: Discussion prompt with vulnerability - LinkedIn: Professional lesson with metrics - Twitter: Thread narrative with hook-train-CTA - Medium/Dev.to: How-to guide with examples - Newsletter: Curated digest with personal notes - Video: Visual demo or storytelling

3. AI-Assisted Transformation: Use AI to generate platform-specific outlines, maintain brand voice, and auto-assemble formats.

We built this stack with both commercial and open-source tools. Total cost: ~$357/month for commercial, or ~$50/month with DIY open-source (Whisper + GPT-4/Claude + FastAPI + Supabase).

Key insight: Quality of adaptation matters more than quantity. AI handled the heavy lifting; human time went into editing and community engagement.

Content repurposing is not cut-and-paste. It's platform-native translation.

If you're creating long-form content but it's not working harder for you across channels, the problem isn't lack of effort—it's lack of platform-native strategy.

What's your biggest content distribution challenge?

---

(Full writeup with detailed metrics and framework checklist available.)

Comments URL: https://news.ycombinator.com/item?id=47230750

Points: 1

# Comments: 0

Categories: Hacker News

The Ultimate Guide to Safely Disposing of Your Old Tech for Free

CNET Feed - Tue, 03/03/2026 - 6:01am
Don't let retro tech clutter your space. Here's how and where you can dispose of it without paying a dime.
Categories: CNET

Vulnerability in MS-Agent AI Framework Can Allow Full System Compromise

Security Week - Tue, 03/03/2026 - 5:43am

Improper input sanitization in the framework can be exploited through the Shell tool, allowing attackers to modify system files and steal data.

The post Vulnerability in MS-Agent AI Framework Can Allow Full System Compromise appeared first on SecurityWeek.

Categories: SecurityWeek

While cyber threat levels remain stable following the outbreak of war in the Middle East at the weekend, at-risk organisations in the UK should take steps to ward off potential reprisals from Iran-linked threat actors

Computer Weekly Feed - Tue, 03/03/2026 - 5:28am
While cyber threat levels remain stable following the outbreak of war in the Middle East at the weekend, at-risk organisations in the UK should take steps to ward off potential reprisals from Iran-linked threat actors
Categories: Computer Weekly

The use of tech and artificial intelligence has the potential to help delivery of education in the UK, so a committee of MPs has launched an inquiry into its opportunities and challenges

Computer Weekly Feed - Tue, 03/03/2026 - 5:28am
The use of tech and artificial intelligence has the potential to help delivery of education in the UK, so a committee of MPs has launched an inquiry into its opportunities and challenges
Categories: Computer Weekly

Pages