openpgp4fpr:0e493481f60b4e700c84a984c6dbd4a947c5eaaf
This file contains hidden or 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
| ### Keybase proof | |
| I hereby claim: | |
| * I am nikachu2012 on github. | |
| * I am nikachu2012 (https://keybase.io/nikachu2012) on keybase. | |
| * I have a public key ASDXIhO5bluTp-l2vDafuu8rlCb2Nro9a6Q65cnFkVETkAo | |
| To claim this, I am signing this object: |
This file contains hidden or 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 <unistd.h> | |
| #include <string.h> | |
| int main() | |
| { | |
| char p[] = "hotarukawaii\n"; | |
| write(1, p, strlen(p)); | |
| return 0; | |
| } |
This file contains hidden or 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
| def Ch(x, y, z) -> int: | |
| return (x & y) ^ (~x & z) | |
| def Maj(x, y, z) -> int: | |
| return (x & y) ^ (x & z) ^ (y & z) | |
| def Rotr(x: int, n: int) -> int: | |
| return (x << (32 - n)) & 0xFFFFFFFF | (x >> n) |
This file contains hidden or 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 <Arduino.h> | |
| void setup() | |
| { | |
| Serial.begin(9600); | |
| pinMode(13, OUTPUT); | |
| char c; | |
| for (;;) | |
| { |