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 / keybase
Created September 19, 2017 17:40
### Keybase proof
I hereby claim:
* I am feniix on github.
* I am feniix (https://keybase.io/feniix) on keybase.
* I have a public key ASArRrslEcjv4bFEAzU2sjhR1ZGK91CCnnuwlku_n4DHBQo
To claim this, I am signing this object:
@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*
@feniix
feniix / marathon.json
Created July 8, 2015 16:00
Example using parameters
{
"id": "/app",
"container": {
"type": "DOCKER",
"docker": {
"network": "HOST",
"image": "registry.spantree.net/app:#{BUILD_ID}",
"privileged": true,
"forcePullImage": true,
"parameters": [
@feniix
feniix / chronos.conf
Created March 10, 2015 05:22
upstart-chronos.conf
# chronos
#
# This upstart job configuration is managed by Puppet.
# Do not edit this file. Your changes will be lost.
description "Chronos"
version "2.3.2"
start on runlevel [2345]
stop on runlevel [!2345]
diff --git i/Vagrantfile w/Vagrantfile
index 3cdca40..abc1e80 100644
--- i/Vagrantfile
+++ w/Vagrantfile
@@ -1,5 +1,5 @@
require 'yaml'
-require './vagrant/lib/gen_node_infos'
+require File.join(File.dirname(__FILE__), 'vagrant/lib/gen_node_infos')
PROJECT_ROOT='/usr/local/src/Platform'
class kafka_broker(
$zookeeper_connect = 'localhost:2181'
) {
class { 'kafka':
version => '0.8.2.0',
scala_version => '2.9.2',
install_java => false
}
class { 'kafka::broker':
#!/usr/bin/env python
import json
import sys
from pprint import pprint
files = sys.argv[1:]
if not files:
files = ["/dev/stdin"]
upstream elasticsearch {
server localhost:9200 fail_timeout=10s;
}