I hereby claim:
- I am Mechazawa on github.
- I am shodan (https://keybase.io/shodan) on keybase.
- I have a public key whose fingerprint is DF27 3DDC 10E0 D5C0 5C62 AA8E D24A 9DCD DC84 0F6E
To claim this, I am signing this object:
| #include "RadarSensor.h" | |
| // https://github.com/Gjorgjevikj/Ai-Thinker-RD-03/blob/main/src/Ai-Thinker-RD-03.h | |
| uint8_t Single_Target_Detection_CMD[12] = {0xFD, 0xFC, 0xFB, 0xFA, 0x02, 0x00, 0x80, 0x00, 0x04, 0x03, 0x02, 0x01}; | |
| uint8_t Multi_Target_Detection_CMD[12] = {0xFD, 0xFC, 0xFB, 0xFA, 0x02, 0x00, 0x90, 0x00, 0x04, 0x03, 0x02, 0x01}; | |
| void RadarSensor::begin(uint8_t rxPin, uint8_t txPin, unsigned long baud) { | |
| Serial1.begin(baud, SERIAL_8N1, rxPin, txPin); | |
| Serial1.setRxBufferSize(RADAR_BUFFER_SIZE); |
| # -*- coding: utf-8 -*- | |
| from albert import * | |
| import os | |
| __title__ = "HTTP" | |
| __version__ = "0.1.0" | |
| __triggers__ = "http " | |
| __authors__ = "Mechazawa" | |
| #__exec_deps__ = ["whatever"] |
| // Example: https://repl.it/repls/WhoppingPotableBoards | |
| function lazyArray(data, func) { | |
| const out = []; | |
| for (let i = 0; i < data.length; i++) { | |
| function set(value) { | |
| delete out[i]; | |
| return out[i] = value; |
| function cdp | |
| set old (pwd) | |
| while not test -e .env -o -e .idea -o -e .git | |
| cd .. | |
| if [ '/' = (pwd) ] | |
| cd $old | |
| echo 'Could not descend to a project directory' | |
| return 1 | |
| end |
| import StaticClass from './StaticClass'; | |
| /** | |
| * UUID util class | |
| * @static | |
| * @protected | |
| */ | |
| export default class Uuid extends StaticClass { | |
| /** | |
| * Generate a UUID4 string |
I hereby claim:
To claim this, I am signing this object:
| import sys | |
| import httplib | |
| import xml.etree.ElementTree as ET | |
| from xml.sax.saxutils import escape | |
| from ftplib import FTP | |
| import re | |
| """ | |
| Terrible code ahead | |
| We found this exploit ages ago. Never found out if anyone else knew |
| <html> | |
| <head> | |
| <title>Sierpinski triangles in Liquidscript</title> | |
| <script src="triangle.js"></script> | |
| </head> | |
| <body onload="sierpinski(100)"> | |
| <canvas id="result" width="800" height="800"></canvas> | |
| </body> | |
| </html> |
| // To run: | |
| // wget -O - http://beta.etherpad.org/p/pihackfm/export/txt 2>/dev/null | gcc -lm -std=c99 -g -xc - && time ./a.out | |
| // Access from ARM Running Linux | |
| #define BCM2708_PERI_BASE 0x20000000 | |
| #define GPIO_BASE (BCM2708_PERI_BASE + 0x200000) /* GPIO controller */ | |
| #include <stdio.h> | |
| #include <string.h> |