AFAIK, clamAV hunts Window viruses, not Linux malware. The linux equivalent I know of is rkhunter.
searx is around for a couple of years now.
Actually no. A transsternal access to the heart is impossible with stone tools, even obsidian. Middle american ritual sacrifices were performed transphrenic – they had less problems with the complications of that access as they didn’t intend their victim to survive, in contrast to — most — modern surgeons.
Which FOSS video editor did you find?
Yes. It has a reduced tax, thoough.
Thank you. So it’s not just a doorbell, rather a remote controlled surveillance and communication system. That is a bit more complicated than a bell at the door.
No tax on food? That’s nice, we should copy this.
Is $1.43 the complete tax? If so — how is your government financed? All countries I know of add a VAT of ~ 20 %.
Why would you need any software, server or phone for a simple door bell?
I don’t know about the US, but in Germany, by using a vending machine, you are implicitely and automatically consenting with the ToS of the vendor by your action.
In the article is a sound explanation: the machine is activated by detecting a human face looking at the display.
If this face recognition software only decides “face” or “not face” and does not store any data, I’m pretty sure this setup will be compatible with any data protection law.
OTOH they claim that these machines provide statistics about age and gender of customers. So they are obviously recognising more than just “face yes”. Still – if the data stored is just a statistics on age and gender and no personalised data, I’m pretty sure it still complies even with 1920s data protection habits.
I’m pretty sure that this would be GDPR conform, too, as long as the customer is informed, e.g. by including this info in the terms of service.
No, but yes.
In the book, he is Gentry.
In real life the Bourgeoisie took the role the Gentry/lower nobility had pre industrialisation.
While Frodo is not bourgeoise, the message is about the bourgoisie.
That is an important message of Tolkien, too! But the intrusion into Mordor highlights that the Sams of this world (the working class people) are the real heros whose contribution is crucial. In the end the war is not won by the wizards or the warriors, but by Sam’s ability to carry on under all circumstances and to draw Frodo with him.
/dev/fb0 is the framebuffer. So yes, you can feed data into the filesystem and you’ll see it on your display.
For Unixoids, being a file does not mean that this data is stored on a hard disk, but that all data, processes and hardware are accessible with the same toolkit. /dev/fb0, for instance, is part of the file-like interface of your graphics card.
So you missed the main message of Tolkien.
Depends on where you are in the world.
If you have access to a sauna […]
I’m honoured, but really? Rethink.
Superficially, typing <Ctrl>+<left> seems to be the same as typing <Esc> <b>, but these are two completely different paradigms of using the editor.
Vim does not use shortcuts or hotkeys to edit the text, it uses a language to communicate with the editor.
For me, shortcuts and hotkeys are rote memorization, and I’m bad at rote memorization – compare your point “5. Ctrl-{ or } does this I think”. Do I need Ctrl-left, Super-left, Alt-left, Shift-left or Ctrl-Shift-left to jump back a word?
The vim editing language is mostly consistent and logical. I did not need to memorize it, I could learn and understand it. But that’s just me.
Far too much examples:
Most commands are abbreviations – a for append, b for back, c for change, d for delete, e for end of word, f for forward, g for goto (and more), hjkl are special, i for insert, m for mark, n for next, o for open line, p for paste, q for reqord macro is a strange spelling, r for replace, s for substitute, t for to, u for undo, v for visual mode, w for word, x for extinguish, y for yank, z is just a prefix for arcane stuff. Capital letters are usually variants of their minuscle counterpart – like A for append at end of line.
Commands take a repeat count, and a lot of commands take objects/movements, and these reuse the commands, like “delete inside backticks” => di`, “yank inside brackets” => yi{, “change up to third slash” => c3t/
If you are fluent in vim, you won’t type shortcuts while editing, you will talk to your editor.
As for more compelling examples:
“I’d like to change the next 2 sentences” translates to )c2)
“Please format this paragraph.” translates to gqap
“Swap these two characters.” translates to xp
And I did not touch ex mode, vimscript and plugins yet.