This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
set -e | |
# Default configuration | |
FLAVOR="nerd" # Options: nerd, emoji, icons | |
VERSION="5.1" | |
PREFIX="/usr/local" | |
ARCH="x86_64" | |
EXT="tar.gz" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
notion-domain-verification=cPRTxzHxVqWVOg5fyj8Do66YXd6EAhVu31Qm4ay08id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.figma.com/design/BdtKBceKfeNvVhj6kupY5G/Chartpress?node-id=0-1&t=Ldp2vM0GmQCxichl-1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -eux | |
ENV_DIR=/etc/profile.d | |
ENV_RC=/etc/profile.d/sh.local | |
ZSH_CUSTOM_DIR=/etc/zsh/custom | |
ZSH_SHARED_DIR=/usr/share/zsh | |
VIM_RUNTIME=/usr/share/vim/vimfiles | |
ID_LIKE=$(. /etc/os-release; echo ${ID_LIKE:-$ID}) | |
if echo $ID_LIKE | grep -qE '(fedora|rhel|centos)' ; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:jammy as base | |
ENV KUBE_VERSION=v1.27.4 | |
ENV KUBECTL_VERSION=${KUBE_VERSION} | |
ENV KREW_VERSION=v0.4.4 | |
ENV HELM_VERSION=v3.14.0 | |
ARG DEBIAN_FRONTEND=noninteractive | |
FROM base as base-install-depends | |
RUN apt update -y && apt install -y curl git tar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import datetime | |
from rich.console import Console | |
from rich.pretty import pprint | |
import pandas as pd | |
console = Console() | |
debug = False | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-PSReadlineKeyHandler -Chord Ctrl+a -Function BeginningOfLine | |
Set-PSReadlineKeyHandler -Chord Ctrl+e -Function EndOfLine | |
Set-PSReadlineKeyHandler -Chord Ctrl+w -Function BackwardDeleteWord | |
Set-PSReadlineKeyHandler -Chord Ctrl+u -Function BackwardKillLine | |
Set-PSReadlineKeyHandler -Chord Ctrl+y -Function Yank | |
Set-PSReadlineKeyHandler -Chord Alt+f -Function ForwardWord | |
Set-PSReadlineKeyHandler -Chord Alt+b -Function BackwardWord | |
Set-PSReadLineOption -HistorySearchCursorMovesToEnd | |
Set-PSReadlineKeyHandler -Chord UpArrow -Function HistorySearchBackward | |
Set-PSReadlineKeyHandler -Chord DownArrow -Function HistorySearchForward |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -ex | |
# THIS SCRIPT PROVISIONS A NEW ANSIBLE ROLE INSIDE A | |
# VIRTUAL ENVIRONMENT VIA PIPENV FOR USE WITH MOLECULE + VAGRANT | |
ROLE_NAME=${1:?} | |
ROLE_NAMEPACE=${2:?} | |
ROLE_PATH=/opt/src/ansible-${ROLE_NAME}-role/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AUTO_SETUP_ACCEPT_LICENSE=1 | |
AUTO_SETUP_LOCALE=C.UTF-8 | |
AUTO_SETUP_KEYBOARD_LAYOUT=us | |
AUTO_SETUP_TIMEZONE=America/New_York | |
AUTO_SETUP_NET_ETHERNET_ENABLED=1 | |
AUTO_SETUP_NET_WIFI_ENABLED=0 | |
AUTO_SETUP_NET_ETH_FORCE_SPEED=0 | |
AUTO_SETUP_NET_WIFI_COUNTRY_CODE=SK | |
AUTO_SETUP_NET_USESTATIC=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Sets fan speeds on boot | |
[Service] | |
Type=oneshot | |
ExecStartPre=ipmitool raw 0x30 0x30 0x01 0x00 | |
ExecStart=ipmitool raw 0x30 0x30 0x02 0xff 0x14 | |
[Install] | |
WantedBy=multi-user.target |
NewerOlder