Migrated to https://git.ari.lt/ari
I have migrated to a self-hosted forgejo instance at
| #!/bin/sh | |
| set -eux | |
| main() { | |
| rm -f default.profraw genprime.profdata | |
| clang -o genprime -fprofile-instr-generate -Wpedantic -flto=full -fno-trapping-math -fno-math-errno -fno-stack-check -fno-strict-overflow -funroll-loops -fno-stack-protector -fvisibility-inlines-hidden -mfancy-math-387 -fomit-frame-pointer -fstrict-overflow -Wshadow -fno-exceptions -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0 -Wall -Wextra -fno-signed-zeros -fno-strict-aliasing -pedantic -O3 -fvisibility=hidden -ffast-math -funsafe-math-optimizations -std=c99 -fno-asynchronous-unwind-tables -Werror -fdiscard-value-names -femit-all-decls -fmerge-all-constants -fno-use-cxa-atexit -fno-use-init-array -march=native -mtune=native -pedantic-errors genprime.c -lgmp -lpthread -s -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -Wl,--as-needed -Wl,--no-copy-dt-needed-entries | |
| llvm-strip --strip-debug --strip-sections --strip-unneeded -T --remove-section=.note.gnu.gold-version --remove-section=.note --strip-all --discard-locals --remove-section=.gnu. |
| /** | |
| * @licstart The following is the entire license notice for the JavaScript | |
| * code in this file. | |
| * | |
| * Copyright (C) 2025 Arija A. <[email protected]> | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU Affero General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. |
| /* | |
| * This file is/was a part of the Vessel project. (https://git.ari.lt/ari/vessel) | |
| * | |
| * Copyright (C) 2024 Ari Archer <[email protected]> | |
| * | |
| * Vessel is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU Affero General Public License as | |
| * published by the Free Software Foundation, either version 3 of | |
| * the License, or (at your option) any later version. | |
| * |
| /* | |
| * UNLICENSE | |
| * | |
| * This is free and unencumbered software released into the public domain. | |
| * | |
| * Anyone is free to copy, modify, publish, use, compile, sell, or | |
| * distribute this software, either in source code form or as a compiled | |
| * binary, for any purpose, commercial or non-commercial, and by any | |
| * means. | |
| * |
| #!/usr/bin/env sh | |
| # OPENPGPKEY DNS record generator implementing RFC 7929 (https://www.rfc-editor.org/rfc/rfc7929.txt) | |
| # | |
| # NOT IMPLEMENTED: | |
| # | |
| # 2. The local-part is first canonicalized using the following rules. | |
| # If the local-part is unquoted, any comments and/or folding | |
| # whitespace (CFWS) around dots (".") is removed. Any enclosing | |
| # double quotes are removed. Any literal quoting is removed. |
| echo 'See https://git.ari.lt/ari.lt/fw.sh' | |
| exit 1 |
| #include <time.h> | |
| #include <math.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include "include/mem.h" | |
| #include "include/matrix.h" | |
| #ifndef INFINITY | |
| #define INFINITY HUGE_VAL |
I have migrated to a self-hosted forgejo instance at
| /* | |
| * Me and #root:ari.lt people on Matrix are messing aroung with | |
| * Java and I went from Hello World to Fibonacci, to Machine Learning. | |
| * Enjoy | |
| * | |
| * License: Unlicense | |
| */ | |
| import java.util.Random; |
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| """Sample SNAPI client""" | |
| import hashlib | |
| import os | |
| import socket | |
| from warnings import filterwarnings as filter_warnings | |
| from cryptography.hazmat.primitives import hashes, serialization |