Skip to content

Instantly share code, notes, and snippets.

View callahantiff's full-sized avatar
🦈
beep bop booping

Tiffany J. Callahan callahantiff

🦈
beep bop booping
View GitHub Profile
@cthoyt
cthoyt / cthoyt-thesis-drinking-game.md
Last active October 6, 2021 14:39
Charlie's PhD Thesis: The Drinking Game

Charlie's PhD, The Drinking Game

How to play:

  1. Read Charlie's PhD thesis... or just skim through it looking for fun
  2. Drink based on the following rules:

1 Sip

  • Charlie uses too many references
@ergoithz
ergoithz / xpath_soup.py
Last active March 18, 2024 16:11
Generate unique XPATH for BeautifulSoup element
#!/usr/bin/python
# -*- coding: utf-8 -*-
import bs4
def xpath_soup(element):
# type: (typing.Union[bs4.element.Tag, bs4.element.NavigableString]) -> str
"""
Generate xpath from BeautifulSoup4 element.