Hot take: GitHub is missing its most obvious feature. Steam has had user reviews for over a decade. You can see what real players think before you download a game. But open source? You're on your own. You find a repo with 2k stars. Looks promising. Then you spend half a day discovering: → The docs are outdated → The maintainer ghosted 8 months ago → There's a subtle bug that 47 issues reference but nobody's fixed Stars don't tell you any of this. Stars are bookmarks disguised as endorsements. What if GitHub had Steam-style reviews? Think about it: → "Great library, but expect breaking changes every minor release" ⭐⭐⭐ → "Rock solid. Running this in production for 3 years, zero issues" ⭐⭐⭐⭐⭐ → "Amazing concept, mass grave of PRs. Fork it." ⭐⭐ And here's the thing Steam gets really right: every review is timestamped. You can instantly tell if the glowing 5-star praise is from 2019 or last week. A repo that was great two years ago might be abandonware today. Dates turn reviews from static noise into a living timeline. Real context from real users. Not just a star count that could mean "I'll read this later" or "this saved my company." Open source deserves better signal than a single binary button. Who's building this? 🚀 Learn how to build Open Source repositories and more only on Quro AI → https://lnkd.in/gaR45DJf #OpenSource #GitHub #SoftwareDevelopment #DevCommunity #TechInnovation
GitHub Needs Steam-Style Reviews for Open Source Repositories
More Relevant Posts
-
Stop picking libraries blindly. Start vibe checking them. Every developer has been burned by a dependency that looked great on paper: → 50k GitHub stars → Slick README → "Used by thousands of companies" Then 6 months later: ❌ Last commit: 8 months ago ❌ 400+ open issues, 3 maintainers left ❌ Breaking changes with no migration guide ❌ Bus factor: 1 Stars don't tell you if a project is alive. Downloads don't tell you if it's healthy. That's why I built Vibe Check — a free tool that gives every GitHub repo a social profile with real signals: 🏥 Health Score — 6 metrics (activity, community, bus factor, issue health, docs quality, commit velocity) rolled into a letter grade from A+ to F 📡 Live Signals — recent GitHub events, npm/PyPI download trends, Hacker News mentions — all in real time 🎁 Repo Wrapped — Spotify Wrapped but for repos. Commits this year, longest streak, top contributor, busiest day 🔍 Dependency Scanner — paste your package.json or requirements.txt, get a vibe check on every dependency at once. Find the weak links before they break your build. 📊 Trending Leaderboard — GitHub Trending repos ranked by vibe score, not just stars How it works: Go to bubbling.dev/vibe Paste any GitHub URL Get the full picture in seconds No login. No paywall. Just signal. The next time someone asks "should we use this repo?" — don't guess. Vibe check it. 🔗 bubbling.dev/vibe What library burned you the hardest? Drop it in the comments and I'll vibe check it live. 👇 #OpenSource #GitHub #DeveloperTools #SoftwareEngineering #TechDebt #Dependencies #WebDevelopment #DevTools
To view or add a comment, sign in
-
-
Canonical's recent investment in the Rust Foundation underscores the growing importance of Rust in developing resilient systems, especially on Ubuntu. I found it interesting that this move not only supports the long-term health of Rust but also enhances its ecosystem significantly. How do you see Rust evolving in the open-source landscape?
To view or add a comment, sign in
-
GitHub stars aren’t always what they seem. We treat them like proof of quality. Recruiters notice them. Investors track them. But the signal is getting noisy. ☉ A recent study flagged millions of fake stars across thousands of repos. And yes—many were in AI/LLM projects. That changes how I look at metrics. ☞ Stars can be bought (cheaply) ☞ Some projects inflate traction to look “validated” ☞ Even funding decisions can be influenced by these numbers ◕ The problem isn’t GitHub. ◕ It’s how blindly we trust surface-level signals. As developers, we need better filters. ➜ Check the fork-to-star ratio (organic ≈ 0.10–0.24) ➜ Look at contributor activity, not just stars ➜ Read the code, issues, and discussions Because real projects show depth—not just attention. ✧→ Less hype-driven decisions ↗ More informed judgment At the end of the day, stars don’t build software—developers do. Do you still trust GitHub stars when evaluating a project—or have you changed how you judge quality?
To view or add a comment, sign in
-
-
If you're new to open source and don't know where to start, this is the repo I came across when I was in the same spot. first-contributions walks you through the whole workflow by actually doing it fork, clone, branch, commit, pull request. No complex code, just the real process hands-on. I found it, followed the steps, and made my first contribution. 👉 https://lnkd.in/d2FtTHJY #OpenSource #GitHub #FirstContribution #Git #TechCommunity
To view or add a comment, sign in
-
Over 80% of GitHub repositories have no license. Most developers don't realize what that means. Here's the uncomfortable truth: if code on GitHub has no license, you cannot legally use it. Not copy it. Not modify it. Not include it in your project. Default copyright law applies, and that means "all rights reserved." Public does not mean open source. This is one of the biggest blind spots in software development. Developers fork repos, copy snippets, and import dependencies every day assuming that if it's on GitHub, it's fair game. It's not. And it gets worse: - 50% of repositories don't fully declare all licenses found in their code - 10% of those have permissive vs copyleft mismatches hiding in dependencies - GitHub's Terms of Service let you view and fork, but that's it, no permission to use the code in your projects - Over 50% of NuGet packages have unclassifiable licenses The licensing landscape is also shifting fast. The industry moved from copyleft-dominant to permissive-dominant between 2014-2017. Permissive licenses peaked at 82% in 2022 but have dropped to 73% in 2025, with early signs that the pendulum may swing back toward copyleft. Meanwhile, major projects like Redis, HashiCorp, and Elasticsearch switched to source-available licenses, then some reversed course back to AGPL. The rules keep changing. What every developer should do: 1. Always add a license to your repos. Takes 30 seconds at choosealicense.com 2. Audit your dependencies for license conflicts before shipping 3. Never assume public code is free to use 4. If you're a company, get your legal team involved in your open source policy Open source became so successful that we forgot what made it work: the licenses. Sources: https://lnkd.in/eqmfdpbW https://lnkd.in/enb6Qyxy https://lnkd.in/eCjHPnWh #OpenSource #GitHub #SoftwareLicensing #DeveloperTools #SoftwareEngineering #LegalTech
To view or add a comment, sign in
-
-
🚀 I built a Chrome Extension that automates something I was doing manually every single day. Introducing LeetPush — a tool that pushes your LeetCode solutions directly to GitHub with a single click. Here's the problem I kept running into: → Solve a problem on LeetCode ✅ → Copy the code manually 😐 → Open GitHub, create a file, name it, write a commit message 😩 → Repeat. Every. Day. So I built the fix myself. What LeetPush does: ✦ One-click push — straight from LeetCode to your GitHub repo ✦ Auto-generates commit messages like "Add: 1. Two Sum [Easy]" ✦ Organizes solutions into folders by topic or difficulty ✦ Detects duplicates — overwrite or save as v2 ✦ Undo your last commit right from the popup ✦ Supports multiple repos (e.g. leetcode-easy vs leetcode-hard) ✦ Dark/light mode, 100% local storage — no third-party servers Your GitHub profile becomes your DSA portfolio — automatically. Watch the demo 👇🏼 (screen recording below) —————————————————— 🧪 Want to try it right now? Here's how: 1️⃣ Clone or download the repo from GitHub --> https://lnkd.in/gWXMeqHJ 2️⃣ Go to chrome://extensions → enable Developer Mode → Load Unpacked → select the folder 3️⃣ Create a GitHub PAT: Settings → Developer Settings → Tokens (classic) → check the "repo" scope 4️⃣ Open LeetPush, paste your token + repo name in Settings 5️⃣ Solve any LeetCode problem → click Push → done ✅ Takes less than 3 minutes to set up. —————————————————— Drop a ⭐ or comment if you'd find this useful — feedback means a lot at this stage. Chrome Web Store listing coming soon. Repo link 👇 #buildinpublic #chromeextension #leetcode #github #dsa #opensource #softwareengineering #codinginterview #sideproject #developer
To view or add a comment, sign in
-
I'm not the best developer in the room. But I show up. I figure it out. And I ship. Last week I picked up an open source issue that had zero guidance, zero documentation and a codebase I had never seen before. Most people scrolled past it. I opened my terminal. The issue looked simple: "Add a 🔒 emoji to Discord ticket channels when closed. Remove it when reopened." The reality? error TS2741: Property 'closedTicketEmoji' is missing error: Argument of type '"ticket-close"' is not assignable error: Compilation Failed And that was just day one. 😅 Here's what nobody tells you about open source: You won't understand the codebase immediately. You will break things. The errors will feel personal. But every single error is just a breadcrumb showing you exactly where to go next. What I actually shipped: → Traced the feature across 7 production files → Added TypeScript type definitions → Hooked into an existing architecture pattern → Handled both close AND reopen logic → Zero breaking changes to existing features Not because I'm smart. Because I refused to stop. The PR is live. And honestly? That feeling of seeing your code sitting in a real production repository used by thousands of Discord servers worldwide — No tutorial gives you that. Here's my honest advice to every developer grinding right now: Stop consuming. Start contributing. Pick ONE open source issue this week. It doesn't have to be perfect. It just has to be yours. Are you contributing to open source or still waiting until you feel "ready"? #OpenSource #Developer #TypeScript #GitHub #SoftwareEngineering #Programming #CareerGrowth #100DaysOfCode
To view or add a comment, sign in
-
-
🚀 6 Free GitHub Repos That Can Save You $100+/Month on Claude Code If you're deep in Claude for daily coding and your token bill is creeping up, this one's for you. I came across this brilliant hand-drawn breakdown (image above) and had to share it. These 6 open-source tools are quietly helping developers cut costs while getting sharper, faster, and more useful outputs. Here’s the quick hit list: 1. vercel-labs/agent-browser Replaces Claude in Chrome. Uses the accessibility tree instead of screenshots or messy HTML. Clean context, zero noise. 2. rtk-ai/rtk 60-90% faster on common commands (npm run, git commit, pnpm test, etc.). Real-world savings of 20-30% in actual workflows. 3. juliusbrussee/caveman The “terse-output” skill we all needed. Drops the fluff and filler. Responses become direct: “use map(), not filter(). Return acc.” 4. tirth8205/code-review-graph Up to 49× fewer tokens on daily coding tasks via AST mapping. One of the biggest efficiency wins on the list. 5. Gronsten/claude-usage-monitor Real-time 5-hour usage window + live active-session token tracking. Know exactly where you stand before you hit the cap. 6. phuryn/claude-usage Historical breakdowns by session, day, and week. Beautiful charts showing exactly where your tokens (and money) went — and what to fix. The real magic? Stack them. Use what you need. Save money. Ship more. Compounding wins. These are all free, actively maintained, and built by the community. If you’re serious about getting more signal and less spend from Claude, go star them now. Which one are you trying first? Or drop your own favorite Claude optimization tool in the comments 👇 Let’s help each other build faster and cheaper. #ClaudeAI #Anthropic #AIforDevelopers #GitHub #DeveloperTools #TokenOptimization #Productivity #OpenSource #SaveMoney
To view or add a comment, sign in
-
-
I want to share something important that happened to me especially for students and developers using GitHub Student Developer Pack. Like many of you, I got access to premium tools (Claude, GPT, etc.) through the pack. Instead of using them as intended, I tried to get creative I installed GitHub Copilot CLI, used the models, and set up a local server to act as a proxy for Claude Code. I don’t hesitate to spend on hardware because I know I’ll use it or anyone in my team can, but when it comes to software, I often look for workarounds instead of paying. I tend to rely on proxies or alternative routes to access premium tools and latest models rather than using them the intended way. For about 8 days, everything seemed fine. Then reality hit. I received an email from GitHub: 👉 My access was revoked 👉 My account was suspended 👉 Multiple repositories were taken down and placed under review That’s when I realized what seemed like a “smart workaround” was actually a violation of their terms. Some context: - I had applied for the Student Pack multiple times before (faced rejections too) - Finally got approved recently - Within days of using it this way, I lost access entirely 💡 Lesson learned (the hard way): Just because you can do something technically doesn’t mean you’re allowed to do it. These tools come with usage policies, and bypassing intended usage (like creating proxies or reselling access) can lead to serious consequences including account suspension. I’ve raised a support ticket with GitHub. Let’s see how it goes. Sharing this so others don’t make the same mistake. #github #StudentDeveloperPack #Copilot #AI #Developers #LearningTheHardWay
To view or add a comment, sign in
-
If you've checked HackerNews or Lobsters this morning you'll see that GitHub has finally launched a stacked pull request in private preview. The long-awaited coding workflow is wait-list only at the moment, but that hasn't stopped devs and users from weighing in. The full story is on The Stack now. https://lnkd.in/e6m8qPP8
To view or add a comment, sign in
More from this author
Explore related topics
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development
Alefay Kombil