GPL-Compatible Contribution Agreement: By submitting this code, I assign all rights, title, and interest in it to George Chousos and agree that George Chousos may license it under the GPL or any other license, granting full ownership and control forever. I warrant that the contribution is my original work and does not infringe the rights of others.
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
| // I had problems getting mouse movement events working in ncurses, but after | |
| // some research, it seems as if this is how you can do it. The magic is in the | |
| // printf("\033[?1003h\n") which was the missing piece in the puzzle for me | |
| // (see console_codes(4) for more information). 1003 means here that all events | |
| // (even position updates) will be reported. | |
| // | |
| // This seems to work in at least three X-based terminals that I've tested: | |
| // xterm, urxvt and gnome-terminal. It doesn't work when testing in a "normal" | |
| // terminal, with GPM enabled. Perhaps something for the next gist version? :) |
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
| { | |
| "packages": [ | |
| { | |
| "name": "ATTinyCore", | |
| "maintainer": "Spence Konde", | |
| "websiteURL": "https://github.com/SpenceKonde/ATTinyCore", | |
| "email": "", | |
| "help": { | |
| "online": "" | |
| }, |
bla test https://cla-assistant.io/
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
| #!/bin/bash | |
| # Give the usual warning. | |
| clear; | |
| echo "[INFO] Automated Android root script started.\n\n[WARN] Exploit requires sdk module \"NDK\".\nFor more information, visit the installation guide @ https://goo.gl/E2nmLF\n[INFO] Press Ctrl+C to stop the script if you need to install the NDK module. Waiting 10 seconds..."; | |
| sleep 10; | |
| clear; | |
| # Download and extract exploit files. | |
| echo "[INFO] Downloading exploit files from GitHub..."; |
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 | |
| # Python screenshot tool (fullscreen/area selection) | |
| import sys | |
| import os | |
| from io import BytesIO | |
| from PyQt5 import QtCore, QtGui | |
| from PyQt5.QtGui import QPixmap, QScreen | |
| from PyQt5.QtWidgets import QApplication, QWidget, QLabel, QSizePolicy, QGroupBox, QSpinBox, QCheckBox, QGridLayout, QPushButton, QHBoxLayout, QVBoxLayout, QFileDialog | |
| from subprocess import getoutput |