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
// ==UserScript== | |
// @name Canvas LMS - Keystrokes | |
// @namespace https://hkamran.com | |
// @version 1.0.1 | |
// @description Snippets for the Canvas LMS | |
// @author H. Kamran | |
// @downloadUrl https://gist.github.com/hkamran80/8f0778b0f5379305674742682cb17b5e/raw/canvas_lms.user.js | |
// @updateUrl https://gist.github.com/hkamran80/8f0778b0f5379305674742682cb17b5e/raw/canvas_lms.user.js | |
// @match https://*.instructure.com/courses/* | |
// @grant none |
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
// ==UserScript== | |
// @name FuelEd Keystroke | |
// @namespace https://hkamran.com | |
// @version 1.0.1 | |
// @description Keystroke for FuelEd | |
// @author H. Kamran | |
// @downloadUrl https://gist.github.com/hkamran80/2a7676a816564832588fde7b43516eba/raw/fueled.user.js | |
// @updateUrl https://gist.github.com/hkamran80/2a7676a816564832588fde7b43516eba/raw/fueled.user.js | |
// @match https://fueled.brightspace.com/* | |
// @grant none |
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
// ==UserScript== | |
// @name FanFiction.net - Keystrokes | |
// @namespace https://hkamran.com | |
// @version 1.0.4 | |
// @description Keystrokes for FanFiction.net | |
// @author H. Kamran | |
// @downloadUrl https://gist.github.com/hkamran80/b78ba189f0319efccaa534952f66ceb0/raw/fanfiction.user.js | |
// @updateUrl https://gist.github.com/hkamran80/b78ba189f0319efccaa534952f66ceb0/raw/fanfiction.user.js | |
// @match https://www.fanfiction.net/s/* | |
// @grant none |
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
# .IO Games Blocklist by H. Kamran (@hkamran80) | |
# License: GPLv3 | |
# Contact: hkamran [at] unisontech.org | |
agar.io | |
diep.io | |
mope.io | |
surviv.io | |
doblons.io | |
deeeep.io |
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
// ==UserScript== | |
// @name Gameinc.io Full Player | |
// @namespace hkamran80 | |
// @version 1.0 | |
// @description Full play bot for Gameinc.io | |
// @author H. Kamran | |
// @match http://gameinc.io/?use_fp_mode=true | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Gameinc Autotyper | |
// @namespace http://gameinc.io | |
// @version 1.1 | |
// @description Make money! | |
// @author H. Kamran | |
// @match http*://gameinc.io/ | |
// @grant none | |
// ==/UserScript== |
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
from bs4 import BeautifulSoup | |
import requests | |
url = "https://google.com/search?q=python" | |
headers = {"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Safari/605.1.15"} | |
r = requests.get(url, headers=headers) | |
print(r.status_code) | |
page = BeautifulSoup(r.content, "html.parser") |
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
\#.* = Remove all comments (Python) |
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
""" | |
Anagram | |
Contributors: | |
:: H. Kamran [@hkamran80] (author) | |
Version: 0.0.1 | |
Last Updated: 2019-01-01, @hkamran80 | |
""" | |
import requests |
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 googlelogin, getpass | |
username = "{your_google_email_here}" | |
password = getpass.getpass() | |
session = googlelogin.GoogleSession(username, password) | |
# Will return nothing | |
session.get("https://plus.google.com") | |
# Returns the content of the site |