Skip to content

Instantly share code, notes, and snippets.

View gubatron's full-sized avatar

Angel Leon gubatron

View GitHub Profile
@gubatron
gubatron / Makefile
Last active February 16, 2025 12:31
Makefile for rust projects
# Makefile
.PHONY: build release clean fmt check test install doc help tasks
default: help
# Default target (ensures formatting before building)
build: fmt ## Build the project in release mode (runs fmt first)
cargo build --release
@gubatron
gubatron / A National Singularity Fund for High Universal Income: Redefining Work, Empowering Passions, and Embracing a Post-Labor Future.md
Last active January 21, 2025 02:29
A National Singularity Fund for High Universal Income: Redefining Work, Empowering Passions, and Embracing a Post-Labor Future

A National Singularity Fund for High Universal Income:

Redefining Work, Empowering Passions and Embracing a Post Labor Future

Introduction

As Artificial General Intelligence (AGI) surpasses human-level cognition and super-dexterous robots automate vast swaths of manual and knowledge-intensive work, billions of people risk losing their traditional jobs. This scenario is often painted in stark terms—one of displacement, unemployment, and fear. Yet, a deeper truth lies in the fact that a future of abundant automation can liberate society from rote or uninspiring labor, allowing individuals to pursue creativity, innovation, personal growth, and genuine passions.

To prevent social unrest and ensure equitable benefits, we propose a National Singularity Fund (NSF). The NSF collects and manages revenue from automation taxes, equity grants, and targeted investments in exponential technologies (AGI, quantum computing, fusion energy). By distributing High Universal Income (HUI) to

@gubatron
gubatron / ssh-git-signing.md
Last active November 27, 2024 22:06
Signing github commits with your SSH key

GPG gives a lot of shit on macos for some reason.

It's best to just add the same SSH authentication key you have on github as a "Signing Key"

$ git config [--global] gpg.format ssh
$ git config [--global] user.signingkey ~/.ssh/id_rsa.pub
$ git config [--global] commit.gpgsign true
@gubatron
gubatron / RAG Frameworks.md
Created November 1, 2024 19:41
RAG Frameworks comparison
Framework Description Key Features Language Support Integration Capabilities Deployment Options License
RaLLe A framework for developing and optimizing retrieval-augmented large language models (R-LLMs) for knowledge-intensive tasks. - Development and evaluation of R-LLMs
- Optimization tools for knowledge-intensive applications
Python - Compatible with various LLMs
- Supports integration with external knowledge bases
Local and cloud deployment MIT License
BERGEN A benchmarking library that standardizes experiments and provides tools for evaluating RAG pipelines. - Standardized benchmarking
- Comprehensive evaluation tools
- Support for various RAG components
Python - Integrates with multiple retrieval and generation models Local deployment Apache 2.0 License
RAGFlow An open-source RAG engine based on deep document un
@gubatron
gubatron / Building-libbittcoin-network-on-macos-arm64.md
Last active October 23, 2024 00:04
Building libbitcoin-network on macos with arm64 chip, clang 16

Building libbitcoin-network on macos arm64

$ clang --version
Apple clang version 16.0.0 (clang-1600.0.26.3)
Target: arm64-apple-darwin23.5.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

$ uname -a
@gubatron
gubatron / split_huge_diff.sh
Last active September 26, 2024 15:26
split_huge_diff.sh
split_file() {
local file="$1"
if [[ ! -f "$file" ]]; then
echo "File '$file' does not exist."
return 1
fi
# Use short options compatible with your version of split
split -b 50k -a 2 "$file" "${file}.part"
@gubatron
gubatron / liblurk_mobile_build.sh
Last active March 17, 2024 05:18
Building lurl-lab/lurk-rs dart binding for iOS
git clone [email protected]:lurk-lab/lurk-rs.git
cd lurk-rs
git submodule update --init --recursive
rustup target add aarch64-apple-ios
cargo build --target aarch64-apple-ios --release
ls -l target/aarch64-apple-ios/release/
cd target/aarch64-apple-ios/release
ar x liblurk.rlib
ar rcs liblurk.a *.o
ls -l liblurk.a
@gubatron
gubatron / delete_github_workflow_run_logs.sh
Last active October 12, 2024 22:06
Batch delete 30 Github Workflow Run Logs using the github command line tool
#
# This script uses the github command line tool
# to delete the last 30 logs from your repository's workflow runs
#
# Requirements
#
# gh - github command line (brew install gh)
# you will need a GH_TOKEN, create it here: https://github.com/settings/tokens
#
# once you've created the personal access token with permission to manage your workflows
@gubatron
gubatron / dynamic_dockerfile_host_architecture.md
Last active November 28, 2022 17:56
How to build your Docker image using the same Dockerfile regardless of the host architecture

How to build your Docker image using the same Dockerfile regardless of the host architecture

Problem

If you are now using docker on a Mac M1 (arm64 platform), you don't want to use amd64 as the architecture for your Linux Images.

You could have 2 lines on your Dockerfile and comment each one depending on where you're building the image

Dockerfile

# Building on Apple Silicon host
@gubatron
gubatron / config_php8.sh
Created September 12, 2022 23:03
script to build php8.1.10 from source so that we can link to openssl1.1.1 (new ubuntu 22.04 makes use of openssl 3 and it breaks a lot of stuff that depended on weaker ciphers)
sudo apt install build-essential autoconf libtool bison re2c pkg-config libwebp-dev libxml2-dev libsqlite3-dev libbz2-dev libcurl4-openssl-dev libpng-dev libjpeg-dev libfreetype-dev libonig-dev libedit-dev libreadline-dev libzip-dev
cd php-8.1.10
#builds configure file if there isn't one
./buildconf
#./configure --help for full list of options
./configure --with-curl \
--disable-cgi \