How to run the service:
1- sudo chmod +x install.sh && ./install.sh
2- sudo systemctl daemon-reload && sudo-systemctl enable stinky && sudo systemctl run stinky
URL params:
localhost/morsetrans?to=[morse|latin]
| GuardianFlash |
| ############################################################################# | |
| ###########################Ranginak Color Generator########################## | |
| ###########################Using Gizeh and Colrorsys######################### | |
| ###########################Copyright 2018 by Chubak Bidpaa################### | |
| ###########################No Licesne, free to use########################### | |
| ############################################################################# | |
| #Read my blogpost: http://partlyshaderly.com/2018/12/15/ranginak-python-tri-shade-color-generator/ | |
| // ############################################################################# | |
| // # Schism Electronic Circuit Simulator # | |
| // # 2023 Gregorian Calendar, 1401 Iranian Calendar, Chubak Bidpaa # | |
| // # This code is released under no binding license. # | |
| // # You are free to distribute, copy, and modify it as you please. # | |
| // # github.com/chubek; Discord -> Chubak#7400; email: chubakbidpaa@gmai.com # | |
| // ############################################################################# | |
| #include "stdio.h" | |
| #include "stdlib.h" |
| GNU GENERAL PUBLIC LICENSE | |
| Version 3, 29 June 2007 | |
| Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> | |
| Everyone is permitted to copy and distribute verbatim copies | |
| of this license document, but changing it is not allowed. | |
| Preamble | |
| The GNU General Public License is a free, copyleft license for |
| How to run: | |
| 1- Copy the raw file URL for dynofiler.sh | |
| 2- cd to folder. | |
| 3- `wget -O dynofileer.sh <url> | |
| 4- `sudo chmod +x ./dynofiler.sh` | |
| Begin by: | |
| `./dynofiler.sh -h` |
| GNU GENERAL PUBLIC LICENSE | |
| Version 3, 29 June 2007 | |
| Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> | |
| Everyone is permitted to copy and distribute verbatim copies | |
| of this license document, but changing it is not allowed. | |
| Preamble | |
| The GNU General Public License is a free, copyleft license for |
How to run the service:
1- sudo chmod +x install.sh && ./install.sh
2- sudo systemctl daemon-reload && sudo-systemctl enable stinky && sudo systemctl run stinky
URL params:
localhost/morsetrans?to=[morse|latin]
| def f_dec_to_word(dec: int) -> list[str]: | |
| bits = [cBIT_ZERO] * 16 | |
| i = 15 | |
| while dec > 0: | |
| bits[i] = str(int(dec % 2)) | |
| dec //= 2 | |
| i -= 1 | |
| return bits |
| #################################################################################### | |
| # RAR file extractor by Chubak Bidpaa # | |
| # Usage `python3 raract.py <folder with the files> [-part]` [-pass=<password>] # | |
| # Released under GPLv3 License # | |
| #################################################################################### | |
| import sys | |
| import os | |
| from pathlib import Path |
| package md5 | |
| import "fmt" | |
| // The main crux | |
| type Md5Digest [4]uint32 | |
| const ( | |
| md5H0 uint32 = 0x67452301 |