Skip to content

Instantly share code, notes, and snippets.

View ignlg's full-sized avatar
👾
Killing invaders

Ignacio Lago ignlg

👾
Killing invaders
View GitHub Profile
@ignlg
ignlg / git_status_all.sh
Created April 20, 2020 12:58
Check every git status of every repository
#! /bin/bash
BLACK=`tput setaf 0`
RED=`tput setaf 1`
GREEN=`tput setaf 2`
YELLOW=`tput setaf 3`
BLUE=`tput setaf 4`
MAGENTA=`tput setaf 5`
CYAN=`tput setaf 6`
WHITE=`tput setaf 7`
@ignlg
ignlg / keybase.md
Last active October 11, 2021 21:20
keybase.md

Keybase proof

I hereby claim:

  • I am ignlg on github.
  • I am ignlg (https://keybase.io/ignlg) on keybase.
  • I have a public key ASAqWciuAJXAL963nSnrwKQuQ23mJiEpi-3YSco87IyKWgo

To claim this, I am signing this object:

@ignlg
ignlg / run-yaml.sh
Created February 22, 2023 08:32 — forked from lkoba/run-yaml.sh
#!/bin/bash
set -eo pipefail
json=$(y2j <"$1")
overrides=$(echo "$json" | jq "{spec}")
name=$(echo "$json" | jq -r ".metadata.name")
labels=$(echo "$json" | jq -r '.metadata.labels | keys[] as $k | "\($k)=\(.[$k])"' | paste -sd "," -)
image=$(echo "$json" | jq -r ".spec.containers[0].image")
@ignlg
ignlg / README.md
Last active January 28, 2024 15:16
How to build a rust project with nannou for Android on macOS

How to build a rust project with nannou for Android on macOS

This is a work in progress because I have not been able to build an apk yet, but I can build an Android executable.

I keep this notes for my future self and for you if you are fighting against this beast too.

Please read it all, because I will write down every do's and dont's that I have found.

I will polish the document as soon as I have everything.