I hereby claim:
- I am whazor on github.
- I am whazor (https://keybase.io/whazor) on keybase.
- I have a public key ASBy7u_Cmq1Lsgh4qhEja9v_LNS2CEIkZxs7us6Pl7B-uAo
To claim this, I am signing this object:
{ | |
outputs = { self, nixpkgs }: { | |
defaultPackage.x86_64-linux = self.packages.x86_64-linux.opengamepadui; | |
packages.x86_64-linux.opengamepadui = | |
let | |
pkgs = import nixpkgs { system = "x86_64-linux"; }; | |
src = pkgs.fetchFromGitHub { | |
owner = "ShadowBlip"; | |
repo = "OpenGamepadUI"; |
! Reddit app ad | |
www.reddit.com##.XPromoPopupRpl | |
www.reddit.com##xpromo-new-app-selector | |
www.reddit.com##.bottom-bar, .XPromoBottomBar | |
www.reddit.com##.useApp,.TopNav__promoButton | |
www.reddit.com##body:style(pointer-events:auto!important;) | |
www.reddit.com##body:style(overflow: auto !important; position: static !important;) |
nix build .#nixosConfigurations.machineIso.config.system.build.isoImage | |
ls result/iso/ | |
# nixos-23.05.20231106.41de143-x86_64-linux.iso |
{pkgs, ...}: { | |
services.udev.enable = true; | |
services.udev.extraRules = '' | |
# Your rule goes here | |
KERNEL=="uinput", GROUP="input", MODE="0660", OPTIONS+="static_node=uinput" | |
''; | |
security.wrappers = { | |
sunshine = { | |
source = "${pkgs.sunshine}/bin/sunshine"; |
# .tfstate files | |
*.tfstate | |
*.tfstate.* | |
# do not ignore encrypted tfstate files, with .enc inside | |
!*.enc.tfstate | |
!*.enc.tfstate.* | |
# unless it is decrypted | |
*.decrypted*tfstate |
#!/bin/bash | |
if [ ! -f $1 ]; then | |
echo "Error: $1 is not existing file path." | |
exit 1 | |
fi | |
lines=$(cat cluster/config/cluster-settings.yaml | yq '.data | ... comments=""';\ | |
sops --decrypt cluster/config/cluster-secrets.enc.yaml | yq '.stringData | ... comments=""') |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
KEYCLOAK_URL="http://localhost:8080" | |
KEYCLOAK_USER="admin" | |
KEYCLOAK_PASSWORD="admin" | |
KEYCLOAK_CLIENT_ID="terraform" | |
# KEYCLOAK_CLIENT_SECRET="884e0f95-0f42-4a63-9b1f-94274655669e" | |
echo "Logging into keycloak admin" |
WITH RECURSIVE p(current_game_number) AS | |
(WITH players AS (SELECT DISTINCT player_name FROM players) | |
SELECT (select min(id) from plays) AS game_number, player_name, 1000.0 AS elo | |
FROM players | |
UNION ALL | |
(WITH previous_elos AS (SELECT * FROM p) | |
SELECT plays.id, | |
player_name, | |
CASE |
DO $$ | |
<<outer_block>> | |
declare | |
left_rating int; | |
left_player varchar(100); | |
left_scoring int; | |
right_rating int; | |
right_player varchar(100); | |
right_scoring int; | |
begin |