Skip to content

Instantly share code, notes, and snippets.

View Midnoclose's full-sized avatar

Midnoclose Midnoclose

View GitHub Profile
@binji
binji / LICENSE
Last active January 9, 2025 20:55
pokegb.cc w/o macros
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
@TempleProgramming
TempleProgramming / SHA256.CC
Last active July 26, 2021 14:00
ZenithOS SHA-256 Generation
/* This implementation of SHA-256 was adapted from Brad Conte's
crypto-algorithms GitHub repository. */
#define SHA256_BLOCK_SIZE 32
class CSHA256_CTX
{
U8 data[64];
U32 datalen;
U64 bitlen;
#!/usr/bin/env bash
# journal.sh
# ==========
#
# One daily text file to rule them all.
#
# Copyright: 2022 Tyler Cipriani <[email protected]
# License: GPLv3
set -euo pipefail
@vitiko98
vitiko98 / get_keys.py
Last active April 3, 2025 06:00
Get Qobuz App ID and Secrets
from qobuz_dl.bundle import Bundle
bundle = Bundle()
app_id = bundle.get_app_id()
secrets = "\n".join(bundle.get_secrets().values())
print(f"App ID: {app_id}")
print("#" * 20)