Skip to content

Instantly share code, notes, and snippets.

View ojmarcelino's full-sized avatar

Juliano Marcelino ojmarcelino

View GitHub Profile
@arno01
arno01 / docker-on-android.md
Last active April 2, 2025 03:08
Docker on Android

WORK IN PROGRESS

Docker on Android

Setup:

Samsung Galaxy Tab S5e SM-T720
Android Pie on Linux 4.9.112 (not rooted)
Termux
@jabranham
jabranham / analyze-bib-file.R
Last active March 24, 2019 16:32
analyze-bib-file
library(tidyverse)
library(bibtex)
theme_set(theme_minimal())
## You'll need to modify the next line to wherever your bib file is
entries <- read.bib("~/Dropbox/bibliography/references.bib")
lentries <- length(entries)
years <- list(lentries)
type <- list(lentries)