Skip to content

Instantly share code, notes, and snippets.

View jerdog's full-sized avatar
🎸
Rockin' in the free world!

Jeremy Meiss jerdog

🎸
Rockin' in the free world!
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jerdog on github.
  • I am jerdog (https://keybase.io/jerdog) on keybase.
  • I have a public key whose fingerprint is 17A6 238D 4001 2462 275A 1BBD AC51 D19E FC46 D62D

To claim this, I am signing this object:

@jerdog
jerdog / gist-reveal.it-slides.html
Created September 29, 2016 18:08 — forked from ryanj/gist-reveal.it-slides.html
Use Docker, gist.github.com, and Reveal.js to produce themed slideshow presentations for conferences and / or hackathons
<section data-background-transition='zoom' data-transition='concave' data-background='http://ryanjarvinen.com/presentations/shared/img/broadcast_reveal_dark.png' data-state='blackout'>
<h2>Gist-Powered</h2>
<h1>Reveal.js</h1>
<h2>Slideshow Presentations</h2>
<p class='fragment'><small><a class='fragment' href='http://github.com/ryanj/gist-reveal'>github.com/ryanj/gist-reveal</a>
<br/> <a class='fragment' href='https://registry.hub.docker.com/u/ryanj/gist-reveal/'>registry.hub.docker.com/u/ryanj/gist-reveal</a></small></p>
</section>
<section data-background-transition='zoom' data-transition='linear'>
<h2>Try it out!</h2>
<p>Create your own deck by forking a copy of <a href='https://gist.github.com/ryanj/af84d40e58c5c2a908dd'>this github gist</a>: <br /><a href='https://gist.github.com/ryanj/af84d40e58c5c2a908dd'>https://gist.github.com/ryanj/af84d40e58c5c2a908dd</a></p>
@jerdog
jerdog / get_gnss_measurements.java
Created May 26, 2017 18:09
HyperTrack API: Get GNSS Measurements
HyperTrack.setGnssStatusCallback(new GnssStatus.Callback() {
@Override
public void onStarted() {
super.onStarted();
// Handle onStarted method here
...
}
@Override
public void onStopped() {
super.onStopped();
@jerdog
jerdog / jeremylinks.md
Last active September 28, 2017 19:48
Jeremy's links
@jerdog
jerdog / openpgp.txt
Created September 2, 2017 03:19
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:17a6238d40012462275a1bbdac51d19efc46d62d]
@jerdog
jerdog / openpgp.txt
Created September 2, 2017 03:19
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:17a6238d40012462275a1bbdac51d19efc46d62d]
@jerdog
jerdog / openpgp.txt
Created September 2, 2017 03:19
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:17a6238d40012462275a1bbdac51d19efc46d62d]
@jerdog
jerdog / github-org-collaborators.js
Last active September 5, 2018 17:18
File to query the GitHub API for all contributors in an organization by each repo in that organization. Uses Webtask.io to run, courtesy of @kukicado.
// must replace:
// {YOUR-ACCESS-TOKEN} with your GitHub API access token
// {YOUR-ORG-NAME} with the GitHub organization to query
// Courtesy of @kukicado
// Running via Webtask.io
let express = require('express');
let Webtask = require('webtask-tools');
let axios = require('axios');
@jerdog
jerdog / json2csv.js
Created September 19, 2019 02:35 — forked from jeshuamaxey/json2csv.js
Small script to convert json data to csv
/*
* Small script to convert json data to csv
*/
var fs = require('fs');
var os = require('os');
//name of files
var dataFile = 'data.json';
var outputFile = 'output.csv';
"""
Connect to Orbit API using this module
"""
from invoke import task
from product_el.data_utils import utils # type: ignore
from product_el.snowflake import snow_connect # type: ignore
config = utils.load_config()