I built a custom PC, I'm rediscovering Ubuntu and my love for Gnome. Here is a brief list of things I've found so far.
- Turn off the computer at a given time.
- Install apps.
- Programatically pull latest changes from
development
, and create a new request based on a Jira Card. - Fix
es-lint
on save. - Visual regression tests.
What are yours?
Top comments (7)
Play procedurally generated music! Here's a cool command I found earlier today:
(It also works on Mac, but you have to install something called "sox" (
brew install sox
) and replaceaplay
withplay -c1 -b8 -eunsigned -traw -r8k -
.)What sorcery is this. Care to explain what is going on? :O
I am honestly not too sure, but the basic idea is there's an infinite loop with i starting at 0 and incrementing each time, and each byte of audio data is somehow derived from i.
Nothing really amazing but I have some aliases for listening to the radio:
You need mpv, of course. For people on macOS:
I suppose you can install it on Ubuntu with:
Not amazing, but I used to job hunt with
lynx
. I do nearly everything on the command line when I'm on Linux, though.How does it work? Could share a little bit more.
Generally either I used
lynx
orlynx url-i-want-to-go-to
and you'd get a text-based browser interface similar to most other text GUIs on the command line. The keyboard commands for all the typical browser functionality are on the bottom of the UI, so you press those keys for any action you want to take.If I wanted to go to Indeed, I'd just do
lynx https://indeed.com
and then put in whatever job I was looking for and hit
ENTER
.lynx
handles HTML-to-text conversion pretty well to intuitively figure it out from there.