Skip to content

Instantly share code, notes, and snippets.

View dkiesow's full-sized avatar

Damon Kiesow dkiesow

  • Missouri School of Journalism
  • Columbia, MO
View GitHub Profile

Keybase proof

I hereby claim:

  • I am dkiesow on github.
  • I am dkiesow (https://keybase.io/dkiesow) on keybase.
  • I have a public key ASA1CFkmdskV4_vhOifUdl_p-NL_F9VoUXOv8kuKmJRxuQo

To claim this, I am signing this object:

@dkiesow
dkiesow / rtweet sample token creation
Created April 27, 2019 19:15
rtweet sample token creation - these are not real keys
create_token(app = "my_keynote_app",consumer_key = "XYznzPFOFZR2a39FwWKN1Jp41",consumer_secret = "CtkGEWmSevZqJuKl6HHrBxbCybxI1xGLqrD5ynPd9jG0SoHZbD",access_token = "9551451262-wK2EmA942kxZYIwa5LMKZoQA4Xc2uyIiEwu2YXL",access_secret = "9vpiSGKg1fIPQtxc5d5ESiFlZQpfbknEN1f1m2xe5byw7")
@dkiesow
dkiesow / keynote.R
Last active August 29, 2019 00:34
R script used with rtweet and Keynote rTweet AppleScript to automate tweets from Mac Keynote
#!/usr/bin/env Rscript
##keynote.R v1.1 Damon Kiesow @dkiesow
##Use with the Keynote rTweet AppleScript app to automate threaded tweeting during Keynote presentations
##
## load rtweet package
library(rtweet)
me <- rtweet:::home_user()
## Pull parameters from command line (first_status will be "yes" or "no" and provided from the AppleScript)
args <- commandArgs(trailingOnly = TRUE)
@dkiesow
dkiesow / Keynote rTweet 1.0
Last active April 27, 2019 20:17
Applescript portion of app that uses rtweet to send automated tweets from Mac keynote
global extras
global lastTweet
property okflag : false
-- Keynote rTweet 1.0 Damon Kiesow @dkiesow
-- Entirely adapted for rtweet from Keynote-Tweet maintained by Alan Levin @cogdog
-- https://github.com/cogdog/Keynote-Tweet
-- This version requires rtweet from @kearneymw
-- https://rtweet.info/index.html