Skip to content

Instantly share code, notes, and snippets.

View abkosar's full-sized avatar

Arda Kosar abkosar

View GitHub Profile
@trestletech
trestletech / server.R
Last active April 26, 2023 12:44
Example Shiny App showing the number of current sessions.
library(shiny)
# Create a reactive object here that we can share between all the sessions.
vals <- reactiveValues(count=0)
shinyServer(function(input, output, session) {
# Increment the number of sessions when one is opened.
# We use isolate() here to:
# a.) Provide a reactive context
@yanofsky
yanofsky / LICENSE
Last active May 7, 2024 12:36
A script to download all of a user's tweets into a csv
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit