Skip to content

Instantly share code, notes, and snippets.

@tillgrallert
tillgrallert / build-browsertrix-from-source.sh
Last active March 14, 2022 12:58
SUCHO: Build a docker container for Browsertrix from the source
git clone https://github.com/webrecorder/browsertrix-crawler.git
cd browsertrix-crawler
git checkout incremental-save-state
docker-compose build
@tillgrallert
tillgrallert / wordclouds.r
Last active October 1, 2021 15:00
Wordclouds for frequency lists in R (with ggplot2)
library(tidyverse)
library(lubridate) # for working with dates
library(ggrepel)
library(ggthemes) # install themes for ggplots
library(ggwordcloud)
library(here) # for easier locating of all files
library(ragg) # for rendering Arabic
library(RColorBrewer)
library(wordcloud)
library(arabicStemR)