HackerTrans
TopNewTrendsCommentsPastAskShowJobs

nicohayes

no profile record

Submissions

Show HN: Nano Banana Pro – Real Physics, Real Lighting, 4K Quality in Seconds

nanobanana-pro.co
3 points·by nicohayes·vor 8 Monaten·3 comments

Show HN: Nano Banana 2 – Next-Generation AI Image Editor and Generator

nano-banana2.co
2 points·by nicohayes·vor 8 Monaten·0 comments

Show HN: Gempix2 – AI Image Editor and Generator Powered by Nano Banana 2

gempix-2.co
1 points·by nicohayes·vor 8 Monaten·0 comments

VORAvideo – All-in-One AI Video Generator (50% Launch Off)

voravideo.com
1 points·by nicohayes·vor 8 Monaten·2 comments

Show HN: I built an AI music generator

musicgeneratorai.io
2 points·by nicohayes·vor 9 Monaten·1 comments

comments

nicohayes
·vor 8 Monaten·discuss
Hi HN! I'm sharing VORAvideo, an AI video generation platform that provides unified access to multiple cutting-edge models including OpenAI Sora 2, Google Veo 3.1, Wan 2.5, and Kling 2.5.

Key features: • All models integrated in one platform (no API keys or waitlists) • Text-to-video, image-to-video, and speech-to-video generation • 3-10 minute render times with 4K output • Full commercial rights, no watermarks • 50% launch discount on all models

Built for content creators, marketers, and filmmakers who need professional-grade video generation without platform-hopping. Would love to hear your feedback!

Contact: [email protected]
nicohayes
·vor 9 Monaten·discuss
Next.js has definitely gotten heavier. What started as a simple SSR framework is now a full meta-framework with opinions about everything.

If you're looking for something lighter, give Astro a shot. The philosophy is refreshing - zero JS by default, only hydrate the interactive islands you actually need. Works great for content-heavy sites.

For full-stack apps with similar patterns to Next.js but less magic, Remix and SvelteKit are worth exploring too.

What's your main pain point with Next.js? Complexity, Vercel lock-in, build times, or something else?
nicohayes
·vor 9 Monaten·discuss
You're definitely not alone. Social media amplifies the "AI is everywhere" narrative, but in reality? Most people are still shipping code the old-fashioned way.

I'd estimate maybe 20% of devs have actually integrated AI into their daily workflow beyond occasional ChatGPT queries. The other 80% either tried it and bounced off the friction, or are waiting to see which tools actually stick.

Not using AI doesn't mean you're falling behind - it means you're avoiding cargo-culting. The real skill is knowing when it's worth the context-switching cost and when grep + your brain is faster.
nicohayes
·vor 9 Monaten·discuss
Are you trying to build AI applications or research AI itself? Completely different paths.

If it's the former - skip the math and start calling APIs. OpenAI, Anthropic, or open-source models via Replicate. Spend a week building something real: add a chatbot to your product, build a document Q&A system, whatever solves an actual problem.

Focus on prompt engineering, handling token limits, streaming responses, managing costs, error handling. These are the 80% of "AI development" for application builders.

The deep learning theory? You can learn that later if you actually need to fine-tune models or optimize inference. Most developers never do. Don't let the AI hype convince you that you need a PhD to ship useful AI features.
nicohayes
·vor 9 Monaten·discuss
Are you trying to build AI applications or research AI itself? Completely different paths.

If it's the former - skip the math and start calling APIs. OpenAI, Anthropic, or open-source models via Replicate. Spend a week building something real: add a chatbot to your product, build a document Q&A system, whatever solves an actual problem.

The deep learning theory? You can learn that later if you actually need to fine-tune models or optimize inference. Most developers never do. Don't let the AI hype convince you that you need a PhD to ship useful AI features.
nicohayes
·vor 9 Monaten·discuss


  I built an AI music generator that turns text prompts into full tracks.

  Features:
  • 50+ music styles (rock, jazz, electronic, classical, etc.)
  • Three modes: Inspiration, Custom, Instrumental
  • Outputs: WAV, MP3, MIDI
  • Commercial license included
  • Sign up and get 2 free generations to try

  Link: https://musicgeneratorai.io

  What kind of music would you create with this?
nicohayes
·vor 9 Monaten·discuss
Honestly, I think the biggest win is just having a solid test harness that can compare AST snapshots across versions. It’s not glamorous, but it catches regressions early and gives you confidence when you refactor the optimizer. Maybe throw in some fuzzing on the AST nodes and see what breaks – it’s surprisingly fun.
nicohayes
·vor 9 Monaten·discuss
Honestly, some of these AI‑generated snippets make me wonder if my cat could write better prompts. It’s like being a janitor for a mess that keeps reproducing itself, but hey, at least it keeps the job interesting.
nicohayes
·vor 9 Monaten·discuss
I feel for the team behind it; running a DNS service can't be cheap, especially when you're trying to stay green. Maybe a community‑funded model could keep it alive? Just a thought.
nicohayes
·vor 10 Monaten·discuss
This is a classic knowledge distillation pattern in ML - the "teacher" models (AlphaFold, ESMFold) with complex MSA-based architectures generate training data for a simpler "student" model. What s particularly interesting is how well the simplified architecture generalizes despite losing the evolutionary signal from MSAs. The performance suggests that much of the MSA complexity might be capturing patterns that can be learned more directly from structure data. This could be huge for real-time applications where MSA computation is the bottleneck. Has anyone benchmarked inference speed comparisons with the original AlphaFold pipeline?
nicohayes
·vor 10 Monaten·discuss
This is a classic knowledge distillation pattern in ML - the "teacher" models (AlphaFold, ESMFold) with complex MSA-based architectures generate training data for a simpler "student" model. What's particularly interesting is how well the simplified architecture generalizes despite losing the evolutionary signal from MSAs. The performance suggests that much of the MSA complexity might be capturing patterns that can be learned more directly from structure data. This could be huge for real-time applications where MSA computation is the bottleneck. Has anyone benchmarked inference speed comparisons with the original AlphaFold pipeline?
nicohayes
·vor 10 Monaten·discuss
Could you clarify whether the 2B active parameter concept refers to per-token inference and how this scales with context length? Specifically how MoE affects activation during inference and any practical implications for latency.
nicohayes
·vor 10 Monaten·discuss
The MoE architecture choice here is particularly interesting - the ability to keep only 2B parameters active while maintaining 8B model performance is a game-changer for edge deployment. I've been deploying vision models in production environments where latency is critical, and this sparse activation approach could solve the inference cost problem that's been limiting adoption of larger VLMs. The chart understanding capabilities mentioned look promising for automated document analysis workflows. Has anyone tested the model's consistency across different image qualities or lighting conditions? That's often where smaller models struggle compared to frontier ones.