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:
I hereby claim:
To claim this, I am signing this object:
<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> |
HyperTrack.setGnssStatusCallback(new GnssStatus.Callback() { | |
@Override | |
public void onStarted() { | |
super.onStarted(); | |
// Handle onStarted method here | |
... | |
} | |
@Override | |
public void onStopped() { | |
super.onStopped(); |
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] |
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] |
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] |
// 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'); |
/* | |
* 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() |