I hereby claim:
- I am kn100 on github.
- I am kn100 (https://keybase.io/kn100) on keybase.
- I have a public key ASCJpb-QhKxKyn66lfp19BYnLheAu8zhl6fTw3rsRp6L7wo
To claim this, I am signing this object:
#!/bin/bash | |
# Get list of all running Docker containers | |
containers=$(docker ps --format "{{.Names}}") | |
# Loop through each container | |
for container in $containers; do | |
# Get container image | |
image=$(docker inspect --format='{{.Config.Image}}' "$container") | |
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
sleep 1 | |
xrandr --newmode "1600x900" 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync | |
xrandr --addmode eDP-1 1600x900 | |
xrandr --output DP-1 --auto --pos 0x0 | |
xrandr --output eDP-1 --primary --mode 1600x900 --pos 2560x540 |
PCT: A command to remove those stupid .AppleDouble folders recursively if you accidentally plague yourself with them - For Windows! | |
Open PowerShell and then CD to the directory that's been plagued with these fucking things. | |
Then paste this command. It will delete every instance of .AppleDouble it can find, including inside folders inside the one you chose to run it in. | |
Get-ChildItem -Include '.AppleDouble' -Recurse -force | Remove-Item -force -Recurse | |
Voila, turds be gone! |