Shadow

joined 2 years ago
MODERATOR OF
[–] Shadow@lemmy.ca 10 points 2 weeks ago (1 children)

Most of the stuff people print, is crap that will go in the garbage in a week. I get it, I went through that phase when I got my printer too.

If you learn how to design your own stuff, suddenly it becomes a really useful tool.

[–] Shadow@lemmy.ca 3 points 2 weeks ago

So true, plus lugging your gear out to the shore. This is why I only do boat dives.

[–] Shadow@lemmy.ca 31 points 2 weeks ago (3 children)

Scuba diving is not an athletic sport. Air consumption is all about moving as little as possible once you're down there.

[–] Shadow@lemmy.ca 2 points 2 weeks ago (1 children)

If you'd like, instead you could literally light up like a christmas tree from nfc - https://dangerousthings.com/product/xsiid/

[–] Shadow@lemmy.ca 17 points 3 weeks ago

Sounds like the digital service tax needs to be back on, and doubled.

[–] Shadow@lemmy.ca 2 points 3 weeks ago

That was my thought too

[–] Shadow@lemmy.ca 2 points 3 weeks ago

Not really, the tech is stable and I honestly put very little time into it. Occasionally I get bored and do something like make dashboards, but ongoing maintenance is just the occasional software update.

I'd like to move it all to k8s at some point, but it's a really low priority. Probably doesn't make sense until we start scaling to multiple machines.

[–] Shadow@lemmy.ca 3 points 3 weeks ago* (last edited 3 weeks ago)

I'd print it on the side, will make it stronger anyways. Less likely to lose layer adhesion.

Edit: never mind, I think this is a print in place moving piece?

Try decreasing your nozzle temp, might just be too soft.

[–] Shadow@lemmy.ca 3 points 3 weeks ago

I don't use connect, but you're probably looking at your personal instance block list rather than the instance federation details.

[–] Shadow@lemmy.ca 3 points 3 weeks ago (1 children)

Single physical host running proxmox. Mix of Ubuntu vms and lxc depending how much I trust the app and if I need direct access to the underlying zfs.

Opnsense + haproxy in front, nothing connected directly.

[–] Shadow@lemmy.ca 2 points 3 weeks ago (2 children)

Fish scales?

170
submitted 3 months ago* (last edited 3 months ago) by Shadow@lemmy.ca to c/main@lemmy.ca
 

cross-posted from: https://sh.itjust.works/post/35952239

Hey all,

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.

What does this mean for sh.itjust.works?

From the outside everything will stay much the same, especially with the admin team. Internally, we will collaborate on tasks related to non-profit compliance, policies, banking and common infrastructure elements such as backup/disaster recovery infrastructure. We will continue to operate separate equipment and instances in geographically isolated locations under different names. We will work towards aligning on safety and security practices in order to ensure that data is secure.

From an organizational structure, sh.itjust.works will fall under the Fedecan umbrella and will share common bylaws, policies, methodologies on best practices, security and legal considerations.

Where do donations go?

Donations to sh.itjust.works will continue to support our mission and objectives exclusively. However, users will also have the option to donate directly to Fedecan, which will allocate funds amongst its projects including sh.itjust.works. Operational costs related to running the non-profit will be shared among projects and these expenses will be transparently disclosed in annual reports published on the Fedecan website.

Option to withdrawal

sh.itjust.works will have the right to withdraw from the Fedecan umbrella should our mutual goals no longer be aligned. In such a case, a predefined provision and action plan will be in place to ensure a smooth transition back to independence.

Why Now?

As the Fediverse continues to grow, we believe it's important to collaborate more closely with others who share our values. Joining Fedecan allows us to do just that, strengthening our operation through a non-profit while staying true to our mission.

Timeline / Next Steps

Over the coming weeks, we'll begin the process of integrating with Fedecan on the organization side. You won't notice many changes but we'll keep you informed throughout the process.

Looking Ahead

We’re excited about this next chapter and the opportunities it brings. By joining forces, we’re reinforcing our commitment to the Fediverse and to the principles that brought us all together in the first place—openness, community, transparency, and trust.

Our core mission remains unchanged. We're still independent in spirit and practice and we remain committed to being a space that's not driven by profit, but by people.

I invite your questions or concerns on this thread or on our https://matrix.to/#/#sh.itjust.works:matrix.org)

Stay connected,

--The sh.itjust.works and Fedecan Team

14
DIY X-ray Machine (www.youtube.com)
 

We're now running 0.19.11, changelog here - https://join-lemmy.org/news/2025-04-08_-_Lemmy_Release_v0.19.11

44
Bernd das Brot (en.wikipedia.org)
 

If you want to watch the depressed bread yourself: https://tv.garden/de/0yjVBN9zD5VvoM

79
submitted 4 months ago* (last edited 4 months ago) by Shadow@lemmy.ca to c/main@lemmy.ca
 

For anyone that noticed the 30 seconds of downtime a few minutes ago, that was to upgrade us to lemmy 0.19.10.

Changes are listed here - https://join-lemmy.org/news/2025-03-19_-_Lemmy_Release_v0.19.10_and_Developer_AMA

This is not the version with breaking API changes, there should be no impact to any clients.

Enjoy!

36
RIP mcbarge (www.ctvnews.ca)
 

F

52
Magic smoke (en.wikipedia.org)
 

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.

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
        IF LOWER(TRIM(NEW.content)) ILIKE '%' || LOWER(TRIM(banned_phrase_record.phrase)) || '%' THEN
            IF banned_phrase_record.behavior = 'delete' THEN
                NEW.deleted := true;
                RETURN NEW;
            ELSIF banned_phrase_record.behavior = 'mark_read' THEN
                NEW.read := true;
                RETURN NEW;
            END IF;
        END IF;
    END LOOP;
    RETURN NEW;
END;
$$ LANGUAGE plpgsql;

CREATE TRIGGER trg_filter_private_messages
AFTER INSERT ON private_message
FOR EACH ROW
EXECUTE FUNCTION filter_private_messages();

To add filter words:

insert into private_message_filters (behavior, phrase) values ('delete', 'spamtestdelete');
insert into private_message_filters (behavior, phrase) values ('mark_read', 'spamtestread');

If you want to quickly disable / enable filtering while testing:

ALTER TABLE private_message DISABLE TRIGGER trg_filter_private_messages;
ALTER TABLE private_message ENABLE TRIGGER trg_filter_private_messages;

I'll leave it up to you to figure out what phrases to filter on. MAKE SURE YOU TEST. If there's an error, private messaging could break completely. You should not get an error message from the UI while sending a message with a banned word.

 

You just end up creating an desolate community full of noise, since the op will never see the replies.

It hurts lemmy users who don't realize this and wonder why there's no engagement.

For example: https://lemmy.ml/comment/17284093

Blindly copying posts from reddit is not the way to grow a healthy lemmy community.

view more: ‹ prev next ›