Skip to content

Instantly share code, notes, and snippets.

View feniix's full-sized avatar
🇦🇷

Sebastian B Otaegui feniix

🇦🇷
View GitHub Profile
@feniix
feniix / gist:c8c274d1c6f4fffe646537b5c42ab6f5
Created September 19, 2025 04:41 — forked from uris77/gist:4d82bd5d9ebcbd191e7eb90b68becc15
The Fractured Promise: AI Through the Lens of Belizean Reality

The Fractured Promise: AI Through the Lens of Belizean Reality

As a software engineer contracting for American companies while rooted in Belize, my perspective on the AI revolution is necessarily bifurcated. While colleagues in the West enthusiastically adopt AI-powered coding assistants, my own experiences with these tools have been underwhelming. Yet, this technical friction pales in comparison to the deeper, systemic apprehensions I harbor, anxieties born directly from the unique vantage point of living and working in a developing nation navigating the turbulent currents of global technology.

The most immediate concern is one of access and precarious dependency. My professional livelihood hinges on tools hosted and controlled by entities far removed from my reality. Belize, like many nations, exists under the shadow of potential geopolitical shifts, including American sanctions. The chilling prospect of losing access to essential AI platforms overnight due to forces entirely beyond my con

@feniix
feniix / example-gpu-argo-workflow.yaml
Created July 2, 2025 20:27 — forked from Halliax/example-gpu-argo-workflow.yaml
Simple working example of an Argo Workflow configured to run on the GPU nodes
apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
generateName: cuda-vector-add-
spec:
entrypoint: main
templates:
- name: main
# requires this pod to be run on an nvidia.com/gpu labeled node
nodeSelector:
@feniix
feniix / Makefile
Last active September 30, 2015 17:14 — forked from grahamc/Makefile
AWS Instance Age Report (run `make profile=default` if you have many creds profiles defined use the correct one
fresh: clean chart
chart: instance_ages
@echo "AWS EC2 Instance Age Report"
@echo "---------------------------"
@echo "Days\\tCount"
@cat instance_ages | ./chart.py -n
clean:
rm -f instance*
#! /bin/bash
# This if for the mac hipchat client
# To setup, download this file to any folder and save as `hip.sh`
# change the permissions of the file so it is executable using terminal
# You can do this by running `chmod u+x ./hip.sh`
# Now you can run `./hip.sh`
echo 'Hipchat hooray...ho... - Press CTRL+C to stop'
while :
do
#!/bin/bash
# This script will download and install Google Chrome on a fresh installation of Mac OS X.
# Usage: curl -fkL gist.github.com/raw/4364590/install-chrome.sh | sh
curl -Lo /tmp/Google\ Chrome.dmg https://dl.google.com/chrome/mac/stable/GGRO/googlechrome.dmg;
hdiutil attach /tmp/Google\ Chrome.dmg;
ditto -rsrc /Volumes/Google\ Chrome/Google\ Chrome.app /Applications/Google\ Chrome.app;
hdiutil detach /Volumes/Google\ Chrome;
rm /tmp/Google\ Chrome.dmg;