app.authpass.AuthPass
app.bbsync.BlackboardSync
app.bluebubbles.BlueBubbles
app.devsuite.Manuals
app.devsuite.Ptyxis
app.drey.Biblioteca
app.drey.Damask
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import json | |
import re | |
import sys | |
from dulwich.objects import Tag | |
from dulwich.repo import Repo | |
def get_git_describe(path): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import argparse | |
import json | |
import logging | |
import sys | |
from collections import Counter | |
from datetime import datetime, timedelta, timezone | |
import requests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gi | |
import requests | |
gi.require_version("OSTree", "1.0") | |
from gi.repository import OSTree, GLib | |
r = requests.get("https://dl.flathub.org/repo/summary.idx", allow_redirects=False, timeout=(120.05, None)) | |
if r.status_code == 200 and isinstance(r.content, bytes): | |
data = GLib.Variant.new_from_bytes(GLib.VariantType.new("(a{s(ayaaya{sv})}a{sv})"), GLib.Bytes.new(r.content), True) | |
print(OSTree.checksum_from_bytes(data.get_child_value(0).lookup_value("aarch64", GLib.VariantType.new("(ayaaya{sv})")).get_child_value(0))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# License: GNU General Public License v3.0 | |
# Dependencies: | |
# awk: https://www.gnu.org/s/gawk/manual/gawk.html | |
# gnome-screenshot: https://gitlab.gnome.org/GNOME/gnome-screenshot | |
# satty: https://github.com/gabm/Satty | |
# wl-copy: https://github.com/bugaevc/wl-clipboard |