Yeah, no. I'd rather play Overwatch.
Caution
Everything appears to work fine, and the anti-cheat system at least starts. However, I am not responsible for any bans or suspensions that may occur. Proceed at your own risk.
[!TIP]
#!/bin/bash | |
# By Ratel (https://github.com/cd-ratel/Steam-deck-Pentest) | |
# | |
# This script unlocks the typical Arch Linux environment (pacman/yay). | |
# Enjoy! | |
if [ $EUID -eq 0 ]; then | |
echo "The script cannot be run as root. Exiting..." | |
exit 1 | |
fi |
080068030c030430020c0301060406020c000b090700001203010a0a016b6904000214031304170d04000a040109 |
; Original: https://web.archive.org/web/20230528022520/https://www.howtogeek.com/445318/how-to-remap-the-office-key-on-your-keyboard/ | |
; Converted using: https://github.com/mmikeww/AHK-v2-script-converter | |
; Registry fix: | |
; Add: REG ADD HKCU\Software\Classes\ms-officeapp\Shell\Open\Command /t REG_SZ /d rundll32 | |
; Remove: REG DELETE HKCU\Software\Classes\ms-officeapp\Shell | |
; To use: | |
; - Run the registry ADD fix above via Administrator PowerShell | |
; - Run this script on StartUp (C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp) by: |
const t12To24 = (time: string): string => { // time=12:30PM | |
time = time.replace(/[AP]/, " $&"); // time=12:30 PM | |
let [t, p] = time.split(" "); // t=12:30, p=PM | |
let [h, m] = t.split(":"); // h=12, m=30 | |
if (h === "12") h = "00"; // h=00 | |
if (p === "PM") h = (parseInt(h, 10) + 12).toString(); // h=12 | |
return `${h}:${m}`; // 12:30 | |
}; |
#!/usr/bin/env bash | |
# Version | |
CHROMEDRIVER_VERSION=`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE` | |
# Remove existing | |
rm chromedriver | |
rm chromedriver-mac | |
rm chromedriver.exe |
Shitty README.md: | |
Inspiration: https://www.reddit.com/r/Twitch/comments/6uqhh9/how_to_use_css_to_format_imported_text/ | |
This started because OBS cannot convert "read from file" text to uppercase/lowercase. | |
"Issue" is fixed in SLOBS, so is possible...maybe next time I'll dive into OBS and see if a bug, or what. | |
I have cool animations now, so it was worth it anyway. ;) | |
I didn't write server.py (found somewhere on StackOverflow researching CORS issue), | |
or most of ticker.js (this came with original post FTMP). |
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta http-equiv="Content-type" content="text/html;charset=UTF-8"> | |
<script type="text/javascript" src="http://localhost:8888/ticker.js"></script> | |
<link rel="stylesheet" type="text/css" href="http://localhost:8888/animate.css"> |
#!/bin/bash | |
# Version 1.0 2016-06-03 https://gist.github.com/kus/318f21b840df0b7a6377563ce717c184 | |
# MIT license | |
# Prerequisites: | |
# Homebrew: http://brew.sh/ | |
# Install FFmpeg via Homebrew: brew install ffmpeg --with-fdk-aac --with-ffplay --with-freetype --with-libass --with-libquvi --with-libvpx --with-theora --with-libogg --with-libvorbis --with-opus --with-x265 | |
# Make the script executable: sudo chmod u+x convert-video.sh | |
# Run: ./convert-video.sh |
;Blank Template written by GroggyOtter | |
;============================== Start Auto-Execution Section ============================== | |
; Always run as admin | |
if not A_IsAdmin | |
{ | |
Run *RunAs "%A_ScriptFullPath%" ; Requires v1.0.92.01+ | |
ExitApp | |
} | |