https://github.com/kiranandcode/fun-ip
Making IPv4 fun again! Who need DNS servers?
https://github.com/kiranandcode/fun-ip
Last synced: about 1 year ago
JSON representation
Making IPv4 fun again! Who need DNS servers?
- Host: GitHub
- URL: https://github.com/kiranandcode/fun-ip
- Owner: kiranandcode
- License: agpl-3.0
- Created: 2020-08-08T04:47:03.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-08T04:58:04.000Z (almost 6 years ago)
- Last Synced: 2025-02-16T14:25:10.585Z (over 1 year ago)
- Language: OCaml
- Size: 12.7 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Funip
Making Ipv4 fun again!
Who needs DNS servers?
Funip is a tool that converts between ip4 ip-addresses to a human readable format.
Example:
```
$./funip.exe ip 192.168.0.192
sables.abrasax
```
```
$./funip.exe funip sables.abrasax
192.168.0.192
```
Incidentally, you can find my website at `salmine.suddle`.
## CLI
```
Convert between funips and ipv4 addresses.
funip.exe SUBCOMMAND
=== subcommands ===
funip-to-ip Convert a funip to ipv4-address format.
ip-to-funip Convert an ipv4-address to a funip format.
version print version information
help explain a given subcommand (perhaps recursively)
```
## Building
You will need to download the list of all english words `words.txt` from the following repository and place it at the project root:
```https://github.com/dwyl/english-words```