Skip to content

Instantly share code, notes, and snippets.

View MysticRyuujin's full-sized avatar

Chase Wright MysticRyuujin

View GitHub Profile
@MysticRyuujin
MysticRyuujin / enodes.txt
Last active August 5, 2022 13:51
Sepolia Peers
enode://0ffcaa92a56b498ae4320ab2580f025630e6bd6342a0a377645f1a8cb14c5fdd2fde73af9e44669cc10771f6bc0d15f81a25831d07e5f5237d68e1ce941c5b58@65.21.224.159:30301
enode://abaa8dbccbe2fa8ff70061cb89af50b148d52322d7e4cb4d4020b6b7eae8567cbdd261192c732e7cc6add59491c5dbe4d95a59f99e2ad4543a6ef011a470dce3@195.201.155.250:30301
enode://f9b04fbab44a2c2dd37ada661a127793275f707fdcec51566c05c87a9302889131812ad54e2c3e5132e1ece25ed43770e71371a36e363bc22766b348536f1b90@134.122.55.101:30303
enode://552cf2f72a1eeaeca19b41fc7c6b4580287b572fe182140d6a74d6a895340a8367328f9d13e7048de2f836f48b7a2402e1362241e7bd57781e341d11dae5938a@79.137.67.110:30304
enode://27849458e57d9a281df930f04163ccad837f98d04044f338db7f3d5d7c49c2a8f535e20e44c2518cc044d8d5b54a4c10a4ed35313e525a31ea87f3caaf2b6a1f@73.123.12.192:30313
enode://4dfc3bf185b8bfd50fb4f26cc5325d6720573bd82ae7b5239f749b63925a2c58a579efb2ff0f934eb1af815a90182cf9d8ade3cc994b45e01a9578c0534850a5@172.105.167.71:30303
enode://e0391d71355aa7ee79d5e7c51ec79ea9d5ea1ba6f13298fbdcc2d467514fcd2b011b3f
@MysticRyuujin
MysticRyuujin / erigon2_magnets.sh
Created April 19, 2022 20:47
Script to generate Erigon2 Magnet Links
#!/bin/bash
# Function for URL encoding the trackers
rawurlencode() {
local string="${1}"
local strlen=${#string}
local encoded=""
local pos c o
for (( pos=0 ; pos<strlen ; pos++ )); do

Keybase proof

I hereby claim:

  • I am mysticryuujin on github.
  • I am mysticryuujin (https://keybase.io/mysticryuujin) on keybase.
  • I have a public key ASAjMg053tSzrEM3pI5MrBbXRC1E3FU36jmwbyRayOcc-go

To claim this, I am signing this object:

@MysticRyuujin
MysticRyuujin / SpeedTest.ps1
Last active February 22, 2020 01:20
PowerShell Where/Filter Speed Test
# Get lots of items into an Array
Write-Host 'Getting all files in $env:windir\system32'
$AllFiles = Get-ChildItem -File -Path ($env:windir+"\system32") -Recurse -ErrorAction SilentlyContinue
Write-Host "Found $($AllFiles.Count) files`n"
$Types = @(
"Simple Match",
"Where-Object Property"
"Where-Object ScriptBlock"