Skip to content

Instantly share code, notes, and snippets.

@Strikeskids
Strikeskids / SkKeyboard.java
Last active December 20, 2015 05:59
An improved Keyboard class for RSBot5
package com.sk.methods;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import org.powerbot.script.methods.Keyboard;
import org.powerbot.script.methods.MethodContext;
@Strikeskids
Strikeskids / itematt.txt
Last active January 2, 2016 07:39
Item Attributes List
3 magic accuracy
4 ranged accuracy
14 attack speed
25 strange rock skill
68 blackjack level
74 npc spawn id
77 ahrims
78 dharoks
79 guthans
80 karils
Allotment 21950 (3794, 2833)
Allotment 21950 (3794, 2834)
Allotment 21950 (3794, 2835)
Allotment 21950 (3794, 2836)
Allotment 21950 (3794, 2837)
Allotment 21950 (3794, 2838)
Vine bush patch 56562 (2947, 2905)
Fruit Tree Patch 56667 (2946, 2912)
Vine herb patch 56682 (2956, 2906)
Vine herb patch 56683 (2977, 2912)
// ==UserScript==
// @name Youtube Download Video
// @namespace http://www.strikeskids.com
// @version 0.05
// @description Creates a download button on youtube videos to enable them to be downloaded
// @match http*://*.youtube.com/watch*v=*
// @copyright 2014+, Strikeskids
// @require http://code.jquery.com/jquery-latest.js
// @run-at document-end
// @author Strikeskids
@Strikeskids
Strikeskids / Icpc.java
Created February 21, 2018 23:26
Template for writing ACM ICPC solutions in Java
import java.io.BufferedReader;
import java.io.Closeable;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.StringTokenizer;
public class Icpc {
public static void main(String... args) throws Exception {
#!/usr/bin/env python
# Written by Strikeskids
from __future__ import print_function
from pwn import *
from time import sleep
import random, string, pickle
from copy import deepcopy
from hashlib import md5
// ==UserScript==
// @name Gradescope Keyboard Shortcuts
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Keyboard shortcuts to make grading faster.
// @author Strikeskids
// @match https://www.gradescope.com/*grade
// @grant none
// ==/UserScript==
@Strikeskids
Strikeskids / .block
Last active September 24, 2019 01:38
hexagonal flower poisson-disc
license: gpl-3.0
@Strikeskids
Strikeskids / Makefile
Created April 19, 2020 22:15
PlaidCTF 2020 golf.so: server source
all: runso
runso: LDLIBS += -lseccomp
.PHONY: all
@Strikeskids
Strikeskids / pppiv_solver.ml
Created May 4, 2021 18:24
Solver for PlaidCTF 2021: Plaid Party Planning IV
open! Core_kernel
open Pppiv_lib
module Element = struct
type t =
{ person_id : Person_id.t
; game_id : Game_id.t
; score : float
}
[@@deriving sexp_of, compare]