Skip to content

Instantly share code, notes, and snippets.

View shackra's full-sized avatar

Jorge Araya Navarro shackra

View GitHub Profile
@shackra
shackra / indice.txt
Last active April 13, 2025 06:01
Indice completo - Misal Diario Católico Apostolico Romano 1962
MISAL DIARIO
CATÓLICO APOSTÓLICO ROMANO
(Imagen del Corazón con cruz)
1962
CON KYRIALE EN NOTACIÓN GREGORIANA
COMPILADO DEL MISSALE ROMANUM
CON UN SUPLEMENTO QUE CONTIENE
@shackra
shackra / d2424cd95bd1d1df050ad49c81217ad4473d6c87783ed6dc7ad77c6cbb7aeaee.json
Created March 26, 2025 17:32
Sonarr: Fansubs español neutro/hispanoamericano
{
"name": "FanSubs Hispanos",
"includeCustomFormatWhenRenaming": false,
"specifications": [
{
"name": "Dantalian",
"implementation": "ReleaseGroupSpecification",
"negate": false,
"required": false,
"fields": {
@shackra
shackra / seed.go
Created December 6, 2024 16:50
make wallet for gagliardetto/solana-go from BIP39 seed phrase
package seed
import (
"crypto/ed25519"
"crypto/hmac"
"crypto/sha512"
"math/big"
"github.com/gagliardetto/solana-go"
"github.com/mr-tron/base58"
@shackra
shackra / .clang-tidy
Last active October 6, 2024 05:32
clang-tidy for modern C++ (I don't know what I'm doing)
Checks: >
-*,
bugprone-*,
misc-*,
modernize-*,
performance-*,
portability-*,
readability-*,
cppcoreguidelines-*,
-misc-non-private-member-variables-in-classes,
@shackra
shackra / lugares.txt
Created July 14, 2024 23:34
Nombres de sitios en Costa Rica
Alajuela
Cartago
Guanacaste
Heredia
Limón
Puntarenas
San José
Abangares
Acosta
Alajuela
@shackra
shackra / main.py
Last active May 6, 2024 02:47
Generate the multiplication tables from 2 to 19 in LaTeX notation for RemNote
#!/usr/bin/env python3
results: dict[int, list[int]] = {}
for i in range(2, 20):
for j in range(2, 20):
result = i * j
operands = [i, j]
operands.sort()
@shackra
shackra / shell.nix
Last active March 2, 2024 23:22
shell.nix for Python development
let
nixpkgs-src = builtins.fetchTarball {
# 23.05
url = "https://github.com/NixOS/nixpkgs/archive/nixos-23.11.tar.gz";
};
pkgs = import nixpkgs-src {
config = {
# allowUnfree may be necessary for some packages, but in general you should not need it.
allowUnfree = false;
@shackra
shackra / flake.nix
Created February 27, 2024 13:49
Integrate flake.nix into your Godot Engine projects, with pre-commit-hooks!
# This flake was initially generated by fh, the CLI for FlakeHub (version 0.1.9)
{
# A helpful description of your flake
description = "Editor depedencies for development";
# Flake inputs
inputs = {
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
flake-schemas.url =
"https://flakehub.com/f/DeterminateSystems/flake-schemas/*.tar.gz";
Verifying that I control the following Nostr public key: npub149050rmfuher7u6wkssq5mvsagappqxnumheupe4mevgmp3aaw9s3f538q
@shackra
shackra / shell.nix
Created October 27, 2023 03:46
Flake for compiling Rust crates with dependencies on clang
let
nixpkgs-src = builtins.fetchTarball {
# 23.05
url = "https://github.com/NixOS/nixpkgs/archive/nixos-23.05.tar.gz";
};
pkgs = import nixpkgs-src {
config = {
# allowUnfree may be necessary for some packages, but in general you should not need it.
allowUnfree = false;