惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

宝玉的分享
宝玉的分享
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
小众软件
小众软件
月光博客
月光博客
D
DataBreaches.Net
L
LangChain Blog
美团技术团队
S
SegmentFault 最新的问题
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 司徒正美
aimingoo的专栏
aimingoo的专栏
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Help Net Security
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog
I
InfoQ
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
腾讯CDC
Martin Fowler
Martin Fowler

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
LearnCurator - I built a YouTube tutorial search engine t...
vyomanshi go · 2026-05-18 · via DEV Community
Cover image for LearnCurator - I built a YouTube tutorial search engine that filters videos, ranks by AI‑analysed comments

vyomanshi gohel

LearnCurator – Stop wasting time on bad YouTube tutorials

I love learning from YouTube, but I kept running into the same problems:

  • Shorts mixed into search results (too short to teach anything)
  • Non‑English/Hindi videos (I don’t speak Tamil or Telugu)
  • Outdated tutorials (still showing 4‑year‑old videos even if better ones exist)
  • No way to tell quality until I’ve watched 5 minutes

So I built LearnCurator – a smart search engine for YouTube tutorials.

🔍 How it works

  1. Initial engagement score The app first computes a base score for each video using: -engagementRatio = likes / views (capped at 1.0) -recencyFactor based on publish age

In youtubeService.js: -score = engagementRatio * 0.7 + recencyFactor * 0.3 -So videos with high like/view ratio and recent publish date rank higher.

  1. Sentiment and final score After getting the top candidate videos, it enriches them with sentiment analysis and a popularity boost.

Final score formula: finalScore = engagementRatio * 0.3
recencyFactor * 0.1
sentimentScore * 0.3
viewBoost * 0.3

🤖 AI‑powered comment analysis

I integrated Gemini 1.5 Flash to analyse YouTube comments. The AI counts positive vs negative feedback and adds a sentiment score to each video. This helps surface content that the community actually loved – not just clicked on.

👍👎 User feedback

Every video card has 😍 😐 😞 buttons. Users can rate a tutorial and leave optional comments. I built a private admin dashboard where I can see real‑time feedback, average ratings, and trending complaints.

🌐 Live demo

👉 [https://learncurator.netlify.app/]

Try searching for “JavaScript promises” or “React hooks” – you’ll only get videos, no shorts, all longer than 5 minutes, ranked by quality.

🛠️ Tech stack

  • Frontend: HTML, CSS, vanilla JS (responsive, works on mobile)
  • Backend: Netlify Functions (Node.js)
  • APIs: YouTube Data API v3, Gemini 1.5 Flash
  • Database: Supabase (feedback storage + caching)
  • Deployment: Netlify (frontend + functions)

📊 What I learned

  • How to handle YouTube API quotas and caching
  • Using Gemini for sentiment analysis on real‑world data
  • Building a secure admin dashboard without a traditional backend
  • Deploying a full‑stack app entirely on Netlify’s free tier

🚀 What’s next

  • Add transcript relevance scoring (search inside videos)
  • Personalised recommendations based on past feedback
  • Dark mode (because every app needs it 😄)

I’d love your feedback. Try it out and let me know what you think!


If you're a learner tired of low‑quality tutorials, or a developer curious about AI + YouTube, give LearnCurator a spin.