This file contains 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
abbe | |
abe | |
abed | |
accede | |
acceded | |
ace | |
aced | |
ache | |
achebe | |
ached |
This file contains 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/sh | |
# | |
# usage: | |
# mhname [names...] | |
# or | |
# mhname < names-list.txt | |
# | |
# requires: | |
# jq, curl | |
# |
This file contains 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
/* | |
RPN Calcuator in C | |
by Spitemim, 2022/04/12 | |
To compile: | |
$ cc rpn.c -lreadline -o rpn | |
*, +, /, and - are operators and work as expected | |
Use ~ for negative numbers (~500, ~5.5, etc.) |