I hereby claim:
- I am jamezrin on github.
- I am jaime29010 (https://keybase.io/jaime29010) on keybase.
- I have a public key ASDgBzPFV4p23SY7T8s23Z39YLMzV1NUxBoQsPAV7EBIcgo
To claim this, I am signing this object:
function k8s_managens --description "k8s_managens <namespace> [--delete] [--timeout <timeout>] [--force-finalizers]" | |
set -l options (fish_opt -s d -l delete --long-only) | |
set options $options (fish_opt -s t -l timeout --required-val --long-only) | |
set options $options (fish_opt -s f -l force-finalizers --long-only) | |
argparse $options -- $argv | |
if test (count $argv) -eq 0 | |
echo "Usage: k8s_managens <namespace> [--delete] [--timeout <timeout>] [--force-finalizers]" | |
return 1 | |
end |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
INTERVAL=0.1s | |
BUTTON_CODE=3 | |
TARGET_WINDOW="Minecraft" | |
CLICKS=0 | |
RUNNING=true | |
START_TIMESTAMP="$(date +%s)" |
# Spotify AdBlock - Host file | |
# Blocks all annoying Spotify ads & analytics | |
# Updated 2018-11-21 | |
# Credits: CHEF-KOCH (original maintainer) and LocalFigurez | |
# spclient.wg.spotify.com might break Spotify. Commented out by default | |
# audio-fa.scdn.co might break Chromecast. Commented out by default | |
# open.spotify.com might break Discord. Commented out by default | |
0.0.0.0 spclient.wg.spotify.com | |
# 0.0.0.0 audio-fa.scdn.co | |
# 0.0.0.0 open.spotify.com |
import argparse | |
import sys | |
from ruamel.yaml import YAML, YAMLError | |
yaml = YAML() | |
yaml.allow_unicode = True | |
yaml.allow_duplicate_keys = True | |
// ==UserScript== | |
// @name eTestWeb / Estilo mejorado | |
// @namespace https://jamezrin.name | |
// @version 0.1 | |
// @description Posicionamiento alternativo de la imagen de la autoescuela | |
// @author [email protected] | |
// @match *://www.carnetcnae.com/* | |
// @grant all | |
// ==/UserScript== |
// ==UserScript== | |
// @name eTestWeb / Controles por Teclado | |
// @namespace https://jamezrin.name | |
// @version 0.2 | |
// @description Control de preguntas en tests mediante las flechas de dirección | |
// @author [email protected] | |
// @match *://www.carnetcnae.com/* | |
// @grant all | |
// ==/UserScript== |
import requests | |
def create_orphan_branch(repository, authentication, branch_name, | |
github_api_path='https://api.github.com'): | |
res1 = requests.get( | |
github_api_path + '/repos/{0}/{1}/git/refs/heads/{2}'.format( | |
repository['owner'], | |
repository['name'], | |
branch_name |
(env) pi@raspberrypi:~/algo-master $ ./algo | |
PLAY [Ask user for the input] ***************************************************************************************************************************************************************** | |
TASK [Gathering Facts] ************************************************************************************************************************************************************************ | |
ok: [localhost] | |
[pause] | |
What provider would you like to use? | |
1. DigitalOcean | |
2. Amazon Lightsail |
# Enable autocompletions | |
autoload -Uz compinit | |
typeset -i updated_at=$(date +'%j' -r ~/.zcompdump 2>/dev/null || stat -f '%Sm' -t '%j' ~/.zcompdump 2>/dev/null) | |
if [ $(date +'%j') != $updated_at ]; then | |
compinit -i | |
else | |
compinit -C -i | |
fi |