Skip to content

Instantly share code, notes, and snippets.

View igorbrigadir's full-sized avatar

Igor Brigadir igorbrigadir

View GitHub Profile
@igorbrigadir
igorbrigadir / playlist.csv
Created June 10, 2025 23:57
playlist.csv
artist title url
Kollektiv Turmstrasse Sorry I'm Late https://www.youtube.com/watch?v=dOYjCxGf-K0
Enrico Sangiuliano Moon Rocks https://soundcloud.com/drumcode/enrico-sangiuliano-moon-rocks-drumcode-dc160
Alan Fitzpatrick For An Endless Night (Jel Ford Remix) https://www.youtube.com/watch?v=OdExYPsbIqo
Azaria & Mystery Affair & Andrea Lacoste Nube Diamante (Original Mix) https://azaria.bandcamp.com/track/azaria-mystery-affair-andrea-lacoste-nube-diamante-original-mix
Franz Matthews & Local Suicide Tutan Jamon https://www.youtube.com/watch?v=iOxQp2Bja2M
Cabaret Nocturne Blind Trust https://rottencityrecords.bandcamp.com/track/blind-trust
Dance Station Beige & Yello (Roliva Remix) https://www.youtube.com/watch?v=6GjiNGwgPrE
Klasher The Night Driver https://beatspace-ovnimoon.bandcamp.com/track/the-night-driver
Barnt Chappell https://barnt.bandcamp.com/track/chappell
@igorbrigadir
igorbrigadir / progressive-story-demo.twee
Last active January 3, 2025 18:48
Progressive Story Demo
::StoryTitle Progressive Story Demo
::StoryData
{
"ifid": "F6BE4A85-73E2-4126-8B5A-C1F1F81A434F",
"format": "SugarCube",
"format-version": "2.36.1",
"start": "Start"
}
@igorbrigadir
igorbrigadir / ips.json
Created October 13, 2023 08:31
Google Cloud europe-west1
[
{
"ipv4Prefix": "8.34.208.0/23",
"service": "Google Cloud",
"scope": "europe-west1"
},
{
"ipv4Prefix": "8.34.211.0/24",
"service": "Google Cloud",
"scope": "europe-west1"
@igorbrigadir
igorbrigadir / README.md
Created August 23, 2023 15:01
Dublin Electoral Divisions
@igorbrigadir
igorbrigadir / top10.csv
Last active July 28, 2023 15:42
UA Top 10 and top 100 Users from https://bsky.jazco.dev/ 2023-07-28. Moved to main repo: https://github.com/igorbrigadir/bluesky-top-ua
label size
wolfigelkott.crimea.ua 5.9
pes.bsky.social 5.17
deadcake.bsky.social 4.97
teren.bsky.social 4.9
mathan.dev 4.88
k1sa.me 4.76
kiwi.qirim.land 4.6
olganova.bsky.in.ua 4.59
leodron.bsky.social 4.34
#!/bin/bash
#
# the first 100, anyways
#
curl -s -H "Authorization: Bearer $(curl -s -X POST -H "Content-Type: application/json" -d '{"identifier": "me.bsky.social", "password": "letmein"}' "https://bsky.social/xrpc/com.atproto.server.createSession" | jq -j ".accessJwt")" "https://bsky.social/xrpc/app.bsky.graph.getMutes?limit=100" | jq -r '.mutes | .[] | .did' | xargs -I{} -P10 curl -s 'https://plc.directory/{}' | jq -r '.alsoKnownAs[0]' | sed -e 's#at://#@#' | sort
@igorbrigadir
igorbrigadir / get_telegram_channels_descriptions_folders_csv.py
Created April 8, 2023 01:05
Get your own Telegram Channels and descriptions in a CSV with the Folder names
import csv
import asyncio
from telethon import TelegramClient
from telethon.tl.functions.messages import GetDialogFiltersRequest
from telethon.tl.functions.channels import GetFullChannelRequest
# Replace the following values with your own API ID and hash obtained from https://my.telegram.org
api_id = "..."
api_hash = "..."
@igorbrigadir
igorbrigadir / text.md
Last active March 1, 2023 22:09
Twitter Violent Speech Policy Changes

Violent Speech Policy

Overview

February 2023

You may not threaten, incite, glorify, or express desire for violence or harm.

Twitter is a place where people can express themselves, learn about what’s happening, and debate global issues. However, healthy conversations can’t thrive when violent speech is used to deliver a message. As a result, we have a zero tolerance policy towards violent speech in order to ensure the safety of our users and prevent the normalization of violent actions.

@igorbrigadir
igorbrigadir / post.sh
Created February 8, 2023 22:28
twurl v2 API Posting tweet example
# Replace the ... appropriately.
# See https://developer.twitter.com/en/docs/twitter-api/tweets/manage-tweets/api-reference/post-tweets
# Tweet
twurl -X POST -A "Content-type: application/json" -d '{"text":"Simple tweet example"}' "/2/tweets"
# Retweet
twurl -X POST -A "Content-type: application/json" -d '{"tweet_id":"..."}}' "/2/users/...your_user_id.../retweets"