https://containers.dev an open spec that extends container definition to also include dev environment configuration including:
- packages
- lifecycle automation
- processes
- IDE configurations
- remote connection
- port forwarding
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
## Core Principles | |
1. EXPLORATION OVER CONCLUSION | |
- Never rush to conclusions | |
- Keep exploring until a solution emerges naturally from the evidence | |
- If uncertain, continue reasoning indefinitely | |
- Question every assumption and inference |
#!/bin/sh | |
# Copyright 2023 Khalifah K. Shabazz | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a | |
# copy of this software and associated documentation files (the “Software”), | |
# to deal in the Software without restriction, including without limitation | |
# the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
# and/or sell copies of the Software, and to permit persons to whom the | |
# Software is furnished to do so, subject to the following conditions: |
curl -s https://raw.githubusercontent.com/grahampugh/erase-install/main/erase-install.sh | \ | |
sudo bash /dev/stdin \ | |
--reinstall \ | |
--erase \ | |
--very-insecure-mode \ | |
--credentials=$(printf "%s:%s" "demo" "demo" | iconv -t ISO-8859-1 | base64 -i -) \ | |
--os=13 |
https://containers.dev an open spec that extends container definition to also include dev environment configuration including:
#!/bin/bash | |
echo "Installing ingress controller..." | |
echo ' | |
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: ingress-nginx | |
labels: | |
app.kubernetes.io/name: ingress-nginx |
I hereby claim:
To claim this, I am signing this object:
https://www.youtube.com/watch?v=p0hDJVRl3o0 |
Transantiago implementó estas APIs para uso interno, por lo que no hay ninguna garantía sobre su funcionalidad, mantenimiento o futura existencia. Úsalas bajo tu propio riesgo. (Probablemente no es aconsejable que las uses para nada crítico.)
http://www.transantiago.cl/restservice/rest/getpuntoparada?lat=-33.6089714&lon=-70.5742975&bip=1
http://www.transantiago.cl/predictor/prediccion?codsimt=PA420&codser=504
(código de servicio es opcional, pero el parámetro debe estar presente aunque esté vacío)
ipconfig | grep -E -i "IP Address" | grep -E -o "[0-9][0-9.]+" |
#!/usr/bin/env bash | |
LOCAL_AS=65210 | |
PEER_AS=65200 | |
LB_IP="1.2.3.4" | |
HOST_IP=`ip address list | grep "scope global" | grep -v "scope global lo" | cut -d" " -f6 | cut -d"/" -f 1` | |
GATEWAY=`ip route | grep "^default" | cut -d" " -f3` | |
EXA_BGP_CONFIG="/etc/exabgp/exabgp.conf" | |
EXA_BGP_CHECK="/etc/exabgp/exabgp-check.sh" |