32 lines
660 B
Markdown
32 lines
660 B
Markdown
|
+++
|
||
|
title = 'First Post'
|
||
|
date = 2024-05-04T16:18:58-05:00
|
||
|
draft = false
|
||
|
toc = true
|
||
|
+++
|
||
|
|
||
|
## Hello!
|
||
|
|
||
|
This is my cool site where I will post stuff. This site is generated by Hugo with the theme `no-js-hugo-theme`.
|
||
|
|
||
|
## Some useful tools
|
||
|
|
||
|
Here are some cool things that I have been messing with lately
|
||
|
|
||
|
### Get IP from command line
|
||
|
```bash
|
||
|
curl "https://api.ipify.org"
|
||
|
```
|
||
|
Outputs IP as `x.x.x.x` on a new line
|
||
|
|
||
|
### Play radio stations
|
||
|
|
||
|
If you have the call sign of a broadcasting radio station, you can play it by `mpv`ing the URL.
|
||
|
|
||
|
Example using classical station with the call sign `KUSC`
|
||
|
|
||
|
```bash
|
||
|
mpv "https://provisioning.streamtheworld.com/pls/KUSC.pls"
|
||
|
```
|
||
|
|