Skip to content

Instantly share code, notes, and snippets.

View sethdusek's full-sized avatar
🏠
Working from home

Kamal Ahmad sethdusek

🏠
Working from home
View GitHub Profile
@gpluscb
gpluscb / instant-glicko-2.md
Last active March 19, 2026 06:31
So You Want to Use Glicko-2 for Your Game's Ratings

I wrote this article right after I published the first version of instant-glicko-2. It is meant to document how to implement a Glicko-2 algorithm that allows for instant feedback after games.

So You Want To Use Glicko-2 For Your Game's Ratings

Great! Glicko-2 is a very cool rating system. And a popular choice too! Lichess, CS:GO, and

#-*- coding:utf-8 -*-
# AUTHOR: shaggy
# FILE: configtest.py
# ROLE: TODO (some explanation)
# CREATED: 2015-09-22 01:56:02
# MODIFIED: 2015-09-22 01:57:57
HOME = os.path.expanduser('~')
XDG_HOME = os.getenv('XDG_CONFIG_HOME', os.path.join(HOME, '.config'))
CONFIG = os.path.join(XDG_HOME, 'dfine', 'define.cfg')