-
-
Save neilernst/0299592e3fbd2ad23d35d98a59d82b18 to your computer and use it in GitHub Desktop.
Revisions
-
neilernst revised this gist
Jul 20, 2016 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,9 +4,9 @@ SELECT FROM [bigquery-public-data:github_repos.sample_contents] as cont JOIN [bigquery-public-data:github_repos.sample_repos] as repo ON cont.sample_repo_name = repo.repo_name WHERE cont.content CONTAINS 'spring-boot-starter-security</artifactId>' AND cont.sample_path LIKE 'pom.xml' ORDER BY repo.watch_count DESC LIMIT -
thomasdarimont revised this gist
Jun 29, 2016 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,11 +3,11 @@ SELECT repo.watch_count FROM [bigquery-public-data:github_repos.sample_contents] as cont JOIN [bigquery-public-data:github_repos.sample_repos] as repo ON cont.sample_repo_name = repo.repo_name WHERE cont.content CONTAINS 'findbugs-maven-plugin</artifactId>' AND cont.sample_path LIKE 'pom.xml' ORDER BY repo.watch_count DESC LIMIT 40; -
thomasdarimont created this gist
Jun 29, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ SELECT cont.sample_repo_name, repo.watch_count FROM [bigquery-public-data:github_repos.sample_contents] as cont join [bigquery-public-data:github_repos.sample_repos] as repo on cont.sample_repo_name = repo.repo_name WHERE cont.content CONTAINS 'findbugs-maven-plugin</artifactId>' AND cont.sample_path LIKE 'pom.xml' order by repo.watch_count desc LIMIT 40;