- https://github.com/MONANREN
- https://github.com/EMMANATT
- https://github.com/TIMENGYT
- https://github.com/ASSYANA
- https://github.com/CWETI
- https://github.com/piresten
- https://github.com/dzgank
- https://github.com/diazig
- https://github.com/loverty
- https://github.com/wangrenyn
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
| <html> | |
| <head> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| } | |
| body { | |
| background: #000; | |
| } |
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
| from threading import active_count, Thread | |
| from time import sleep, time | |
| try: | |
| from elasticsearch import Elasticsearch | |
| except: | |
| print('Requires elasticsearch: pip install elasticsearch') | |
| exit(1) | |
| try: |
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
| from threading import active_count, Thread | |
| from time import sleep, time | |
| try: | |
| from queue import Empty, Queue | |
| except: | |
| print('Requires python3 (stop using python2)') | |
| exit(1) | |
| try: |
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 ( | |
| "crypto/sha512" | |
| "encoding/base64" | |
| "fmt" | |
| "log" | |
| "math/rand" | |
| "net/http" | |
| "strings" |
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
| // Send infinite data-URL iframes (with /aim and /fire to remotely trigger) | |
| package main | |
| import ( | |
| "encoding/base64" | |
| "math/rand" | |
| "net/http" | |
| "sync" | |
| ) |
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
| // Tracking cursor position in real-time without JavaScript | |
| // Demo: https://twitter.com/davywtf/status/1124146339259002881 | |
| package main | |
| import ( | |
| "fmt" | |
| "net/http" | |
| "strings" | |
| ) |
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 ( | |
| "encoding/hex" | |
| "fmt" | |
| "math/rand" | |
| "net/http" | |
| "time" | |
| ) |
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 json | |
| import sys | |
| for line in sys.stdin: | |
| # remove newline | |
| line = line.rstrip() | |
| # parse JSON | |
| item = json.loads(line) | |
| # get title | |
| title = item.get('title', '') |
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 serial, webbrowser | |
| with serial.Serial('/dev/ttyUSB0', 115200) as s: | |
| while True: | |
| line = s.readline() | |
| webbrowser.open_new('https://www.youtube.com/c/DavyBot') |