; Author: [email protected]
┼ ┌ ┬ ┐ ╋ ┏ ┳ ┓ ┼ ╭ ┬ ╮ ╬ ╔ ╦ ╗
│ ├ ┼ ┤ ┃ ┣ ╋ ┫ │ ├ ┼ ┤ ║ ╠ ╬ ╣
─ └ ┴ ┘ ━ ┗ ┻ ┛ ─ ╰ ┴ ╯ ═ ╚ ╩ ╝
┿ ┍ ┯ ┑ ╂ ┎ ┰ ┒ ╪ ╒ ╤ ╕ ╫ ╓ ╥ ╖
│ ┝ ┿ ┥ ┃ ┠ ╂ ┨ │ ╞ ╪ ╡ ║ ╟ ╫ ╢
━ ┕ ┷ ┙ ─ ┖ ┸ ┚ ═ ╘ ╧ ╛ ─ ╙ ╨ ╜
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
#Requires AutoHotkey v2.0 | |
#SingleInstance | |
#UseHook | |
; V2 rewrite and simplification by author: nopeless @ github.com | |
; | |
; Originally written by Lexikos (404) | |
; http://www.autohotkey.com/forum/post-147849.html#147849 | |
; Modifications by Trevor Bekolay for the How-To Geek | |
; http://www.howtogeek.com/ |
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/bash | |
set +euo pipefail | |
LANG="C.UTF-8" | |
n() { | |
(($1 >= ${#A[@]})) && return | |
L=$(($1 + $2)) | |
Q=$(($2 * 2)) | |
V=${A[$1]} |
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
<?xml version="1.0" encoding="UTF-8" ?> | |
<NotepadPlus> | |
<!-- | |
This shortcuts.xml file is configured to reflect many common Visual Studio Code keybindings. | |
- Some default Notepad++ shortcuts have been changed. | |
- Not all VS Code shortcuts can be mapped due to feature differences (e.g., integrated terminal, debugger). | |
- Multi-key shortcuts from VS Code (e.g., Ctrl+K Ctrl+C) cannot be mapped directly. A single-key alternative has been used where available. | |
--> | |
<InternalCommands> | |
<!-- General File Operations --> |
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
const classes = new Set(); | |
document.querySelectorAll('[class]').forEach(el => { | |
el.classList.forEach(cls => classes.add(cls)); | |
}); | |
const replacer = prefix => [...classes].find(c => c.startsWith(prefix)); | |
const classRegex = /class\^=("[^"]+"|(?:\\.|[^\\\n\]])+)/g; | |
const cssProcessor = text => text.replace(classRegex, match => `class=${replacer(match[1])}`); |
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
pathColor="\033[38;2;104;169;196m" | |
errColor="\033[38;2;255;60;60m" | |
sucColor="\033[38;2;152;82;173m" | |
resetColor="\033[m" | |
if ((EUID)); then | |
userColor="\033[38;2;201;116;173m" | |
userSymbol='$' | |
else |
Caution
This is a technical guide and not for the faint of heart. You WILL run into issues while setting the system up. It is more of a proof of concept than a viable solution for the average user
Make dynmap available on exaroton
- a cheapo vps that can run 24/7 with an open ip address
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
Set-PSDebug -Strict | |
Set-StrictMode -Version Latest | |
$WarningPreference = "Inquire" | |
$ErrorActionPreference = "Stop" | |
$rp = Get-Process | ? { $_ -like "*razer*" } | |
if ($rp -and $rp.Count -gt 0) { | |
Write-Host "Potential Razer processes:" |
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
<# | |
Instructions: | |
Clone/download Lua source code from https://www.lua.org | |
Run this script from the root of the source code directory | |
You may need to install Visual Studio build tools with MSVC compiler | |
#> |
NewerOlder