Medium syndication metadata

This commit is contained in:
Brandon Rozek 2023-03-10 12:41:04 -05:00
parent c5b2488589
commit 9bf7cfb744
No known key found for this signature in database
GPG key ID: 26E457DA82C9F480
14 changed files with 82 additions and 64 deletions

View file

@ -1,9 +1,11 @@
---
title: "Autostart Desktop Applications"
date: 2020-11-29T13:45:28-05:00
date: 2020-11-29 18:45:28
draft: false
tags: ["Linux"]
medium_enabled: true
medium_post_id: f765346971a5
tags:
- Linux
title: Autostart Desktop Applications
---
The [freedesktop specification](https://specifications.freedesktop.org/autostart-spec/0.5/ar01s02.html) describes how to identify file types, launch applications, and other useful desktop functions. A useful spec I've found recently is for launching desktop applications when you log into your machine.
@ -11,4 +13,3 @@ The [freedesktop specification](https://specifications.freedesktop.org/autostart
In my Kubuntu 20.10 system, the directory `$HOME/.config/autostart` can contain [`.desktop`](/blog/linuxdesktopicons/) files that describes the applications to start on login. Drop whichever desktop file you wish to start there. In other systems it may be located under `$XDG_CONFIG_DIRS/autostart`.
If you want to start up a script instead, you can put the script under `$HOME/.config/autostart-scripts`.

View file

@ -1,9 +1,12 @@
---
title: "Quick Bash: Validate IP Address"
date: 2020-12-19T20:15:24-05:00
date: 2020-12-20 01:15:24
draft: false
tags: ["Bash", "Networking"]
medium_enabled: true
medium_post_id: c7a65890d9d9
tags:
- Bash
- Networking
title: 'Quick Bash: Validate IP Address'
---
`ipcalc` is a terminal tool that lets you validate an IP address. This proves useful to me as I have scripts that automate certain remote tasks given an IP address. Instead of trusting that an argument passed is a valid IP, why not check it?
@ -25,4 +28,3 @@ if ! ipcalc -cs "$IP" ; then
exit 1
fi
```

View file

@ -1,9 +1,11 @@
---
title: "Chroot and Virtual Filesystems"
date: 2020-11-29T10:52:07-05:00
date: 2020-11-29 15:52:07
draft: false
tags: ["Linux"]
medium_enabled: true
medium_post_id: 37f5b4c46ae8
tags:
- Linux
title: Chroot and Virtual Filesystems
---
When running applications under a [`chroot`](https://en.wikipedia.org/wiki/Chroot) environment, it can be annoying when certain [virtual filesystems](https://opensource.com/article/19/3/virtual-filesystems-linux) are unavailable. Here are the commands to mount the most common ones:
@ -15,4 +17,3 @@ sudo mount -o bind /dev /mnt/root/dev
```
Source: [ArchWiki](https://wiki.archlinux.org/index.php/chroot)

View file

@ -1,9 +1,11 @@
---
title: "Clearing Systemd Logs"
date: 2021-02-21T16:08:51-05:00
date: 2021-02-21 21:08:51
draft: false
tags: ["Linux"]
medium_enabled: true
medium_post_id: acf4ee0e7f0c
tags:
- Linux
title: Clearing Systemd Logs
---
Short post today. I wanted to clear out some disk space usage on one of my servers and noticed that the systemd logs were taking up a decent bit. Here are two options to clear out old logs.
@ -19,4 +21,3 @@ An example to clear it by total disk usage, let's say 10Gb:
```bash
journalctl --vacuum-size=10G
```

View file

@ -1,9 +1,11 @@
---
title: "Detect Python Version"
date: 2021-03-15T18:09:38-04:00
date: 2021-03-15 22:09:38
draft: false
tags: ["Python"]
medium_enabled: true
medium_post_id: f742be560b7f
tags:
- Python
title: Detect Python Version
---
I was working on a distribution recently where `python` was mapped to `python2`. It mixed me up for a bit since I was writing a script for `python3` but it ran partially under `python2`. To lower confusion in the future, I think it's a great idea to check the python version and exit if it isn't the version you expect.
@ -21,4 +23,3 @@ if version_info.major != 3:
print("Exiting...")
exit(1)
```

View file

@ -1,10 +1,11 @@
---
title: "Human Readable Sizes"
date: 2021-03-15T19:11:35-04:00
date: 2021-03-15 23:11:35
draft: false
tags: []
math: true
medium_enabled: true
medium_post_id: 2a32b08bd2c1
tags: []
title: Human Readable Sizes
---
When playing with large and small values, it is useful to convert them to a different unit in scientific notation. Let's look at bytes.
@ -46,4 +47,3 @@ def humanReadableBytes(num_bytes: int) -> str:
return "{:.2f} ".format(num_bytes / (base ** category_num)) + \
size_categories[category_num]
```

View file

@ -1,9 +1,10 @@
---
title: "LibreOffice Calc Tips"
date: 2021-02-20T12:37:48-05:00
date: 2021-02-20 17:37:48
draft: false
tags: []
medium_enabled: true
medium_post_id: c55df201e882
tags: []
title: LibreOffice Calc Tips
---
I've been working with LibreOffice Calc (or Excel) spreadsheets recently and wanted to share some of the things I've learned.
@ -82,4 +83,3 @@ Strings separated by `&` are concatenated together.
```excel
"Hello " & "World."
```

View file

@ -1,9 +1,12 @@
---
title: "Mirror a Hugo Site"
date: 2020-12-07T22:41:17-05:00
date: 2020-12-08 03:41:17
draft: false
tags: ["Archive", "Hugo"]
medium_enabled: true
medium_post_id: 75a8b76182aa
tags:
- Archive
- Hugo
title: Mirror a Hugo Site
---
I'm a big proponent of having offline copies of content. Especially when I'm on travel and don't have easy Internet access. Using the built in hugo webserver and a reverse proxy, I will show how we can host a local mirror of a Hugo site.
@ -84,4 +87,3 @@ Then restart the `httpd` service.
```bash
sudo systemctl restart httpd
```

View file

@ -1,9 +1,11 @@
---
title: "Mirroring with Gitea"
date: 2020-12-07T23:46:21-05:00
date: 2020-12-08 04:46:21
draft: false
tags: ["Archive"]
medium_enabled: true
medium_post_id: ce7a39da156b
tags:
- Archive
title: Mirroring with Gitea
---
Sites like Github, Gitlab, and BitBucket have nice UIs that make looking at commit diffs and issue tracking easier. However, this requires an internet connection. What if we can mirror the content from these sites locally? Gitea comes to the rescue!

View file

@ -1,9 +1,12 @@
---
title: "Multicast Receive Script"
date: 2020-11-18T10:09:15-05:00
date: 2020-11-18 15:09:15
draft: false
tags: ["Linux", "Networking"]
medium_enabled: true
medium_post_id: 6f6efe549a47
tags:
- Linux
- Networking
title: Multicast Receive Script
---
I use `socat` to debug mutlicast traffic, though the syntax for it is complicated to learn. Here is the command that I normally use to debug multicast traffic.
@ -47,4 +50,3 @@ port="$2"
socat UDP4-RECVFROM:"$port",ip-add-membership="$multicast_address":0.0.0.0,fork -
```

View file

@ -1,9 +1,11 @@
---
title: "DHCP for Raspberry Pi"
date: 2021-02-15T22:46:21-05:00
date: 2021-02-16 03:46:21
draft: false
tags: ["Networking"]
medium_enabled: true
medium_post_id: 8c13511f5b45
tags:
- Networking
title: DHCP for Raspberry Pi
---
Recently I ran across the use case where I needed a Raspberry Pi to be connected to the Internet via a WiFI connection, while also providing DHCP leases through an Ethernet connection. I couldn't find a great way to achieve this with `dhcpcd` so instead I grabbed a tool that I'm more familiar with `dnsmasq`.
@ -56,4 +58,3 @@ dhcp-range=192.168.0.50,192.168.0.150,12h
# and defaults to 64 if missing/
#dhcp-range=1234::2, 1234::500, 64, 12h
```

View file

@ -1,9 +1,11 @@
---
title: "Streaming PulseAudio over RTP"
date: 2020-11-23T23:41:41-05:00
date: 2020-11-24 04:41:41
draft: false
tags: ["Audio-Video"]
medium_enabled: true
medium_post_id: 334b857013b9
tags:
- Audio-Video
title: Streaming PulseAudio over RTP
---
With PulseAudio, we can send a RTP stream over multicast UDP. Here is the bash commands to setup a sink where anything sent to it gets broadcasted to the multicast address 224.0.0.56 at port 46416.

View file

@ -1,9 +1,11 @@
---
title: "Quick Bash: Check Argument Count"
date: 2020-12-15T09:25:11-05:00
date: 2020-12-15 14:25:11
draft: false
tags: ["Bash"]
medium_enabled: true
medium_post_id: ac38c9d9d896
tags:
- Bash
title: 'Quick Bash: Check Argument Count'
---
I've been writing more bash scripts recently and I noticed that I often check for the number of arguments before validating them in my scripts. I'll share that small snippet here for my future self.

View file

@ -1,9 +1,10 @@
---
title: "Stow Version Manager"
date: 2021-02-25T10:31:34-05:00
date: 2021-02-25 15:31:34
draft: false
tags: []
medium_enabled: true
medium_post_id: 14639c9db6a4
tags: []
title: Stow Version Manager
---
Suppose you need a newer or specific version of a package that isn't included in your standard linux repo. The standard procedure is to do something like the following...