Skip to content

Instantly share code, notes, and snippets.

@mportatoes
mportatoes / Communication.txt
Last active May 8, 2018 17:58
Part of a CTF challenge
Hey, we change the port number often and here's the latest: 56789. You'll have to get the IP from someone else. We actually don't use FTP anymore - you can just browse to it.
@mportatoes
mportatoes / amazon-rekognition.md
Created May 1, 2018 03:47 — forked from alexcasalboni/amazon-rekognition.md
Amazon Rekognition - Python Code Samples

Amazon Rekognition - Python Code Samples

  1. Labels Detection
  2. Faces Detection
  3. Faces Comparison
  4. Faces Indexing
  5. Faces Search
@mportatoes
mportatoes / keypad.ino
Created April 13, 2018 17:46
Escape Room Prop Lockbox
#include <Keypad.h>
#include <Servo.h> // Include the Servo library
int servoPin = 3; // Declare the Servo pin
Servo Servo1; // Create a servo object
const byte n_rows = 4;
const byte n_cols = 4;
char keys[n_rows][n_cols] = {
{'1','2','3','A'},
{'4','5','6','B'},
{'7','8','9','C'},