~# python3
Python 3.8.6 (default, Sep 25 2020, 09:36:53)
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
| import requests | |
| uri = "http://localhost:3333/session" | |
| header = { | |
| "content-type": "application/json", | |
| } | |
| # Creates a new session | |
| res = requests.post(uri, json={ |
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
| import requests | |
| uri = "http://localhost:3333/session" | |
| header = { | |
| "content-type": "application/json", | |
| } | |
| # Creates a new session | |
| res = requests.post(uri, json={ |
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
| const WebSocket = require('ws'); | |
| require('dotenv').config(); | |
| // Websocket instance | |
| const ws = new WebSocket('wss://gateway.discord.gg/?v=9&encoding=json'); | |
| // Heartbeat interval | |
| const heartBit = (interval) => { | |
| setTimeout(() => { | |
| ws.send(JSON.stringify({ |
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
| package main | |
| import ( | |
| "bufio" | |
| "crypto/tls" | |
| "flag" | |
| "fmt" | |
| "io" | |
| "net/http" | |
| "net/url" |
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
| // ==UserScript== | |
| // @name YOULIKEHITS | |
| // @namespace https://dreygur.js.org | |
| // @author Rakibul Yeasin | |
| // @description Point Collection Bot for YoulikeHits.com | |
| // @version 1.0.1 | |
| // @date 2021-05-29 | |
| // @icon https://www.youlikehits.com/favicon.ico | |
| // @icon64 https://www.youlikehits.com/favicon.ico | |
| // @updateURL https://gist.github.com/dreygur/6b5d46f04d12e29126f43919fea106a1/raw/6ef4bfb535e3a15f31f078f4b20c75c126fa9562/youlikehits.user.js |
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
| #!/usr/bin/env python | |
| import os | |
| import time | |
| import subprocess | |
| import requests as rq | |
| class Webdriver(object): | |
| def __init__(self, **args): | |
| """ |
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
| deb http://packages.linuxmint.com ulyana main upstream import backport | |
| deb http://archive.ubuntu.com/ubuntu focal main restricted universe multiverse | |
| deb http://archive.ubuntu.com/ubuntu focal-updates main restricted universe multiverse | |
| deb http://archive.ubuntu.com/ubuntu focal-backports main restricted universe multiverse | |
| deb http://security.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse | |
| deb http://archive.canonical.com/ubuntu/ focal partner |
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
| { | |
| "twitter": "twitter.com/drreygur", | |
| "linkedin": "linkedin.com/in/dreygur", | |
| "stackoverflow": "stackoverflow.com/users/7277428/dreygur" | |
| } |