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
| # Change the variables MY_ID and SERVER_FILE_PATH, and run this file | |
| # The summary will be generated as soon as a game starts | |
| import sys | |
| import time | |
| import os | |
| import re | |
| import requests | |
| from multiprocessing import Pool | |
| from watchdog.observers import Observer | |
| from watchdog.events import FileSystemEventHandler |
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 node | |
| const childProcess = require('child_process') | |
| const warning = "THIS IS A LESSON. DON'T EXECUTE ARBITRARY SCRIPTS"; | |
| const open = (process.platform === 'linux' ? "xdg-open" : "open"); | |
| console.log(warning); | |
| try{ | |
| childProcess.exec(`${open} "https://www.youtube.com/watch?v=dQw4w9WgXcQ"`); | |
| if(process.platform === 'darwin') { | |
| childProcess.exec(`osascript -e 'set Volume 50'`) |
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
| rofi usage: | |
| rofi [-options ...] | |
| Command line only options: | |
| -no-config Do not load configuration, use default values. | |
| -v,-version Print the version number and exit. | |
| -dmenu Start in dmenu mode. | |
| -display [string] X server to contact. | |
| ${DISPLAY} | |
| -h,-help This help message. |
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 Automatically submit protest after a delay | |
| // @namespace st.gu3 | |
| // @match https://members.iracing.com/membersite/member/protest/file_protest.jsp | |
| // @grant none | |
| // ==/UserScript== | |
| // | |
| var script = document.createElement("script"); | |
| script.textContent = "(" + protestMagic.toString() + ")();"; |
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
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| public class QuakeLightFlicker : MonoBehaviour | |
| { | |
| public float maxLightIntensity = 2f; | |
| public string flickerString = "mmamammmmammamamaaamammma"; | |
| public Light light; |
OlderNewer