From stopping road accidents to performing a Heimlich manoeuvre, real-life Lassies have a long history of rescuing humans in distress. Their grateful owners tell all
An app that allows manual control, and then increasing the shutter speed to avoid blur.
Phone cameras aren't generally the best at action shots, they have too much delay. It's easier to record slowmo and pick out frames, but then image quality suffers.
You could do something like nextcloud to solve a lot of issues, but I'd still hesitate to recommend on-prem hardware and managing hardware yourself. It really comes down to the business tolerance for outages though, maybe the computers being down for a day or two doesn't matter.
Are you providing a support contract long term? Are you backed by multiple people in case you're away and their business is down? I say this more figuratively than specifically you, this could also apply to their internal IT guy who wants to do this.
I'd strongly suggest deferring to a local business IT services company, unless you're an active partner in the business. They should find a company they are comfortable with and trust, then use the products they recommend and are comfortable with.
I just push a button and then wiggle around, so much easier. It's also more of a precise spray dot, like a pressure washer. All the handheld ones I've seen/used are more like a kitchen sink sprayer hose.
You got it from a friend on a pile of slackware and floppies labeled various letters. It felt amazing and fresh, everything you could need was just a floppy away.
Then we got Gentoo and suddenly it was fun to wait 4 days to compile your kernel.
Not a troll. I heard it when I watched live and didn't figure out he meant gagged until he said it a second time. Listening to it again I can hear it either way, his pronunciation at the end is just a little off.
Memory connected via the pci bus to the CPU, would be too slow for application use like that.
Apple had to use soldered in ram for their unified memory because the length of the traces on the mobo news to be so tightly controlled. Pci is way too slow comparatively.
I don't expect users to notice much. This mostly just helps SJW avoid duplication of effort that we've already done, things like setting up proper banking / donation systems, etc. They're also welcome to leave at any time, if they feel we're no longer going in the same direction.
We're not merging sites / stacks or anything like that but we will likely collaborate more, simply to save each other time and energy. Since we are all just volunteers, that's really helpful.
Today, I’m writing to share our intention to join Fedecan, a Canadian not-for-profit organization committed to supporting the Fediverse. We believe this partnership will foster collaboration among like-minded individuals who share a common goal: to create a safe, welcoming space where people can connect freely.
Together we will help deliver a fast, reliable, and consistent experience for all and continue to be free from corporate influence and guided by the values of openness, community, and trust.
Who is Fedecan
Fedecan is a registered non-profit organization based in Canada, with the goal to provide a safe and welcoming space for people to connect with each other on the Fediverse. More information can be found here.
You may also know them by their Canadian lemmy instance lemmy.ca.
Sorry everyone I know how much you love the attention she gives you, but I've implemented some quick and dirty filtering for private messaging.
We now have the ability to automatically mark PM's as deleted or read, depending on content inside of them. If we accidentally filter something you legitimately wanted (ie, not Nicole) please let me know.
If any other instances would like to implement this, here's the code. Note that you'll need to set your hostname at the top here for some reason I haven't exactly identified.
undefined
SET lemmy.protocol_and_hostname = 'https://lemmy.ca/';
CREATE TABLE private_message_filters (
id SERIAL PRIMARY KEY,
phrase TEXT NOT NULL,
behavior VARCHAR(10) NOT NULL CHECK (behavior IN ('delete', 'mark_read'))
);
CREATE OR REPLACE FUNCTION filter_private_messages()
RETURNS trigger AS $$
DECLARE
banned_phrase_record private_message_filters%ROWTYPE;
BEGIN
Sorry everyone I know how much you love the attention she gives you, but I've implemented some quick and dirty filtering for private messaging.
We now have the ability to automatically mark PM's as deleted or read, depending on content inside of them. If we accidentally filter something you legitimately wanted (ie, not Nicole) please let me know.
If any other instances would like to implement this, here's the code. Note that you'll need to set your hostname at the top here for some reason I haven't exactly identified.
undefined
SET lemmy.protocol_and_hostname = 'https://lemmy.ca/';
CREATE TABLE private_message_filters (
id SERIAL PRIMARY KEY,
phrase TEXT NOT NULL,
behavior VARCHAR(10) NOT NULL CHECK (behavior IN ('delete', 'mark_read'))
);
CREATE OR REPLACE FUNCTION filter_private_messages()
RETURNS trigger AS $$
DECLARE
banned_phrase_record private_message_filters%ROWTYPE;
BEGIN
FOR banned_phrase_record IN
SELECT * FROM private_message_filters
LOOP