[-] irdc@derp.foo 19 points 7 months ago

I have a dad joke, but it’s yo momma.

[-] irdc@derp.foo 20 points 8 months ago

Oh hey, how about Madagascar?

[-] irdc@derp.foo 15 points 8 months ago

Apparently this is what makes someone turn neutral.

[-] irdc@derp.foo 12 points 8 months ago

Though I really like the concept of building a new device which incorporates the inherent ease of programmability of the computers of yore, I think the 6502 is just too weird and limited for doing so. For example, in order to cram a halfway decent amount of memory into the thing they had to resort to bank switching. At the least they should've gone with a 65816 (apparently they tried but they initially had some problems with the '816 address bus multiplexing).

[-] irdc@derp.foo 16 points 9 months ago

Seeing as they melt the stuff, I’m not sure the grains need to be rounded.

26
submitted 10 months ago* (last edited 10 months ago) by irdc@derp.foo to c/mechanicalkeyboards@lemmy.ml

Not my video. From the description:

Case: Raw Aluminum Keycaps: Unicomp Red Cyrillic on Brilliant White + Gray Modifiers Layout: HHKB-style split right shift and regular 2-unit wide backspace Configuration: Floss Modded, lubed spacebar wire, lubed keycap stems

My first (or second) experience with non-MX style switches in a keyboard. The IBM Model F is coveted as one of the greats when it comes to "mechanical" switches. This reproduction unit by Ellipse of Model F Labs serves to bring back the magic of the Model F keyboard with a lot of modern enhancements. Suffice it to say, I am very happy with the experience of typing on this board minus one small caveat. My biggest gripe with this board, and consequently any other buckling spring keyboard is the fact that there is simply no way to flip the spacebar. The asymmetrical design of the keycap stem paired with the fact that the spacebar wire attaches directly to only one side of the spacebar keycap makes it so that you are required to use this in its standard spacebar configuration. I find this to be really uncomfortable because my thumb is essentially pressing right against the hard edge of the keycap rather than the smooth edge afforded by a flipped spacebar. This was such an issue that I attempted to model my own keycap and have it resin 3D printed by JLCPCB, but to no avail. The tolerances on buckling-spring stems are really specific which makes the mechanism really difficult to replicate. I dont have the time or money to fine tune this problem. Despite that glaring issue, I still have a great time typing on this board and I find the typing experience to be very pleasant otherwise. The deep clicks are much preferable to the high pitch clicks youd often hear in MX-Style switches. The mechanism is also reasonably smooth if you take the time to lube the keycap stems with Krytox 205g0. You might also notice that there is no coating on this keyboard. When I had originally bought this board from a seller off Mechmarket, the original coating on it was a powder-coated black. I wasn't thrilled with the look and feel of it so I took it upon myself to strip the coating by submerging the pieces in a vat of Klear-Strip for roughly 2 days. Overall, I think the result turned out great and gives a raw look to the design. So far the aluminum hasn't shown any clear sings of tarnishing but I do anticipate it to eventually show some wear. There's still a marginal amount of residue left over from the stripping so the finish isn't perfect, but I think it gives the board a lot of character. Despite there being no "integrated" weight in this board like you see in a lot of premium customs, this still out-weighs my Sharkeneko 1600g to 1470g. The steel inner assembly paired with the thick aluminum chassis makes this a weapon of a keyboard.

[-] irdc@derp.foo 18 points 10 months ago* (last edited 10 months ago)

How about a federated system for sharing “known safe” image attestations? That way, the trust list is something managed locally by each participating instance.

Edit: thinking about it some more, a federated image classification system would allow some instances to be more strict than others.

5
submitted 10 months ago by irdc@derp.foo to c/lemmy_admin@lemmy.ml

I'm looking into migrating (part of) my ever-growing pictrs data to something cheaper than the VPS disk it's currently on. Ideally I'd like to use minio's Object Tiering to migrate object to/from cheaper storage.

Anybody using Backblaze's cloud storage product? What other options are out there and what potential pitfalls should I be aware of?

25
ik🐑ihe (derp.foo)
submitted 10 months ago by irdc@derp.foo to c/ik_ihe@feddit.nl

Terwijl de prik-angstige schapen doodsbang achter enkele boe-roepers aanlopen haalt de rest van de wereld inmiddels redelijk de schouders op over de pandemie. Toch wel een vonst, dat mRNA 💉💪🏻👍🏻

21
submitted 11 months ago by irdc@derp.foo to c/mechanicalkeyboards@lemmy.ml

I’ve ordered a classic FSSK but now I'm thinking why stop at just one?

[-] irdc@derp.foo 13 points 11 months ago

Why would cats keep humans? It’s not as if they like us or anything….oh wait.

15
Turing Pi RK1 (turingpi.com)
submitted 11 months ago by irdc@derp.foo to c/raspberrypi@lemmy.ml

Anyone here who has a Turing Pi?

