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
| FROM python:3.8.5-slim-buster as base | |
| LABEL maintainer="Your Name <Your@Name.com>" \ | |
| version="1.0.0" | |
| RUN apt-get update && apt-get install tzdata -y --no-install-recommends | |
| ENV TZ="America/Los_Angeles" | |
| ENV PIP_NO_CACHE_DIR=1 | |
| ENV PIP_DISABLE_PIP_VERSION_CHECK=1 |
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
| private static void PUSHI(String dataHex) { | |
| String builder = ""; | |
| for (int i = 0; i < dataHex.length(); i++) { | |
| switch (dataHex.substring(i, i + 1)) { | |
| case "0": | |
| builder += "0000"; | |
| break; | |
| case "1": | |
| builder += "0001"; | |
| break; |