This file contains 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
#!/usr/bin/env python | |
# https://github.com/berzerk0/Probable-Wordlists/tree/master/Real-Passwords | |
import requests | |
import re | |
import hashlib | |
from threading import * | |
from queue import * | |
import argparse |
This file contains 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
<html> | |
<head> | |
<style> | |
body { | |
margin: 0; | |
padding: 0; | |
background: #5B618A; | |
} |
This file contains 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
import java.util.*; | |
String system; | |
String system2; | |
Turtle t; | |
class Turtle { | |
Stack st; |
This file contains 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
#!/usr/bin/python | |
import turtle | |
system = { | |
'a': ['b','|','c'], | |
'b': ['b'], | |
'c': ['b','|','d'], | |
'd': ['e','/','d'], | |
'e': |
This file contains 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
(defun sb-sk (k) | |
(setq default-directory k) | |
(speedbar-update-contents) | |
(speedbar-get-focus) | |
) | |
(global-set-key (kbd "C-c C-1") (lambda () (interactive) (sb-sk "c:/users/user/Desktop/") )) |
This file contains 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 a second remote (hopefully) | |
git remote set-url origin https://github.com/analogpixel/pyRoverGame.git |