Skip to content

Instantly share code, notes, and snippets.

View aripap's full-sized avatar

Ari Paparo aripap

View GitHub Profile
@matticusfinch
matticusfinch / author-list.liquid
Last active June 12, 2023 17:14
Uscreen Custom Author List Code
{{ 'author-styles.css' | stylesheet_link }}
<div class="container">
<div id="authors_app"></div>
</div>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.11"></script>
{{ 'authors.js' | javascript_link }}
@benwattsjones
benwattsjones / gmail_mbox_parser.py
Last active February 11, 2026 19:12
Quick python code to parse mbox files, specifically those used by GMail. Extracts sender, date, plain text contents etc., ignores base64 attachments.
#! /usr/bin/env python3
# ~*~ utf-8 ~*~
import mailbox
import bs4
def get_html_text(html):
try:
return bs4.BeautifulSoup(html, 'lxml').body.get_text(' ', strip=True)
except AttributeError: # message contents empty