···257 repo_star_counts as (258 select259 s.repo_at,260- count(*) as star_count261 from stars s262 join recent_starred_repos rsr on s.repo_at = rsr.repo_at0263 group by s.repo_at264 )265 select rsc.repo_at266 from repo_star_counts rsc267- order by rsc.star_count desc268 limit 8269 `270
···257 repo_star_counts as (258 select259 s.repo_at,260+ count(*) as stars_gained_last_week261 from stars s262 join recent_starred_repos rsr on s.repo_at = rsr.repo_at263+ where s.created >= datetime('now', '-7 days')264 group by s.repo_at265 )266 select rsc.repo_at267 from repo_star_counts rsc268+ order by rsc.stars_gained_last_week desc269 limit 8270 `271