irdc

joined 1 year ago
MODERATOR OF
[–] [email protected] 12 points 10 months ago

Sadly Microsoft didn't specify where on the keyboard the key has to be.

In order to find out, hit the keyboard with your head; wherever your forehead touches the keyboard first is where the key is supposed to be.

[–] [email protected] 79 points 10 months ago (1 children)

I like how the reader is supposed to be familiar enough with the scream box that it doesn't require any extra explanation.

[–] [email protected] 5 points 10 months ago

I'm working on a PDP-11 emulator. I've got the basic instruction set implemented and have an implementation of ODT (the PDP-11's microcode monitor) with disassembler. I've found a test set and an implementation of BASIC for the PDP-11, and everything executes successfully. Next step is getting the MMU up and running.

[–] [email protected] 3 points 10 months ago

I have a similar-sized roll of 0.5mm Felder Sn100Ni+ with their ultra clear flux. Love the shinyness.

Indeed, don’t skimp on solder, especially when soldering lead-free.

[–] [email protected] 6 points 10 months ago

Yeah, I deserve that. I’m just gonna leave my typo. Thanks for the laugh!

[–] [email protected] 12 points 10 months ago (2 children)

1024 = 2^10^

FYFY

[–] [email protected] 4 points 10 months ago

Actual old person here: the above is all made up.

The slots were for sporks.

[–] [email protected] 3 points 11 months ago

The tweet wasn’t easily available on nitter (it wasn’t being highlighted).

[–] [email protected] 10 points 11 months ago (2 children)

It just so happened to be the canonical source for this piece of information. And it wasn't being run by an antisemite at the time the linked tweet was being written.

[–] [email protected] 2 points 11 months ago

Exactly. The good kind of failure.

[–] [email protected] 59 points 11 months ago (25 children)

Hyperloop was always a project to sabotage high-speed rail. Good thing it failed.

[–] [email protected] 8 points 11 months ago

That sounds like uncontrolled dosages of Desoxyn.

 

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.

 

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?

 

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 💉💪🏻👍🏻

 

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

 

Anyone here who has a Turing Pi?

 

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?

 

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 [email protected] to c/[email protected]
 

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.

 
 

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

Joke’s on you, spez.

1
lmmy.to FAQ (derp.foo)
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

Why does lmmy.to exist?

To solve the problem of directly linking to Lemmy communities from elsewhere and not having people end up where they can't post.

How can I use it?

Say you want to direct your friends on Mastodon to your favourite Lemmy community [email protected]. Instead of linking to https://startrek.website/c/risa, you'd link to https://lmmy.to/c/[email protected]. Anyone visiting your link gets redirected to their home server.

Note that, as a security measure, you can only link to instances that Fediverse Observer knows about; lmmy.to pulls a list of known Lemmy servers every hour or so and only redirects to those servers.

Do you own Lemmy?

No-one owns Lemmy; that's the nice thing about having a federated network. All links to lmmy.to contain enough information to manually rewrite them to point to a specific Lemmy server, so having a web server at the other end to do so automatically is just a convenience.

Indeed, if you're authoring a Lemmy frontend or browser extension, feel free to rewrite links to lmmy.to automatically!

Are you snooping on us? How can I tell what info you're gathering?

Well, the source is here.

How can I help?

I'm looking for someone to make the landing page to actually look nice, since I don't have the skills to make it so.

 

Hi all,

I’ve been observing and participating in this community for about a week now. I’m liking it so far, but one thing I’m really missing is a way to link to other Lemmy content in a way that’s instance-aware.

For example, if I were to want to link to [email protected], I’d link to https://startrek.website/c/risa. But then I’d end up at a Lemmy instance where I don’t have an account; I’d really prefer to be redirected to https://derp.foo/c/[email protected].

So here’s my proposal: create a central Lemmy redirection service where people can set their instance (in a cookie). The idea would be that people can link to, say, https://example.com/c/[email protected], and be ensured us lemmings end up on an instance where we can actually post.

Linking to posts and comments should ideally be part of this as well but whould involve a little more work.

view more: ‹ prev next ›