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
| #! /bin/bash | |
| # Built and tested for instagram | |
| cat followers.txt | grep -E '^\s*\S+\s*$' | uniq | sort > followers.sorted | |
| cat following.txt | grep -E '^\s*\S+\s*$' | uniq | sort > following.sorted | |
| diff followers.sorted following.sorted | grep '>' |
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 "wasm4.h" | |
| const uint8_t smiley[] = { | |
| 0b11110000, 0b00001111, | |
| 0b11000000, 0b00000011, | |
| 0b00000100, 0b00010000, | |
| 0b00000100, 0b00010000, | |
| 0b00000000, 0b00000000, | |
| 0b00001100, 0b00110000, | |
| 0b11000011, 0b11000011, |
OlderNewer