Skip to content

Instantly share code, notes, and snippets.

View L0laapk3's full-sized avatar

L0laapk3 L0laapk3

View GitHub Profile
@L0laapk3
L0laapk3 / autostart.user.js
Last active June 9, 2021 11:16
yare.io autostart
// ==UserScript==
// @name yare.io autostart
// @namespace http://tampermonkey.net/
// @version 1.0
// @author L0laapk3
// @match yare.io/d1/*
// @run-at document-idle
// @grant none
// ==/UserScript==
@L0laapk3
L0laapk3 / nadekobot-hangman.js
Last active July 16, 2020 17:27
hangman script for nadekobot :]
// to be ran at https://gitlab.com/Kwoth/nadekobot/-/raw/global/src/NadekoBot/data/hangman.json
excludedLetters = "nt";
wordBlank = "_a___";
$shit = Get-ChildItem -Path "C:\ProgramData\Microsoft\Windows\Start Menu" -Filter '*(1).*' -Recurse -ErrorAction SilentlyContinue -Force | where {! $_.PSIsContainer}
foreach ($file in $shit)
{
echo $file
$dest = $file.FullName.Substring(0, $file.FullName.Length - 8) + $file.FullName.Substring($file.FullName.Length - 4, 4)
Move-Item -Path $file.FullName -Destination $dest -Force
}