Compare commits

..

No commits in common. "6e93011f0d1adcc941f4920620cad4167d3634b3" and "8c2ac0ddaef68546a2178e309555a1b715b486ad" have entirely different histories.

3 changed files with 2 additions and 12 deletions

3
README
View File

@ -12,5 +12,4 @@ modem-manager - used to manage laptop PCIe WAN modems. rather dense
netsh - an old experiment that serves as a simple TUI for managing network interfaces... and an example of how not to use AWK
plumber - one of my more sophisticated scripts; plumber creates pipes between programs based on what sort of input it receives, and handles errors (somewhat) intelligently
bach - the Batch Audio Conversion Helper uses FFMPEG to convert large numbers of files at once
invcli - Invidious CLI client. I hacked this together in like an hour and a half, so it's kind of rough at the moment, but it does work!
rand - One-liner that generates pseudorandom numbers using dd and od.
invcli - Invidious CLI client. I hacked this together in like an hour and a half, so it's kind of rough at the moment, but it does work!

8
TODO
View File

@ -1,6 +1,3 @@
General
-Move useful functions like rand() to their own files, to be used like libraries.
Links
-Figure out a way to convert bookmarks to a textfile on exit and from the same on start, to facilitate sharing between machines
@ -50,7 +47,4 @@ plumber
-Improve handling of Reddit links (ideally people just wouldn't use Reddit, but alas)
-Remove redundant program calls e.g sed foo|sed bar with sed -ne 'foo' -e 'bar/p'
-Add proper handling of file:// URIs [high priority]
-Add support for FTP, SSH, and other protocols
rand
-No problems known at the moment.
-Add support for FTP, SSH, and other protocols

3
rand
View File

@ -1,3 +0,0 @@
#!/bin/sh -e
dd bs=2 count=1 if=/dev/random 2>> /dev/null | od - | sed -ne 's& *& &gp' | cut -d ' ' -f2