Skip to content

Instantly share code, notes, and snippets.

View paulz1's full-sized avatar

paulz1

  • APC/CNRS
  • Paris
  • 05:44 (UTC +02:00)
View GitHub Profile
@paulz1
paulz1 / eduactiv8_fedora42.def
Created September 24, 2025 10:56
Apptainer receipt for creating eduActiv8 image based on Fedora 42
Bootstrap: docker
From: fedora:42
%post
# Update the base system
dnf -y update
# Install basic dependencies
dnf -y install wget dnf-plugins-core python3 python3-pygame
dnf -y install libX11 SDL2 SDL2_ttf mesa-dri-drivers xorg-x11-xauth
@paulz1
paulz1 / bye_weeks_2022.py
Last active September 13, 2022 19:59
Bye weeks for NFL teams for 2022 season (to use direectly in python code)
bye_weeks={"ARI":13, "ATL":14, "BAL":10, "BUF":7, "CAR":13, "CHI":14, "CIN":10, "CLE":9, "DAL":9, "DEN":9, "DET":6, "GB":14, "HOU":6, "IND":14, "JAX":11, "KC":8, "LAC":8, "LAR":7, "MIA":11, "MIN":7, "NE":10, "NO":14, "NYG":9, "NYJ":10, "LV":6, "PHI":7, "PIT":9, "SEA":11, "SF":9, "TB":11, "TEN":6, "WAS":14}
@paulz1
paulz1 / gist:742f8958b134ca2dccf8e1ce37705a25
Created October 21, 2019 10:12
vim remove from current line until empty line
:./^$/d
To repeate @:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import urllib
import urllib2
import sys;
import BeautifulSoup;
import re ;
from tabulate import tabulate
import prettytable