

I think mplayer
has an ASCII output mode (VLC, too?), and I believe youtube-dl
can output to stdout.
The rest is, as they say, left as an exercise to the reader.
I think mplayer
has an ASCII output mode (VLC, too?), and I believe youtube-dl
can output to stdout.
The rest is, as they say, left as an exercise to the reader.
I switched from raspberry pi and orange pi to a cheap Intel NUC, and I think it’s just a much nicer experience.
The pi is great fun, but the HW transcoding on a NUC “just works,” and the SSD and 16GB RAM opens a lot of doors. My N100 NUC was less than $150, and it included everything (case, power supply, 500GB SSD).
My pi found new life as an off-site backup: attach a big HDD, set up WireGuard, and have a cronjob do daily rsync and snapshots. I have it set up at in-laws, and it works great.
You can turn it off, at least for ext4: https://lwn.net/Articles/784041/
Although you can use case insensitive filesystems with Linux, and case sensitive filesystems with macOS. I believe the case sensitivity is a function of the specific filesystem — but yeah, practically, the root for Linux is always case sensitive, and APFS ain’t is only if you ask it to be ( https://support.apple.com/lv-lv/guide/disk-utility/dsku19ed921c/mac ).
You know you fucked up real good when Mr. Oatmeal gets involved.
Not sure why you’re saying Python forces everything to be object oriented…?
And environment — DISPLAY
and PATH
in particular.
Add to that photo editing (as much as GIMP is great…). I would guess DAW and video editing would fall under that category, too…and good luck finding many AAA open source games.
I don’t have a problem with folks being outraged at an illegitimate vote; but what I can’t get behind is this outrage while at the same time being (at best) unconcerned with legitimate voters being turned away.
One is bad because it’s a vote counting when it shouldn’t; the other is bad because it’s a vote not counting when it should. It’s essentially the same functional outcome, it’s just that one of these…you know…actually happens a lot and the other doesn’t.
Affordable Care Act, LGBTQ rights, marijuana reform…not to mention a Black man was president, and a Black woman is the party nominee.
Yeah, it sucks that progress is so slow, and yeah, it sucks that some things have gone backwards. But there has been a huge amount of progress in the past however-many years. We went from “don’t ask, don’t tell” to having a Catholic president openly support gay marriage in a relatively short time.
Using Harris’ Glock anecdote as evidence the party is moving to the right is just lazy editorializing IMHO. Almost as lazy as just asserting that the party is moving to the left because of the issues that you decided illustrate the left-right difference…
Or go full CW, and just transmit source code in binary as dits and dahs. (So long as you document what you’re doing it should be legal, though I’m not sure if you should use the CE portion of he band since it’s nonstandard…)
I always prefer it without the dashes. And just add on HHMMSS while we’re at it!
Oh go fsck yourself (maybe that works better written…).
It’s also, in my opinion, the most verb-able of all *NIX commands.
Are they “forks” or are they “built on top of”?
That’s insanely fast. 30mph on a bike (flat, no wind) is real work. And that’s with proper gearing and, you know…wheels.
https://en.m.wikipedia.org/wiki/Doctor_(title)
As a noun yeah it’s more common in the western world to refer to medical doctors. But its origin is that of teachers, not medical practitioners.
Please be direct and stop beating around the Bush.
I’ve only recently branched out from router defaults…only reason was that I wanted to VLAN off my home network, and mostly just so [Home Assistant-controlled] smart devices can’t talk to the Internet at all.
I can only remember this because I initially didn’t learn about
xargs
— so any time I need to loop over something I tend to usefor var in $(cmd)
instead ofcmd | xargs
. It’s more verbose but somewhat more flexible IMHO.So I run loops a lot on the command line, not just in shell scripts.