This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example Snakemake pipeline | |
# | |
# This example snakefile performs the following steps: | |
# | |
# * Downloads an Excel file | |
# * Converts the file to CSV format | |
# * Plots a result | |
# * Creates a summary report | |
# | |
# LICENSE: CC0. Do what you want with the code, but it has no guarantees. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env Rscript | |
# Do CRAN packages that depend on the stats package use a copyleft license? | |
# https://twitter.com/cimentadaj/status/1154420408508043264 | |
Sys.Date() | |
## [1] "2019-07-26" | |
library(stringr) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
calc3 <- function(sets) | |
{ | |
sets <- check_sets(sets) | |
set_lengths <- vapply(sets, length, 0) | |
set_order <- order(set_lengths) | |
sets <- sets[set_order] | |
set_lengths <- set_lengths[set_order] | |
n_sets <- length(sets) | |
set_names <- names(sets) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Additional_repositories | |
Author | |
Authors@R | |
Biarch | |
BugReports | |
BuildVignettes | |
Built | |
ByteCompile | |
Classification/ACM | |
Classification/ACM-2012 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Unfollow all Twitter accounts that aren't following you back | |
# | |
# Twitter API: | |
# https://developer.twitter.com/en/docs/twitter-api | |
# https://github.com/python-twitter-tools/twitter | |
# https://developer.twitter.com/en/portal/projects/new | |
# | |
# Authentication: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "Untitled" | |
output: html_document | |
date: "2025-02-28" | |
--- | |
```{r setup, include=FALSE} | |
# knitr output hook to redact alphanumeric strings | |
# | |
# Adapted from |
OlderNewer