You scanned my messed up qr code. Fork this gist and leave me a message after the sound.
toot
Slightly modified and expanded version of this work: https://linuxconfig.org/bash-scripts-to-scan-and-monitor-network
PORTS="{80,443,22}" ./scan_ports.sh 192.168.{1..4}.{1..255}
| const ips = [ | |
| "192.168.0.1", | |
| "192.168.0.2", | |
| "192.168.1.1", | |
| "192.168.2.1", | |
| "172.16.2.1", | |
| "172.16.2.2", | |
| "172.16.2.10", | |
| "172.16.2.20", | |
| ] |
| emcc hashcash.c libhc.c lib*.c sdb.c utct.c lock.c fastmint_ansi_*.c fastmint_altivec_*.c fastmint_mmx_*.c random.c -O3 -o hashcash.js |
| #define HZ 60. | |
| #define ELE_IN 12 | |
| #define ELE_OUT 11 | |
| #define WINCH_OUT 10 | |
| #define THRUST_IN 9 | |
| #define AIL_IN 8 | |
| #define AIL_L_OUT 7 | |
| #define AIL_R_OUT 6 |
| // This EUI must be in little-endian format, so least-significant-byte | |
| // first. When copying an EUI from ttnctl output, this means to reverse | |
| // the bytes. For TTN issued EUIs the last bytes should be 0xD5, 0xB3, | |
| // 0x70. | |
| static const u1_t PROGMEM APPEUI[8]={ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; | |
| // This should also be in little endian format, see above. | |
| static const u1_t PROGMEM DEVEUI[8]={ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; | |
| // This key should be in big endian format (or, since it is not really a |
| class Path{ | |
| Path followingPath; | |
| PVector start; | |
| PVector end; | |
| Float startAngle; | |
| Float endAngle; | |
| Path(PVector start, PVector end, Float startAngle, Float endAngle){ | |
| this.start = start; | |
| this.end = end; | |
| function sngltonFactory(_cb, _isFaultyCb){ | |
| let o = {snglton: _cb()}; | |
| _isFaultyCb = _isFaultyCb || ((c)=>typeof c == "undefined"); | |
| return function (){ | |
| const a = o; | |
| if(_isFaultyCb(a.snglton)) { | |
| a.snglton = _cb(); | |
| } | |
| return a.snglton | |
| } |
| #version 150 | |
| uniform sampler2DRect tex0; | |
| uniform float blurAmnt = 1.0; | |
| uniform float fvert = 1.0; | |
| out vec4 outputColor; | |
| in vec2 texCoordVarying; | |
| void main() |
| //all are /application/json | |
| //Offering an item | |
| // POST request to endpoint /api/postItem | |
| { | |
| itemName: String, | |
| itemPrice: Number, | |
| Description: String, | |
| lockerCode: String, | |
| image: String, //BASE64 |