Ah yes. The act of learning about something awesome by the message saying it's going away.
Hah, this concept sounds like something you'd find named in Meaning of Liff.
Trending tabs are being deprecated due to low usage
121–130 of 134 posts
Re: Trending tabs are being deprecated due to low usage
#122> Due to low usage of Trending Repositories and Trending Developers, this tab will no longer be available I've never used this tab. (Just opened it for the first time.) It's cool, and I'm disappointed to see it go. BUT: We should spend a minute thinking about the counter argument. Little and unused features can add cruft to a codebase, and significantly impede development. It's possible that hooks for corner cases an…
This scenario reminds me of a funny story posted on HN a while ago: https://memex.marginalia.nu/log/48-i-have-no-capslock.gmi (TL;DR; if you take this "usage based" feature removal logic to it's conclusion, a lot of important keys would be removed from computers/keyboards).
Re: Trending tabs are being deprecated due to low usage
#123After the ranking algorithm change to the Trending page, I found I basically stopped using it (I lived on that page before the change), I found I'm more likely to find cool projects/libraries/etc here.
The rewrite was horrible. I remember before how you could find interesting projects from random developers with growing communities. Now it's side-project X from reknowned developer N, or the newly created repo from some known tech firm that somehow has 100 stars already. All the actual fresh meat got dried out. I lost interest after the rewrite.
"Trending" on social sites always seems to translate to, "here is popular thing that should become more popular because it's already popular."
The extreme preference for externally mediated measures of status never fails to amuse me.
Re: Trending tabs are being deprecated due to low usage
#124Earlier quoted context omitted.
I mean that sounds like one solution - especially if you cannot work with Chinese nationals for reasons. But in the spirit of open source and access to other people's code, an alternative solution would be for Github to integrate with a translation service and translate descriptions.
> especially if you cannot work with Chinese nationals for reasons This comes off as inflammatory. It sounds like you're misrepresenting GP's desire to filter out a language they cannot read as a kind of bigotry against the speakers of that language. That may explain the apparent disapproval from the community. As for auto-translation, there are plenty of browser extensions and other solutions if people want that.
I also do agree with the filter itself purely because I ran into the same problem too, lots of Chinese repositories with poor if any English READMEs.
Re: Trending tabs are being deprecated due to low usage
#125GitHub calls itself social coding, but trending fits in poorly with that. When I hit a problem that I think might be solved by open source, telling me that the TypeScript repo is trending gives me exactly zero information.
If we're honest, the Trending tab often seems to mean, "these projects went viral on HN/social media." And I'm not sure why they deserve extra attention, but it follows the general trend of social media being obsessed with perpetuating the Matthew Effect.
Re: Trending tabs are being deprecated due to low usage
#126Earlier quoted context omitted.
I mean that sounds like one solution - especially if you cannot work with Chinese nationals for reasons. But in the spirit of open source and access to other people's code, an alternative solution would be for Github to integrate with a translation service and translate descriptions.
> especially if you cannot work with Chinese nationals for reasons This comes off as inflammatory. It sounds like you're misrepresenting GP's desire to filter out a language they cannot read as a kind of bigotry against the speakers of that language. That may explain the apparent disapproval from the community. As for auto-translation, there are plenty of browser extensions and other solutions if people want that.
Re: Trending tabs are being deprecated due to low usage
#127I've been a big fan of the trending page, and have found many cool projects from there, as well as been very happy when my project has made it to the list, which usually brings on a big wave of new users! As someone who's building apps and actions to run on GitHub, I've always found the discoverability of apps to be lacking. The marketplace is nothing but a big list of things, in seemingly random order. Compare this…
Re: Trending tabs are being deprecated due to low usage
#128Sounds like a fun weekend project to replicate it? The GitHub search API seems to provide everything that is needed. It returns 30 repos per query and allows 30 * 60 * 24 = 43200 queries per day. So one could track the top 43200 * 30 = 1296000 repos. That is enough to track all repos with more then 20 stars: https://api.github.com/search/repositories?q=stars:%3E1000&s... But maybe it has already been done? This looks…