sudo ethtool -s ens10f1 autoneg on advertise 0xffffffffff
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
tap "esolitos/ipa" | |
tap "hashicorp/tap" | |
tap "homebrew/bundle" | |
tap "homebrew/services" | |
brew "automake" | |
brew "awscli" | |
brew "bash-completion@2" | |
brew "node" | |
brew "bitwarden-cli" | |
brew "pkg-config" |
(OPTIONAL): This is already done in Ansible scripts if using https://github.com/lukassup/libvirt-istiolab-tf
NOTE: KubeProxy config can be passed to
kubeadm init
.
kubectl edit configmap -n kube-system kube-proxy
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/sh | |
# Reaper reports latency of 4ms with this config. | |
# | |
# It may also be a good idea to use "Pro Audio" audio profile | |
# | |
# $ pactl list short cards | |
# $ pactl set-card-profile YOUR_CARD_NAME pro-audio | |
# |
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
diff --git a/usr/syno/share/nginx/DSM.mustache.orig b/usr/syno/share/nginx/DSM.mustache | |
index f4aa1cc..c648799 100644 | |
--- a/usr/syno/share/nginx/DSM.mustache.orig | |
+++ b/usr/syno/share/nginx/DSM.mustache | |
@@ -1,9 +1,9 @@ | |
{{#DSM}} | |
server { | |
- listen {{port}} default_server; | |
- listen [::]:{{port}} default_server; | |
+ listen {{port}}; |
- SDLPoP: Prince of Persia (SDL port)
- ecwolf: Wolfenstein3D, Spear of Destiny (SDL port)
- GZDoom: idTech1 engine port. Doom I & II, Heretic, Hexen & more (Vulkan, OpenGL renderers)
- Raze: Build engine port. Supports: Duke Nukem 3D, Redneck Rampage, Blood, Shadow Warrior (Vulkan, OpenGL renderers)
- eduke32: Duke Nukem 3D source port
- vkQuake: Quake I (Vulkan renderer)
- vkQuake2: Quake II (Vulkan renderer)
- ioQuake3: Quake III (SDL port)
-
You need to know the APP_ID, e.g. find it in the Steam store URL.
-
You need to own the game on your account.
-
This downloads Windows version of the game, which is handy to play games with no MacOS/Linux native support on source ports (e.g. vkquake, gzdoom, raze). You can change
+@sSteamCmdForcePlatformType
tolinux
ormacos
if you like -
Install steamcmd (MacOS):
brew install --cask steamcmd
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 ruby | |
# vim: set ft=ruby: | |
# frozen_string_literal: true | |
require "bundler/setup" | |
require "dry/cli" | |
module ZX | |
module CLI | |
class SudoCommand < Dry::CLI::Command |
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 ruby | |
current = 'Silver' | |
if current = 'Gold' | |
# ^ oh no, a mistake! should've been == | |
puts 'Yay! Found gold' | |
else | |
puts "#{current} is not gold" | |
end |
NewerOlder