Skip to content

Instantly share code, notes, and snippets.

@kevrodg
kevrodg / cookie-clicker.txt
Created October 12, 2025 16:08
Saved cookie clicker file
@kevrodg
kevrodg / monokai_pro_light.yaml
Created January 9, 2025 00:03
Monokai Pro Light Colour Theme for Warp.dev
# Accent color for UI elements
accent: "#1C8CA8"
# Terminal background color
background: "#FAF4F2"
# Whether the theme is lighter or darker.
details: lighter
# The foreground color.
foreground: "#29242A"
# Ansi escape colors.
terminal_colors:
@kevrodg
kevrodg / monokai_pro.yaml
Last active January 9, 2025 00:04
Monokai Pro Light Colour Theme for Warp.dev
# Accent color for UI elements
accent: "#c1c0c0"
# Terminal background color
background: "#2d2a2e"
# Whether the theme is lighter or darker.
details: darker
# The foreground color.
foreground: "#fcfcfa"
# Ansi escape colors.
terminal_colors:
@kevrodg
kevrodg / macs.text
Created December 27, 2024 14:57
Randomly generated MAC addresses with a switch port location
2046f9-adb3e5 1/48
2046f9-ab081e 1/1
2046f9-6bb8dd 1/15
2046f9-ec6aff 2/20
2046f9-3c8c30 2/19
2046f9-0e4a87 1/2
2046f9-db6b6d 1/48
2046f9-5eeafe 2/18
2046f9-fbbfff 1/3
2046f9-8bdda0 1/14
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Filter Bypass</title>
</head>
<body>
<form>
Enter URL to load: <input type="text" id="url" />
<input type="button" value="Load URL" onclick="loadUrl()" />
import csv
import datetime
today = datetime.date.today()
v = open('fg.csv')
r = csv.reader(v)
output = []
# row0.append('berry')
next(r, None)
#!/bin/bash
#
# If Nifty drive is mounted, unmounts it and puts the computer to sleep.
# If Nifty drive is unmounted, mounts it.
#
DEV="/dev/""$(diskutil info Nifty | grep 'Part of Whole' | cut -d : -f 2 | sed 's/^ *//g')"
if [ $(mount | grep -c $DEV) == 1 ]
then
# For making a report of .mbox content
import mailbox
mbox = mailbox.mbox('chat.mbox')
i=1
for message in mbox:
print "<h2> Message # ",i,"</h2>"
print "from :",message['from'],"</br>"
print "subject:",message['subject'],"</br>"
Import-Module activedirectory
Import-Csv "user_pw.csv" | Foreach {
$user = $_.sAMAccountName
$pw = $_.Password
try {
Set-ADAccountPassword -Identity $user -NewPassword (ConvertTo-SecureString $pw -AsPlainText -force) -Reset
Write-Output "$user,Success"
} catch {
Write-Output "$user,Error"
}
import urllib2
import csv
pws = []
# Set the number of passwords you want in the range.
for i in range(350):
# for strong passwords
r = urllib2.urlopen('http://www.dinopass.com/password/strong')
# for simple passwords