This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Plots for Competitive Programming with Large Reasoning Models (2025) | |
import requests | |
from bs4 import BeautifulSoup | |
import matplotlib.pyplot as plt | |
import numpy as np | |
# URL with all IOI 2024 scores | |
url = "https://cphof.org/standings/ioi/2024" | |
response = requests.get(url) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
git config --global core.eol lf | |
git config --global core.autocrlf input | |
echo "* text=auto eol=lf" > .gitattributes | |
# Find files but exclude .git directory | |
find . -type f ! -path '*/.git/*' | while read -r file; do | |
# Check if the file is a text file | |
if file "$file" | grep -q text; then |