I hereby claim:
- I am tribela on github.
- I am kjwon15 (https://keybase.io/kjwon15) on keybase.
- I have a public key whose fingerprint is 27E6 CA88 CFBE 2D33 8679 7090 A400 5593 7FB2 BA89
To claim this, I am signing this object:
| import pytest | |
| def step_parity(state: list[int]) -> bool: | |
| prev = 0 | |
| for p in reversed(state): # From biggest disk to smallest | |
| if p != prev: | |
| prev = 3 - p - prev | |
| return p == prev |
| #!/usr/bin/env -S uv run --script | |
| # /// script | |
| # requires-python = ">=3.13" | |
| # dependencies = [ | |
| # "flask", | |
| # ] | |
| # /// | |
| import sqlite3 | |
| import os |
| #!/bin/bash | |
| set -euo pipefail | |
| cd "$(dirname "$0")" || exit 1 | |
| IMAGE_NAME='qdon/glitch' | |
| TAG='beta' | |
| HOSTNAME='beta.qdon.space' | |
| rollback() { |
| // ==UserScript== | |
| // @name Fullscreen to lights off | |
| // @version 1 | |
| // @grant GM.xmlHttpRequest | |
| // @grant GM.setValue | |
| // @grant GM.getValue | |
| // @match https://app.plex.tv/* | |
| // @match https://watcha.com/* | |
| // @match https://www.netflix.com/* | |
| // @match https://www.disneyplus.com/* |
| FROM elasticsearch:7.14.2 | |
| RUN /usr/share/elasticsearch/bin/elasticsearch-plugin install --batch analysis-nori | |
| HEALTHCHECK CMD curl -f http://localhost:9200/_cluster/health |
| # Run "bundle exec sidekiq -q tmp -c 32" to run in side of main sidekiq jobs to prevent huge latency on push queue | |
| dry_run = 1 # Change this to nil to run actually | |
| inboxes = Account.inboxes | |
| worker = ActivityPub::DeliveryWorker.new | |
| worker.sidekiq_options_hash['retry'] = 0 | |
| worker.sidekiq_options_hash['queue'] = 'tmp' | |
| processed = 0 |
| @keyframes glitch-anim-text { | |
| 0% { | |
| transform: none; | |
| clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%, 0 5vh, 100% 5vh, 100% 100%, 0 100%); | |
| } | |
| 9%, 11% { | |
| transform: scale(1, 1); |
I hereby claim:
To claim this, I am signing this object:
| # frozen_string_literal: true | |
| Account | |
| .local.without_suspended | |
| .where('accounts.created_at < ?', 30.days.ago) | |
| .where(note: '') | |
| .where(display_name: '') | |
| .where(avatar_file_name: nil) | |
| .where( | |
| Account.arel_table[:fields].eq(nil).or( | |
| Account.arel_table[:fields].eq([]) |
| import os | |
| from itertools import product | |
| from mastodon import Mastodon | |
| app = Mastodon( | |
| client_id=os.getenv('MASTODON_CLIENT_KEY'), | |
| client_secret=os.getenv('MASTODON_CLIENT_SECRET'), | |
| access_token=os.getenv('MASTODON_ACCESS_TOKEN'), | |
| api_base_url=os.getenv('MASTODON_API_BASE_URL') |