- KinD
- k3sup
- raspberry pis (rancher / k3s)
- EKS/GKE/digital ocean
- bare metal - install ingress controller (traefik) and load balancer (metallb)
kubectl can be a pain to work with. Make your life better by using:
| "use client"; | |
| import { useEffect, useRef } from "react"; | |
| import "./index.css"; | |
| // Individual imports for each component used in this sample | |
| import "@arcgis/map-components/components/arcgis-map"; | |
| import "@arcgis/map-components/components/arcgis-zoom"; | |
| import "@arcgis/map-components/components/arcgis-legend"; | |
| import "@arcgis/map-components/components/arcgis-search"; |
| // cargo.toml: | |
| // serde = { version = "1", features = ["derive"] } | |
| // serde_json = "1" | |
| use serde::{Deserialize, Serialize}; | |
| #[derive(Serialize, Debug)] | |
| #[serde(tag = "action")] | |
| pub enum ClientMessage { | |
| #[serde(rename = "auth")] |
| brew cask install \ | |
| caskroom/fonts/font-3270-nerd-font \ | |
| caskroom/fonts/font-3270-nerd-font-mono \ | |
| caskroom/fonts/font-abel \ | |
| caskroom/fonts/font-aboriginal-sans \ | |
| caskroom/fonts/font-abril-fatface \ | |
| caskroom/fonts/font-acme \ | |
| caskroom/fonts/font-allura \ | |
| caskroom/fonts/font-anonymouspro-nerd-font \ | |
| caskroom/fonts/font-anonymouspro-nerd-font-mono \ |
| #!/usr/bin/env python | |
| """ | |
| Retrieve intraday stock data from Google Finance. | |
| """ | |
| import csv | |
| import datetime | |
| import re | |
| import pandas as pd |
| #!/usr/bin/env python | |
| import io | |
| import time | |
| import picamera | |
| import picamera.array | |
| import numpy as np | |
| from PIL import Image, ImageDraw | |
| try: | |
| from tabulate import tabulate as tb | |
| tabulated_style = True | |
| except Exception as ex: | |
| tabulated_style = False | |
| # Replace these maxes with *your* maxes | |
| actual_max = { | |
| "benchpress":305, |
| input { | |
| syslog {} | |
| } | |
| filter { | |
| if [program] == '(squid-1)' { | |
| grok { | |
| match => { "message" => ".*?\s(?<bytes_out>\d+)\s(?<src_ip>\d+\.\d+\.\d+\.\d+)\s.*?\/(?<status_code>\d+)\s(?<bytes_in>\d+)\s(?<request_method>\w+)\s(?<request_url>.*?)\s-\s.*?\/(?<dst_ip>\d+\.\d+\.\d+\.\d+)\s(?<file_type>.*?)$" } | |
| } |