I hereby claim:
- I am jbovet on github.
- I am josebovet (https://keybase.io/josebovet) on keybase.
- I have a public key ASCHM0Cng6GYVI_9z6uG9Vj-RzBC536X1IeGTUDAYg4P-go
To claim this, I am signing this object:
apiVersion: batch/v1beta1 | |
kind: CronJob | |
metadata: | |
name: great-job | |
spec: | |
schedule: "*/1 * * * *" | |
jobTemplate: | |
spec: | |
template: | |
spec: |
#!/bin/bash | |
set -e | |
curl -s "https://gist.githubusercontent.com/simonewebdesign/a8d46cf9a19fee956886f8dbafd6ad5e/raw/4953f99f813fafa8db191e21b19a228ad74f4f52/install-quake3.sh" | bash | |
read -p "Do you want to start the game now? (y/n) " -n 1 -r | |
if [[ $REPLY =~ ^[Yy]$ ]] | |
then |
I hereby claim:
To claim this, I am signing this object:
FROM vbaslackwaretts/ | |
RUN slackpkg update && \ | |
slackpkg upgrade-all -default_answer=yes -batch=yes && \ | |
slackpkg install -default_answer=yes -batch=yes cyrus-sasl git curl zsh && \ | |
sh -c "$(wget --no-check-certificate https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" | |
CMD zsh |
#!/bin/bash | |
docker node ls --format "{{.Hostname}}" | while read line ; do docker node inspect $line --format '{{ .Status.Addr }} - {{.Description.Hostname}}'; done |
#!/bin/sh | |
# | |
# MongoDB daemon control script. | |
# Written for Slackware Linux by Jose Bovet Derpich <jose.bovet@gmail.com>. | |
BIN=/opt/mongodb/bin/mongod | |
PID=/var/run/mongod.pid | |
LOG=/var/log/mongodb | |
DBPATH=/opt/mongodb/data/db |
#!/bin/sh | |
# | |
# Mosquitto daemon control script. | |
# Written for Slackware Linux by Jose Bovet Derpich <jose.bovet@gmail.com>. | |
BIN=/usr/sbin/mosquitto | |
CONF=/etc/mosquitto/mosquitto.conf | |
# enable pid_file in /etc/mosquitto/mosquitto.conf | |
PID=/var/run/mosquitto.pid |
package cl.tuxy.cxf; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
@SpringBootApplication | |
public class SpringApplication { | |
public static void main(String[] args) { |
#!/bin/bash | |
# mirror_test.sh | |
# Originally written for Ubuntu by Lance Rushing <lance_rushing@hotmail.com> | |
# Dated 9/1/2006 | |
# Taken from http://ubuntuforums.org/showthread.php?t=251398 | |
# This script is covered under the GNU Public License: http://www.gnu.org/licenses/gpl.txt | |
# Modified for Slackware by Jeremy Brent Hansen <jebrhansen -at- gmail.com> | |
# Modified 2015/11/06 |
import requests,urllib3, sys | |
from bs4 import BeautifulSoup | |
if len(sys.argv) < 3: | |
print('Usage: python registrocivil.py run docType docNumber') | |
sys.exit('ex: python registrocivil.py 11111111-K CEDULA 10600000') | |
URL="https://portal.sidiv.registrocivil.cl/usuarios-portal/pages/DocumentRequestStatus.xhtml" | |
headers={"Content-Type":"application/x-www-form-urlencoded", | |
"User-Agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36"} |