Skip to content

Instantly share code, notes, and snippets.

View tribela's full-sized avatar
😺
😼

Jeong Arm tribela

😺
😼
View GitHub Profile
@tribela
tribela / upgrade.sh
Created September 23, 2023 14:29
Simple mastodon docker compose upgrade script
#!/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/*
@tribela
tribela / es-nori.dockerfile
Created October 18, 2021 05:02
Make nori-enabled elastic search docker
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
@tribela
tribela / resend_suspended_delete_activity.rb
Last active September 25, 2021 07:43
Resend Delete activity about suspended accounts
# 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
@tribela
tribela / glitch.css
Created May 22, 2021 08:39
glitch.css
@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);
@tribela
tribela / keybase.md
Created April 14, 2021 01:33
keybase.md

Keybase proof

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:

@tribela
tribela / ntpspoof.py
Created February 5, 2016 05:52
ntp spoofing
import datetime
import socket
import struct
packet_format = (
'!BBBB' # LI+VN+Mode, Stratum, Poll, Precision
'L' # Root delay
'L' # Root dispersion
'L' # Reference identifier
)
@tribela
tribela / empty_account.rb
Last active February 10, 2020 08:35
Find empty account from mastodon
# 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([])
@tribela
tribela / fetch.py
Created September 22, 2019 05:00
Mastodon date site spammer
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')
@tribela
tribela / latest_musics.py
Last active September 21, 2019 16:07
Make latest musics playlist for MPD
#!/usr/bin/env python3
from collections import namedtuple
from datetime import timedelta
import functools
import os
from os import path
import sys
import time