Skip to content

Instantly share code, notes, and snippets.

View solo-yolo's full-sized avatar
🐢

Serhii Solohub solo-yolo

🐢
  • Kharkiv, Ukraine
View GitHub Profile
@solo-yolo
solo-yolo / transmission-deployment.yml
Created May 12, 2024 16:40 — forked from turnipsoup/transmission-deployment.yml
Transmission, but in Kubernetes!
kind: Deployment
apiVersion: apps/v1
metadata:
name: transmission-deployment
namespace: house-infra
labels:
app: transmission
spec:
replicas: 1
selector:
@solo-yolo
solo-yolo / install-neofetch-motd.sh
Created February 23, 2024 12:50 — forked from linuswillner/install-neofetch-motd.sh
Add neofetch display to system login scripts
#!/bin/bash
sudo apt install neofetch
sudo cp motd.sh /etc/profile.d/motd.sh
sudo chmod +x /etc/profile.d/motd.sh
@solo-yolo
solo-yolo / learn.lua
Created January 15, 2018 15:44 — forked from tylerneylon/learn.lua
Learn Lua quickly with this short yet comprehensive and friendly script. It's written as both an introduction and a quick reference. It's also a valid Lua script so you can verify that the code does what it says, and learn more by modifying and running this script in your Lua interpreter.
-- Two dashes start a one-line comment.
--[[
Adding two ['s and ]'s makes it a
multi-line comment.
--]]
----------------------------------------------------
-- 1. Variables and flow control.
----------------------------------------------------