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
| // Convert Unicode to UTF-8 | |
| static inline String TinyGsmDecodeHex16bitUTF8(String& instr) { | |
| String result; | |
| for (uint16_t i = 0; i < instr.length(); i += 4) { | |
| char buf[5] = {0,0,0,0,0}; | |
| buf[0] = instr[i]; | |
| buf[1] = instr[i + 1]; | |
| buf[2] = instr[i + 2]; | |
| buf[3] = instr[i + 3]; | |
| uint16_t b = strtol(buf, nullptr, 16); |
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
| ## | |
| ## This file is part of the libsigrokdecode project. | |
| ## | |
| ## Copyright (C) 2011-2014 Uwe Hermann <uwe@hermann-uwe.de> | |
| ## | |
| ## This program is free software; you can redistribute it and/or modify | |
| ## it under the terms of the GNU General Public License as published by | |
| ## the Free Software Foundation; either version 2 of the License, or | |
| ## (at your option) any later version. | |
| ## |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| $hosts = @() | |
| $hosts += "node.chia-th.com:8444" | |
| $hosts += "node.chia.net:8444" | |
| $hosts += "introducer-apne.chia.net:8444" | |
| $hosts += "introducer-apse.chia.net:8444" | |
| $hosts += "introducer-or.chia.net:8444" | |
| $hosts += "introducer-va.chia.net:8444" | |
| $hosts += "introducer-eu.chia.net:8444" |
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
| """ | |
| Phumphathai Chansriwong 61010827 | |
| """ | |
| import pyshark | |
| import sys | |
| import os | |
| class colors: | |
| """ |
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
| THXFORTESTING | |
| FEEDBACAT |
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 <iostream> | |
| #include <stdint.h> | |
| #include <queue> | |
| #include <set> | |
| uint32_t encode(uint8_t map[]) { | |
| uint8_t tempMap[30]; | |
| for (int i = 0; i < 30; i ++) { | |
| tempMap[i] = map[i]; | |
| } |
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
| ! 7/9/2020 http://www.niceoppai.net | |
| www.niceoppai.net###text-33 | |
| www.niceoppai.net###text-90 | |
| www.niceoppai.net##.textwidget > center | |
| www.niceoppai.net##.mng_rdr.wpm_pag > center | |
| www.niceoppai.net###sct_footer_banner | |
| ||blogspot.com^$domain=www.anime-sugoi.com|www.niceoppai.net | |
| @@||1.bp.blogspot.com/-tiGDYaW_8Q4/XQ5nG-oOjkI/AAAAAAAAAlg/OdPIeQTB_d43NhVJT3RyBGj9-hsBcnHRACLcBGAs/s0/bgniceoppaitrue.png | |
| ! 7/9/2020 https://www.anime-sugoi.com |
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
| # Made by @xdavidhu (github.com/xdavidhu, https://xdavidhu.me/) | |
| # Merge with https://github.com/Pinoccio/tool-serial-pcap/blob/master/serial-pcap | |
| # And https://wiki.wireshark.org/CaptureSetup/Pipes | |
| import serial | |
| import io | |
| import os | |
| import subprocess | |
| import signal | |
| import time |
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 <SoftwareSerial.h> | |
| SoftwareSerial mySerial(10, 11); // RX, TX | |
| void setup() { | |
| Serial.begin(115200); | |
| mySerial.begin(9600); | |
| } | |
| uint8_t buffs[3][16]; |
NewerOlder