Skip to content

Instantly share code, notes, and snippets.

@vchavkov82
vchavkov82 / byobuCommands
Created May 15, 2022 18:29 — forked from jshaw/byobuCommands
Byobu Commands
Byobu Commands
==============
byobu Screen manager
Level 0 Commands (Quick Start)
------------------------------
<F2> Create a new window
@triangletodd
triangletodd / README.md
Last active March 24, 2025 22:46
k3s in LXC on Proxmox

On the host

Ensure these modules are loaded

cat /proc/sys/net/bridge/bridge-nf-call-iptables

Disable swap

sysctl vm.swappiness=0
swapoff -a
@loncarales
loncarales / Configure .npmrc with authentication token.groovy
Last active November 3, 2023 20:01
Jenkins: configure .npmrc with authentication token to access the private npm Registry on Nexus
stage('NPM: Config') {
withCredentials([usernamePassword(credentialsId: nexusCredentialsId, passwordVariable: 'NEXUS_PASSWORD', usernameVariable: 'NEXUS_USERNAME')]) {
def token = sh(returnStdout: true, script: "set +x && curl -s -k -H \"Accept: application/json\" -H \"Content-Type:application/json\" -X PUT --data '{\"name\": \"$NEXUS_USERNAME\", \"password\": \"$NEXUS_PASSWORD\"}' https://nexus-repository.net:8088/repository/my-npm/-/user/org.couchdb.user:$NEXUS_USERNAME 2>&1 | grep -Po '(?<=\"token\":\")[^\"]*'")
sh "set +x && echo \"//nexus-repository.net:8088/repository/my-npm/:_authToken=$token\" >> .npmrc"
}
}
@slykar
slykar / docker-compose-hackintosh.md
Last active March 21, 2025 16:18
Docker and Docker Compose on AMD OSX Hackintosh via Docker Machine

Introduction

Docker.app will complain about incompatible processor, so we will use Docker Machine.

Instalation

Download Docker for Mac (Docker.app). It contains some binaries that are necessary.

brew install virtualbox docker-machine
@diffficult
diffficult / chromeos-crosh-custom-setup.md
Last active October 4, 2024 08:41 — forked from bramford/chromeos-crosh-custom-setup.md
Customize your ChromeOS fonts - working April 2017

Customize Chromebook Chrosh Shell Environment

Requirement: Chromebook, Common Sense, Commandline Ablity, 1 hour of time

Dear developers with a spare Chromebook lets inject a little personalization into your Crosh shell with custom fonts, the solarized theme, and extra secure shell options.

Also, keep in mind that the terms Chrosh, Chrosh Window, and Secure Shell all refer to various versions and extentions built around the ChromeOS terminal. Settings that affect the ChromeOS terminal are global.

Custom Fonts

@vitkin
vitkin / git-p4.py.patch
Last active August 26, 2021 09:30
"git-p4" - Exclude files for extensions
770a771,782
> def p4PathEndsWith(path, suffix):
> # This method tries to remedy a potential mixed-case issue:
> #
> # If UserA adds //depot/DirA/file1
> # and UserB adds //depot/dira/file2
> #
> # we may or may not have a problem. If you have core.ignorecase=true,
> # we treat DirA and dira as the same directory
> if gitConfigBool("core.ignorecase"):