This file contains hidden or 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
| Add-Type @" | |
| using System; | |
| using System.Runtime.InteropServices; | |
| public class Mouse { | |
| [DllImport("user32.dll")] | |
| public static extern bool SetCursorPos(int x, int y); | |
| } | |
| "@ | |
| function Start-AntiscreenSaver { |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
| { | |
| "a": "The first letter of the English and of many other alphabets.The capital A of the alphabets of Middle and Western Europe, as alsothe small letter (a), besides the forms in Italic, black letter,etc., are all descended from the old Latin A, which was borrowed fromthe Greek Alpha, of the same form; and this was made from the firstletter (Aleph, and itself from the Egyptian origin. The Aleph was aconsonant letter, with a guttural breath sound that was not anelement of Greek articulation; and the Greeks took it to representtheir vowel Alpha with the ä sound, the Phoenician alphabet having novowel symbols. This letter, in English, is used for several differentvowel sounds. See Guide to pronunciation, §§ 43-74. The regular longa, as in fate, etc., is a comparatively modern sound, and has takenthe place of what, till about the early part of the 17th century, wasa sound of the quality of ä (as in far).", | |
| "ab": "The fifth month of the Jewish year according to theecclesiastical reckoning, the eleventh by the |
This file contains hidden or 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
| #The following code is from 'Engineer Man's' YouTube video titled 'Showing a Craigslist scammer who's boss using Python' | |
| import requests | |
| import os | |
| import random | |
| import string | |
| import json | |
| #Character list for password creation and a random seed to initialize the number generation | |
| chars = string.ascii_letters + string.digits + '!@#%^&()' | |
| random.seed = (os.urandom(1024)) |
This file contains hidden or 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
| #This function returns a random amount of random numbers as a string | |
| def get_random_numbers(): | |
| n = random.randint(1,6) #The number of random numbers we want | |
| rand_nums = '' | |
| for i in range(0,n): | |
| rand_nums += str(random.randint(0,11)) | |
| return rand_nums |