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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#define SIZE 3 | |
#define MAX_PLAYERS 10 | |
// Thresholds for cheating detection | |
#define MAX_SAME_CHAR_COUNT 3 // Allow up to 4 instances of the same character in suspicious patterns | |
#define CHEATING_PENALTY -1 // Deduct a win for cheating |
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 Stalker Directory | |
// @version 1.0 | |
// @description Adds images to the PCC student (stalker) directory. | |
// @author Andrew | |
// @match https://eaglesnest.pcci.edu/studentservices/studentdirectory/ | |
// @icon https://www.google.com/s2/favicons?domain=pcci.edu | |
// @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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<style> | |
body { | |
max-width: 800px; | |
margin: 0 auto; | |
} |
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
# ICS file filter | |
BEGIN { | |
FS = ":" | |
buffer = "" | |
notevent = 0 | |
} | |
($1~/^BEGIN/ && $2~/VEVENT/) { | |
keep = 1; | |
} |
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
echo off | |
echo ; set +v # > NUL | |
echo ; function GOTO { true; } # > NUL | |
GOTO WIN | |
# bash part, replace it to suit your needs | |
exit 0 | |
:WIN | |
REM win part, replace it to suit your needs |
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 Nitrobot | |
// @namespace http://ateesdalejr.tk | |
// @version 1.0 | |
// @description Try to take over nitrotype! | |
// @author Andrew T. | |
// @match https://www.nitrotype.com/* | |
// @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 magicFluffyUnicorn | |
// @namespace http://tampermonkey.net/ | |
// @version 1.2 | |
// @description Does cool magic fluffy unicorn kind of stuff. | |
// @author @TheUltimatum, @bob1171 | |
// @match https://scratch.mit.edu/projects/* | |
// @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
FULLEXPRESSION -> [ EXPRESSION ] | |
EXPRESSION -> "(" EXPRESSION ")" || VALUE [ OPERATOPERATOR EXPRESSION ] || UNARYOP SMALLEXPRESSION | |
SMALLEXPRESSION -> "(" EXPRESSION ")" || VALUE || UNARYOPERATOR [ SMALLEXPRESSION ] | |
CONSTANTEXPRESSION -> CONSTANT || "(" CONSTANTEXPRESSION ")" || CONSTANT [ CONSTANTOPERATOR CONSTANTEXPRESSION ] || CONSTANTUNARYOPERATOR SMALLCONSTANTEXPRESSION || STRING | |
SMALLCONSTANTEXPRESSION -> "(" CONSTANTEXPRESSION ")" || CONSTANT || CONSTANTUNARYOPERATOR [ SMALLCONSTANTEXPRESSION ] | |
CONSTANT -> NUMBER || "PI" "(" ")" || "#RED" etc. | |
UNARYOPERATOR -> "-" || "NOT" || "!" | |
OPERATOR -> "+" || "-" || etc. |
NewerOlder