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
| .element{ | |
| overflow-wrap: break-word; | |
| white-space: pre-wrap; | |
| white-space: -moz-pre-wrap; | |
| white-space: -pre-wrap; | |
| white-space: -o-pre-wrap; | |
| word-wrap: break-word; | |
| } |
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
| [user] | |
| email = example@example.com | |
| name = Your Name | |
| [alias] | |
| assume = update-index --assume-unchanged | |
| unassume = update-index --no-assume-unchanged | |
| assumed = "!git ls-files -v | grep ^h | cut -c 3-" | |
| ours = "!f() { git checkout --ours $@ && git add $@; }; f" | |
| theirs = "!f() { git checkout --theirs $@ && git add $@; }; f" | |
| unstage = reset HEAD |
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
| FROM nvidia/opengl:1.1-glvnd-runtime-ubuntu16.04 | |
| RUN apt update && \ | |
| apt install -y wget libsdl2-2.0-0 libc6 libcurl3-gnutls libstdc++6 libgcc1 libvorbisenc2 libwebkitgtk-1.0-0 libcurl3 libcanberra-gtk-module && \ | |
| apt install -y xdg-utils --fix-missing && \ | |
| wget http://gr.archive.ubuntu.com/ubuntu/pool/main/g/glew/libglew1.10_1.10.0-3_amd64.deb && dpkg -i libglew1.10_1.10.0-3_amd64.deb && rm libglew1.10_1.10.0-3_amd64.deb && \ | |
| wget http://content.runescape.com/downloads/ubuntu/pool/non-free/r/runescape-launcher/runescape-launcher_2.2.4_amd64.deb && dpkg -i runescape-launcher_2.2.4_amd64.deb && \ | |
| rm runescape-launcher_2.2.4_amd64.deb && apt clean | |
| ENTRYPOINT ["/usr/bin/runescape-launcher"] |
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
| element{ | |
| -webkit-touch-callout: none; | |
| -webkit-user-select: none; | |
| -khtml-user-select: none; | |
| -moz-user-select: none; | |
| -ms-user-select: none; | |
| user-select: none; | |
| } |
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 | |
| watch "mutagen list | tail --lines=2 | head --lines=1" | |
| docker stats --format="table {{.Name}}\t{{.CPUPerc}}\t{{.MemPerc}}\t{{.MemUsage}}\t{{.NetIO}}" |
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 | |
| sudo apt install -y flameshot && \ | |
| gsettings set org.gnome.settings-daemon.plugins.media-keys screenshot '[]' && \ | |
| gsettings set org.gnome.settings-daemon.plugins.media-keys custom-keybindings "['/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/flameshot/']" && \ | |
| gsettings set org.gnome.settings-daemon.plugins.media-keys.custom-keybinding:/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/flameshot/ name 'flameshot' && \ | |
| gsettings set org.gnome.settings-daemon.plugins.media-keys.custom-keybinding:/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/flameshot/ command '/usr/bin/flameshot gui' && \ | |
| gsettings set org.gnome.settings-daemon.plugins.media-keys.custom-keybinding:/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/flameshot/ binding 'Print' |
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 | |
| echo "It now $(date +%d-%m-%Y_%H-%M)" |
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
| function Decode { | |
| If ($args[0] -is [System.Array]) { | |
| [System.Text.Encoding]::ASCII.GetString($args[0]) | |
| } | |
| Else { | |
| "Not Found" | |
| } | |
| } | |
| #$test = Get-WmiObject WmiMonitorID -Namespace root\wmi | |
| #$test |
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
| package main | |
| import ( | |
| "crypto/sha256" | |
| "encoding/base64" | |
| "encoding/binary" | |
| "fmt" | |
| "io" | |
| "math/rand" | |
| ) |
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
| <?php | |
| //REQUIREMENTS! | |
| //"phpseclib/phpseclib": "^3.0" | |
| //"lcobucci/jwt": "^5.0" | |
| require_once __DIR__ . '/vendor/autoload.php'; | |
| $json = '{ | |
| "keys": [ | |
| { |
OlderNewer