Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="../xslt-boilerplate/modsbp_parameters.xsl"?><?xml-model href="http://www.loc.gov/standards/mods/mods-3-8.xsd"?>
<modsCollection xmlns="http://www.loc.gov/mods/v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.loc.gov/standards/mods/mods-3-8.xsd">
<mods>
<titleInfo>
<title>Citizenship and Feminist Politics</title>
</titleInfo>
<typeOfResource>text</typeOfResource>
<genre authority="local" xml:lang="en">journalArticle</genre>
<genre authority="marcgt" xml:lang="en">article</genre>
<name type="personal">
<?xml version="1.0" encoding="UTF-8"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader xmlns:mods="http://www.loc.gov/mods/v3" xmlns:oape="https://openarabicpe.github.io/ns" xmlns:tei="http://www.tei-c.org/ns/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<fileDesc>
<titleStmt>
<title>Bibliographic data for 10</title>
</titleStmt>
<publicationStmt>
<p>This bibliographic data is in the public domain.</p>
</publicationStmt>
@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)