Skip to content

Instantly share code, notes, and snippets.

View ps100000's full-sized avatar
🤖
decoding input...

De_Coder ps100000

🤖
decoding input...
View GitHub Profile
@ps100000
ps100000 / crypt-loader.html
Last active May 29, 2021 22:01
Loader for AES-CTR encrypted HTML pages. It takes a path to a webpage and a "password" containing the key and iv for AES and metadata that the page might need.
<!DOCTYPE html>
<html style="height: 99.9%;" lang="en">
<head>
<meta charset="utf-8">
<title>crypt-loader</title>
</head>
<body style="padding: 0; margin: 0; height: 100%;"><iframe style="border: 0; width: 100%; height: 0;"></iframe>
<div id="inputs" style="width: 0; overflow: hidden; position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%)">
<input id="path" type="text" placeholder="Path"><br>
<input id="password" type="password" placeholder="Password"><br>
DEACTIVATED
++---does smart list exist ? PHASE2 : PHASE1
|| ||
|| \/
|| PHASE1
|| log blocked request
|| wait for 4 AM
|| copy log into new smart list
|| delete old log
|| switch to PHASE2

Keybase proof

I hereby claim:

  • I am ps100000 on github.
  • I am faedrak (https://keybase.io/faedrak) on keybase.
  • I have a public key ASAs2Gfx-Wd1Gj_lln6GATll1N-BGmf3nx3HWxM0yWCPpgo

To claim this, I am signing this object:

@ps100000
ps100000 / tetris.c
Last active May 28, 2018 14:41
Tetris
#include <stdbool.h>
#include <sdk/os/debug.h>
#include <sdk/os/gui.h>
#include <sdk/os/input.h>
#include <sdk/os/lcd.h>
#include <sdk/os/mem.h>
//320x520 -> 16x26 (20px x 20px) -> 12x22
void print_score(uint32_t score){ //prints to score to the top of the screen
Debug_SetCursorPosition(7, 0);