diff options
| author | LLLL Colonq <llll@colonq> | 2025-01-03 14:41:11 -0500 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2025-01-03 14:41:11 -0500 |
| commit | 83f9a7b14bfb2fc90044d2809485b1c0a39cc841 (patch) | |
| tree | 01472f7164fa1e3e5c9eae0570d71ff1b52ce751 /src/gizmo/wasp-aoc.el | |
| parent | 6628a49b953842a3c358bdf3f5e45284480db0c3 (diff) | |
Update
Diffstat (limited to 'src/gizmo/wasp-aoc.el')
| -rw-r--r-- | src/gizmo/wasp-aoc.el | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/gizmo/wasp-aoc.el b/src/gizmo/wasp-aoc.el index 5fa58582..57b16c32 100644 --- a/src/gizmo/wasp-aoc.el +++ b/src/gizmo/wasp-aoc.el @@ -10,7 +10,7 @@ (require 'request) (require 'wasp-sensitive) -(defcustom w/aoc-leaderboard-url "https://adventofcode.com/2023/leaderboard/private/view/3307583.json" +(defcustom w/aoc-leaderboard-url "https://adventofcode.com/2024/leaderboard/private/view/3307583.json" "URL for Advent of Code API." :type '(string) :group 'wasp) @@ -28,11 +28,18 @@ ("fn_lumi" . "lumi") ("leadengin" . "leaden") ("vasher_1025" . "vash3r") - ("andrewdtr" . "drawthatredstone"))) + ("andrewdtr" . "drawthatredstone") + ("badcop_" . "cgsdev0") + ("asrael_io" . "asrael") + ("colinahscopy_" . "@colinahscopy") + ("ctrl_o" . "control-o") + ("whimsicallymade" . "aecepoglu") + ("chromosundrift" . "christo") + )) (defun w/aoc-max-stars () "Return the maximum Advent of Code stars for today." - (* 2 (string-to-number (format-time-string "%d" (current-time))))) + (min 50 (* 2 (string-to-number (format-time-string "%d" (current-time)))))) (defun w/aoc-lookup-stars (user) "Retrieve the Advent of Code stars for USER." |
