How did you fail?
VLANs (Virtual LANs) are for isolating devices from each other (while still being plugged to the "LAN" ports of the same router).
How did you fail?
VLANs (Virtual LANs) are for isolating devices from each other (while still being plugged to the "LAN" ports of the same router).
Great wizard of the bitrates, grant me your wisdom...
I can't wrap my head around bitrate - if I have a full hd monitor and the media is in full hd then how is it that the rate of bits can make so much difference?
If each frame in the media contains the exact 1920 × 1080 pixels beamed into their respective positions in the display then how can there be a difference, does it have to do something with compression?
also RawTherapee
MAS is open-source meaning anyone with the skill can verify what the powershell code does. This does not mean it's absolutely safe and trustworthy but does give it a big plus.
(the way I understand it is that) It also uses a loophole in the free upgrades from older win versions to 10/11 to get you a valid license from Windoze servers directly - it is not a keygen or cracker.
So, I will vouch for MASgrave but care has to be taken to download it from the official site/repository.
Oh interesting I will have to look how tessaract does it
What a dumb way to do image proxying.
This is about proxying external images, URL rewrite won't work unless the image is also downloaded and hosted by the instance (which seems even worse for many reasons).
Or am I missing something here?
Yeah kinda, unix socket does count as ipc
Alternatively you could use capabilities:
I have been pretty content with just zsh with fzf - extends the ctrl+R with interactive fuzzy search across the history.
In theory some session like behaviour should be easy to make with a little script that changes $HISTFILE
Using pip to install packages outside of venv was always a risk, (newer) pip now has this mechanism to really drive the point home that this can break stuff.
Do I have to do this everytime I start the script via console?
Yes, one way to get rid of this requirement is to package the script as binary/executable package (add pyproject.toml with some sane defaults and with proper [project.scripts]
) and then install the project using pipx - pipx install -e path/to/the/project/
, the -e
flag stands for editable and is nice to have here as you won't have to reinstall everytime you change the script.
What pipx does is that it creates the local virtualenv, installs everything the package declares as needed and adds a special executable script into location like ~/.local/bin/
that first sources the venv and then starts the entry script - keeping everything isolated.
You will want to use virtualenv, it creates isolated "workspace" so that system (python) packages do not conflict or mix.
I would definitely
screen
it too, just to shield against my own errors (like closing the term window) bar that, I think any typical transfer tool would work, scp, rsync, ...