[-] irdc@derp.foo 14 points 11 months ago* (last edited 11 months ago)

The creator appears to be @nnrx@sh.itjust.works.

503
me🐺irl (derp.foo)
submitted 1 year ago by irdc@derp.foo to c/lemmyshitpost@lemmy.world
8

As the title says, I'm looking for a Linux/macOS-compatible EPROM programmer. I'd like to be able to program parallel (E)EPROMs in the 27xxx range. The newer XGecu programmers seem to not be compatible with Linux/macOS, and the selection of TL866(II) clones is too overwhelming for me to be able to choose one.

Any suggestions?

17
submitted 1 year ago by irdc@derp.foo to c/lemmy_support@lemmy.ml

I’ve recently switched from a self-built Lemmy without pict-rs to the standard docker image that has pict-rs included. However, I’m noticing that the amount of pictures pict-rs stores on my instance is quite high. Any ideas? Is Lemmy preemptively mirroring all images in all posts?

4
submitted 1 year ago* (last edited 1 year ago) by irdc@derp.foo to c/lemmy_support@lemmy.ml

Sad that updating your Lemmy instance to 0.18.1 broke your post and comment scores? Here's a small SQL script to fix them:

 MERGE INTO "person_aggregates" AS "d"
 USING (SELECT "m"."id" AS "person_id"
             , coalesce("p"."post_count", 0) AS "post_count"
             , coalesce("p"."post_score", 0) AS "post_score"
             , coalesce("c"."comment_count", 0) AS "comment_count"
             , coalesce("c"."comment_score", 0) AS "comment_score"
          FROM "person" AS "m"
          LEFT JOIN (SELECT "p"."creator_id"
                          , count(distinct "p"."id") AS "post_count"
                          , sum("l"."score") AS "post_score"
                       FROM "post" AS "p"
                       LEFT JOIN "post_like" AS "l"
                         ON "l"."post_id" = "p"."id"
                      WHERE NOT "p"."removed"
                        AND NOT "p"."deleted"
                        AND "l"."person_id" <> "p"."creator_id"
                      GROUP BY "p"."creator_id") AS "p"
            ON "p"."creator_id" = "m"."id"
          LEFT JOIN (SELECT "c"."creator_id"
                          , count(distinct "c"."id") AS "comment_count"
                          , sum("l"."score") AS "comment_score"
                       FROM "comment" AS "c"
                       LEFT JOIN "comment_like" AS "l"
                         ON "l"."comment_id" = "c"."id"
                      WHERE NOT "c"."removed"
                        AND NOT "c"."deleted"
                        AND "l"."person_id" <> "c"."creator_id"
                      GROUP BY "c"."creator_id") AS "c"
            ON "c"."creator_id" = "m"."id"
         ORDER BY "m"."id") AS "s"
    ON "s"."person_id" = "d"."person_id"
  WHEN MATCHED AND ("d"."post_count" <> "s"."post_count" OR
                    "d"."post_score" <> "s"."post_score" OR
                    "d"."comment_count" <> "s"."comment_count" OR
                    "d"."comment_score" <> "s"."comment_score")
  THEN UPDATE
          SET "post_count" = "s"."post_count"
            , "post_score" = "s"."post_score"
            , "comment_count" = "s"."comment_count"
            , "comment_score" = "s"."comment_score";

As with all scripts that work directly on the PostgreSQL database: warranty void when connected, your kilometrage may vary, do not look into laser with remaining eye, etc.

Edit: don't count self-votes.

5
ik🥵ihe (derp.foo)
submitted 1 year ago by irdc@derp.foo to c/ik_ihe@feddit.nl
215
submitted 1 year ago by irdc@derp.foo to c/reddit@lemmy.world

…now I pay more than €100 a year for my own Lemmy instance.

Joke’s on you, spez.

[-] irdc@derp.foo 20 points 1 year ago

Why can’t wefwef be wefwef?

[-] irdc@derp.foo 14 points 1 year ago

Yes, because not every link is on Lemmy itself.

40
submitted 1 year ago* (last edited 1 year ago) by irdc@derp.foo to c/lemmy@lemmy.ml

Hi all,

I’d hereby like to announce lmmy.to, an instance-aware redirector for Lemmy that allows you to directly link people to Lemmy communities on their own instance.

As an example, try https://lmmy.to/c/lemmy@lemmy.ml.

I’ve created !lmmy_to@derp.foo to discuss it. There’s also a FAQ.

Edit: I've resolved the 500 error people were getting.

[-] irdc@derp.foo 16 points 1 year ago

TL;DR: Twitter, an organisation that had already been pivoting towards work from home, had a new office building built smack dab in the middle of the pandemic (when everybody was WFH) and then under Musk stopped paying the rent and was evicted. The end result is that the gorgeously designed new workspace is going to be cleared out whilst being completely pristine.

view more: ‹ prev next ›

irdc

joined 1 year ago