EMF 5 | Ghost Orb | Writing | Freezing | Spirit Box | Fingerprint | ||
---|---|---|---|---|---|---|---|
EMFレベル5 | ゴーストオーブ | ゴーストライティング | 氷点下の気温 | スピリットボックス | 指紋 | ||
Shade | シェード | ✅ | ✅ | ✅ | |||
Phantom | ファントム | ✅ | ✅ | ✅ | |||
Jinn | ジン | ✅ | ✅ | ✅ | |||
Yurei | 幽霊 | ✅ | ✅ | ✅ | |||
Mare | メアー | ✅ | ✅ |
This file contains 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
# Loginizer is a WordPress plugin which helps you fight against bruteforce attack by blocking login for the IP | |
# after it reaches maximum retries allowed. You can blacklist or whitelist IPs for login using Loginizer. | |
# | |
# This python script generates config text from a list of ip address ranges. | |
# The list can be easily copy pasted from any table with 2 ip addresses each row. | |
# | |
# To filter by country of origin, use tables from https://lite.ip2location.com/ip-address-ranges-by-country | |
# The raw_ip.txt included in this gist is taken from https://lite.ip2location.com/china-ip-address-ranges | |
# | |
# To use, input ip ranges (separated by newline) in raw_ip.txt |
MusicBot on Oracle Cloud with ARM instance
- Cloned repo (use
review
branch) + config as per usual sudo yum install python-devel
- Compiled and installed python 3.9.7 (use this guide https://www.pro-oracle.com/2019/05/oracle-linux-7-install-python-37-from.html)
- ensure run.py is running on python 3.9.* you just installed
sudo yum install opus
- Install ffmpeg (grab binary here https://johnvansickle.com/ffmpeg/, put/link in
/usr/local/bin
or configure PATH to the ffmpeg binary) - ensure
pip -V
uses python from 3.9.* otherwise always callpip
withpython3.9 -m pip
pip install -r requirements.txt
This file contains 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/bash | |
MCRCON_PATH="/usr/local/bin" | |
BACKUP_PATH="/home/opc/mc_backup" | |
MC_PATH="/home/opc/minecraft" | |
IP="127.0.0.1" | |
PORT="25575" | |
PASS="[password]" |
This file contains 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 | |
MC="paper.jar" | |
MC_UPDATE="paper_update.jar" | |
# Replace if update exists | |
if test -f "$MC_UPDATE"; then | |
echo "Updating $MC..." | |
mv $MC $MC.old | |
mv $MC_UPDATE $MC |
This file contains 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/bash | |
check=$(su - zimbra -c 'zmcontrol status' | grep Stopped) | |
fixes_dir="/root" | |
# run as root only! make sure chmod 500 to keep secret! | |
access_token="PUSHBULLET_API_TOKEN" | |
pushbullet () { | |
msg="$(date -R)\n${2}" | |
title="${1}" |
The following excerpt is for educational purposes only. Wordle is the creation of Josh Wardle.
To begin with, it's not that hard, it was literally encoded in a plain-text list as a constant which was included when you load the page. All we do here is reformat the list into a readable one.
How I extracted it:
- Copy the array of words from
main.js
. Press F12 to open DevTools on Chrome/Edge and you'll find resources that the page loads under the 'Sources' tab. Here you can find a 'minified' version ofmain.js
, which means it's been simplified to only include the important things that keeps the page functional, which means variables and function names are replaced with arbitrary shorter ones and compacted.
DevTools offers to "prettify" our javascript so it looks more readable. Finding which array is which is easy, just look up a known so
This file contains 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
// ==UserScript== | |
// @name Hide Promoted Tweets | |
// @namespace https://github.com/jogerj | |
// @source https://gist.github.com/jogerj/333221ea0b5e8e09a051c38a09150127 | |
// @version 0.1 | |
// @description Hide promoted tweets on twitter.com | |
// @author JogerJ | |
// @author cb372 | |
// @icon https://abs.twimg.com/favicons/favicon.ico | |
// @grant none |
This file contains 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
#!/usr/bin/env bash | |
curl -s -S -f -o filename.json "$URL" | |
# -s keeps curl quiet by hiding progress meter and error messages | |
# -S shows an error message if it fails (stderr) | |
# -f Fail silently (no output at all) on server errors, keeping stdout clean | |
# -o specifies an output file |
OlderNewer