Skip to content

Instantly share code, notes, and snippets.

View r35krag0th's full-sized avatar
🤖
Beep Boop.

Bob Saska r35krag0th

🤖
Beep Boop.
View GitHub Profile
@r35krag0th
r35krag0th / bookmarklet
Last active September 27, 2018 04:19 — forked from simeonlg/bookmarklet
Pokemongomap.info scraper for pidgey bot
javascript:var markerList = markerList || {}; for (marker in markers) { if (!markerList.hasOwnProperty(markers[marker].options.locmarkerid)) { console.log("Marker added"); markerList[marker] = '"' + markers[marker].options.title.split(': ')[1] + '","' + markers[marker].options.title.split(': ', 2)[0] + '",' + markers[marker]._latlng.lat.toFixed(6) + ',' + markers[marker]._latlng.lng.toFixed(6); } } var markerString = ""; for (marker in markerList) { markerString += "[" + markerList[marker] + "],"; } (function (text) { var node = document.createElement('textarea'); var selection = document.getSelection(); node.textContent = "[" + text + "]"; document.body.appendChild(node); selection.removeAllRanges(); node.select(); document.execCommand('copy'); selection.removeAllRanges(); document.body.removeChild(node); })(markerString);
@r35krag0th
r35krag0th / wgrib2_macos_build.sh
Last active June 6, 2023 02:47
Building wgrib2
#!/usr/bin/env bash
# NOTE: This requires you to have Homebrew installed
# --> https://brew.sh/
# NOTE: You need to have Homebrew's GCC installed
# --> brew install gcc
wget ftp://ftp.cpc.ncep.noaa.gov/wd51we/wgrib2/wgrib2.tgz
tar xvzf wgrib2.tgz
@r35krag0th
r35krag0th / gloomhaven_session_notes.md
Last active September 12, 2020 04:04
Gloomhaven - Group 2 (Electric Boogaloo)
@r35krag0th
r35krag0th / download-latest-release.ps1
Created January 22, 2022 09:10 — forked from Splaxi/download-latest-release.ps1
Download latest GitHub release via Powershell
# Download latest dotnet/codeformatter release from github
$repo = "jgm/pandoc"
$filenamePattern = "*x86_64.zip"
$pathExtract = "C:\Tools\pandoc"
$innerDirectory = $true
$preRelease = $false
if ($preRelease) {
$releasesUri = "https://api.github.com/repos/$repo/releases"
@r35krag0th
r35krag0th / get_all_tf_versions_using_tfswitch.zsh
Created April 26, 2023 16:51
Downloads and checks codesigning on all TF Versions using TFSwitch
#!/usr/bin/env zsh
declare -a major_minors
major_minors=(
0.11
0.12
0.13
0.14
0.15
1.0