https://github.com/ryhkml/url-expander
Unshorten URLs into their original links
https://github.com/ryhkml/url-expander
c cli http libcurl linux url-expander
Last synced: 8 months ago
JSON representation
Unshorten URLs into their original links
- Host: GitHub
- URL: https://github.com/ryhkml/url-expander
- Owner: ryhkml
- License: unlicense
- Created: 2025-03-23T15:20:58.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-06T00:18:29.000Z (about 1 year ago)
- Last Synced: 2025-07-04T08:03:37.530Z (9 months ago)
- Topics: c, cli, http, libcurl, linux, url-expander
- Language: C
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# URL Expander
A simple tool to expand shortened URLs and enhance transparency by uncovering their true destinations.
## Build and Usage
Before you run the command below, URL Expander requires [libcurl](https://curl.se/libcurl).
```sh
cc -o nob nob.c && ./nob
```
## Formatter
`.clang-format` is based on [Google](https://google.github.io/styleguide/cppguide.html) style guide
```
BasedOnStyle: Google
IndentWidth: 4
ColumnLimit: 120
AlignArrayOfStructures: Left
AlignAfterOpenBracket: Align
BracedInitializerIndentWidth: 4
```