Skip to content

Instantly share code, notes, and snippets.

View neilernst's full-sized avatar
🐵

Neil Ernst neilernst

🐵
View GitHub Profile
--==============================
-- 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 <ben@automatedworkflows.com>
-- http://www.automatedworkflows.com
@neilernst
neilernst / github-mining.sql
Last active July 20, 2016 15:18 — forked from thomasdarimont/github-mining.sql
Sample query for github dataset in big-query
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'