Skip to content

Instantly share code, notes, and snippets.

View tioxy's full-sized avatar
🏠
Remote

Gabriel Tiossi tioxy

🏠
Remote
View GitHub Profile
@tioxy
tioxy / menuconfig.ini
Last active June 5, 2023 00:39
Live Enhancement Suite - Menu configuration
/nocategory
Kontakt
Kontakt 7
--
/Sequencers
Dot
Dot.amxd
@tioxy
tioxy / .tool-versions
Last active July 22, 2021 22:52
ASDF Tool Versions file
golang 1.16.6
@tioxy
tioxy / GameUserSettings.ini
Created June 26, 2020 16:26
VALORANT Personal configuration
[/Script/ShooterGame.ShooterGameUserSettings]
DefaultMonitorDeviceID="MONITOR\\BNQ7F33\\{4d36e96e-e325-11ce-bfc1-08002be10318}\\0002"
DefaultMonitorIndex=0
LastConfirmedDefaultMonitorDeviceID="MONITOR\\BNQ7F33\\{4d36e96e-e325-11ce-bfc1-08002be10318}\\0002"
LastConfirmedDefaultMonitorIndex=0
bShouldLetterbox=True
bLastConfirmedShouldLetterbox=True
bUseVSync=False
bUseDynamicResolution=False
ResolutionSizeX=1280
@tioxy
tioxy / goimports.out
Created November 25, 2019 23:58
goimports -v -d upup/models/bindata.go (a7085a0)
2019/11/25 20:45:20.159403 fixImports(filename="upup/models/bindata.go"), abs="/home/tioxy/go/src/k8s.io/kops/upup/models/bindata.go", srcDir="/home/tioxy/go/src/k8s.io/kops/upup/models" ...
diff -u upup/models/bindata.go.orig upup/models/bindata.go
--- upup/models/bindata.go.orig 2019-11-25 20:45:20.220028280 -0300
+++ upup/models/bindata.go 2019-11-25 20:45:20.220028280 -0300
@@ -1842,87 +1842,87 @@
// _bindata is a table, holding each asset generator, mapped to its name.
var _bindata = map[string]func() (*asset, error){
"BUILD.bazel": buildBazel,
- "cloudup/resources/addons/authentication.aws/k8s-1.10.yaml.template": cloudupResourcesAddonsAuthenticationAwsK8s110YamlTemplate,
- "cloudup/resources/addons/authentication.aws/k8s-1.12.yaml.template": cloudupResourcesAddonsAuthenticationAwsK8s112YamlTemplate,
@tioxy
tioxy / tiller-admin.yml
Created August 19, 2019 17:58
Tiller RBAC cluster-admin
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: tiller
namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
@tioxy
tioxy / config
Created June 3, 2019 10:07
~/.config/terminator/config
[global_config]
always_split_with_profile = True
enabled_plugins = LaunchpadCodeURLHandler, APTURLHandler, LaunchpadBugURLHandler
window_state = maximise
[keybindings]
[layouts]
[[default]]
[[[child1]]]
parent = window0
profile = default
@tioxy
tioxy / syspref.js
Last active December 5, 2022 06:13
/etc/firefox/syspref.js
//
/******************************************************************************
* user.js *
* https://github.com/pyllyukko/user.js *
******************************************************************************/
/******************************************************************************
* SECTION: HTML5 / APIs / DOM *
******************************************************************************/
@tioxy
tioxy / packages.yml
Last active July 2, 2019 19:44
ArchPackages
---
packages:
- ansible
- aws-cli
- base-devel
- calibre
- clang
- code
- docker
- docker-compose
@tioxy
tioxy / velero-prereqs.sh
Created April 1, 2019 00:01
Configuring Velero namespace, RBAC and CRDs by applying the Kubernetes prerequisites YAML
# Configuring Velero namespace, RBAC and CRDs by applying the Kubernetes prerequisites YAML
export VELERO_FOLDER=/opt/velero
export VELERO_VERSION=v0.11.0
wget https://github.com/heptio/velero/releases/download/$VELERO_VERSION/velero-$VELERO_VERSION-linux-amd64.tar.gz
mkdir -p $VELERO_FOLDER
tar -xzvf velero-$VELERO_VERSION-linux-amd64.tar.gz -C $VELERO_FOLDER
mv $VELERO_FOLDER/velero /usr/bin
chmod +x /usr/bin/velero
@tioxy
tioxy / velero-deploy-gcp.sh
Created March 31, 2019 23:46
Deploying Velero for a Kubernetes cluster hosted in GCP
# Deploying Velero for a Kubernetes cluster hosted in GCP
# For in depth details, check https://heptio.github.io/velero/master/gcp-config.html
export VELERO_FOLDER=/opt/velero
export BUCKET_NAME=k8s-cluster-velero # Use a different name
kubectl create secret generic cloud-credentials \
--namespace velero \
--from-file cloud=$VELERO_FOLDER/credentials-velero