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 characters
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 'spring-boot-starter-security</artifactId>' | |
AND cont.sample_path LIKE 'pom.xml' |
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 characters
--============================== | |
-- Send Keynote Text to Desktop Markdown File | |
-- Formats the markdown as Marp syntax (a MarkDown presentation format) https://marp.app | |
-- Based on | |
-- Writted By: Richard Dooling https://github.com/RichardDooling/ | |
-- Based on | |
-- Send Keynote Presenter Notes to Evernote | |
-- Version 1.0.1 | |
-- Written By: Ben Waldie <[email protected]> | |
-- http://www.automatedworkflows.com |