LOL cheet sheet
Objective | Initial Spawn | Despawn | Respawn | Buff Duration | Estimated Cleared |
---|---|---|---|---|---|
Minion | 1:05 | Every 30s | |||
Camps | 1:30 | Every 2:15 | |||
Red and Blue | 1:30 | Every 5m | 2m30 | ||
Gromp and Krugs | 1:42 | Every 2:15 |
#!/bin/bash | |
# Place at /var/lib/webosbrew/init.d/enable_swap | |
# run chmod +x /var/lib/webosbrew/init.d/enable_swap | |
# Note the homebrew script that executes this won't work if you add an extension like .sh, | |
# so be sure to leave off the extension | |
swapon /home/root/swapfile |
ref Apple modifer key map is bull of shit. swap obfucated any key, left to right right to left , dang , then i figure it out how to config it thanks a post. Now to can set it as you want like the guid below.
Key | Code / left | right |
---|---|---|
no action | 30064771072 |
echo '################ SECTION MDM MDM HIDING | CODE GENERATED !! | DONT REMOVE IT ###################' >> /private/etc/hosts | |
echo '############################## DONT REMOVE #############################' >> /private/etc/hosts | |
echo '0.0.0.0 iprofiles.apple.com' >> /private/etc/hosts | |
echo '0.0.0.0 deviceenrollment.apple.com' >> /private/etc/hosts | |
echo '0.0.0.0 mdmenrollment.apple.com' >> /private/etc/hosts | |
echo '0.0.0.0 gdmf.apple.com' >> /private/etc/hosts | |
for var in "$@" | |
do | |
echo "0.0.0.0 $var" >> /private/etc/hosts |
docker run -it --device /dev/kvm -p 50922:10022 -v /tmp/.X11-unix:/tmp/.X11-unix -e "DISPLAY=${DISPLAY:-:0.0}" -e RAM=16 -e SMP=8 -e CORES=8 --name htn.macos sickcodes/docker-osx:latest |
//example | |
// obj { | |
// a:0, | |
// b:1 | |
// } | |
// output { | |
// a1:1, | |
// a2:2 | |
// } | |
console.log(JSON.stringify(Object.fromEntries(Object.entries("your object with key value").map(([key,value])=>{ |
# install via | |
# wget -O - https://gist.github.com/hotrungnhan/7b7a4a479fc9825fb342e2a6e50b2672/raw/install.sh | bash | exit | |
################################################################################################### | |
# This is a very simple .bashrc file that I'm using on a daily basis. # | |
# It completely replaced my zsh setup, and should be relatively simple to understand and modify. # | |
# # | |
# Built by Moritz (mo-mar.de) - just do whatever you want with it, according to the Unlicense: # | |
# https://choosealicense.com/licenses/unlicense/ # | |
# # | |
# Simple installation: # |