irdc

joined 1 year ago
MODERATOR OF
[–] irdc@derp.foo 5 points 8 months ago (1 children)

Ah good. Now I know what specs not to buy.

[–] irdc@derp.foo 3 points 8 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.

[–] irdc@derp.foo 5 points 8 months ago

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

[–] irdc@derp.foo 11 points 8 months ago (2 children)

1024 = 2^10^

FYFY

[–] irdc@derp.foo 2 points 9 months ago

Exactly. The good kind of failure.

[–] irdc@derp.foo 47 points 9 months ago (18 children)

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

[–] irdc@derp.foo 6 points 10 months ago

Those are different kinds of fine motor skills than used when writing cursive. Ideally kids should be exposed to both.

[–] irdc@derp.foo 10 points 10 months ago (2 children)

Cursive writing helps in developing fine motor skills.

[–] irdc@derp.foo 2 points 11 months ago (1 children)

Kinda looks like an impedance mismatch.

[–] irdc@derp.foo 3 points 11 months ago

I liked the concepts in Sword and Mercy though. The various species and their oddities and taboos, the technology, the characters. It’s just that somehow you can feel that Leckie didn’t have as much of a clear goal in mind where the story was going.

[–] irdc@derp.foo 4 points 11 months ago (4 children)

I’ve read them too. I thoroughly enjoyed Justice, but had trouble finishing Mercy because it just failed to engage me.

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

Secondly at least AC alternates, giving your muscles a break and possibly a chance to let go of the wire, DC isn't that forgiving.

Interesting. Your comment made me read up on all of this. Note that, since V~rms~ = 1 ÷ √2 × V~peak~, 230VAC has a V~peak~ of 325V, so in that respect, it should be pretty much equivalent to 300VDC. I figured that the ability for AC to induce heart fibrillations was the most dangerous factor in all of this, but I hadn't figured in that DC induces tetanus and can also temporarily stop the heart.

It's not the volts that kill you though, it's the amps (the volts just make it easier). I found a table listing the effects of various amperages. It does present DC as generally more safe when compared against 60Hz AC, but I'm not sure how that generalises to the 50Hz AC we have here. I do conclude however that I should be limiting the output current to something something generally safe, like 20mA (which should be fine for a voltage reference). I'm thinking a PTC at the input and being conservative wrt capacitor sizing should do it.

Some of my co-students in university made an EKG apparatus. Our lecturer demanded that anything connected to the electrodes was to be powered by a single battery.

TBH, when it comes to an EKG apparatus I'd also be worried about common mode across the chest, or the power supply having a disastrous failure mode.

I prefer my Sn60Pb40 (...) The first couple of lead free solder brands I got just didn't flow right.

Yeah, those were horrid. Even the supposedly excellent SAC305 gave me dull joints (tough it flowed adequately). Still, I can only recommend Sn100Ni+ (supposedly closely related to SN100C): flows well and gives me the shiny joints I crave. Having a good soldering iron (I'm using a Pinecil) helps with solderability.

I do however still have some rosin core Sn60Pb40 for reworking vintage electronics. And I do agree that it's just better when it comes to wetting ability. The peace of mind when working with lead-free solder really is worth it though, especially with pets or small children.

10
submitted 11 months ago* (last edited 11 months ago) by irdc@derp.foo to c/askelectronics@discuss.tchncs.de
 

I've recently acquired an uncalibrated Philips PM2534 (edit: the battery-backed factory calibration data was lost due to the battery running out). I'm looking into somehow getting it calibrated. However, the calibration procedure is rather involved, and requires such things as an exact 300V DC (the service manual recommends using a Fuke 5700).

Anybody know of a way to have this multimeter calibrated? I'm a hobbyist and don't really need such things as traceability and certificates.

Edit: I live in the Netherlands.

 

Summary: Dusk and Enjoiner Rue learn Demerzel's origin and true purpose. Tellem's plan for Gaal take a dark turn. On Terminus, Day confronts Dr. Seldon.

Air Date: September 8, 2023

 

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?

 

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"
                      INNER JOIN "post_like" AS "l"
                         ON "l"."post_id" = "p"."id"
                      WHERE NOT "p"."removed"
                        AND NOT "p"."deleted"
                      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"
                      INNER JOIN "comment_like" AS "l"
                         ON "l"."comment_id" = "c"."id"
                      WHERE NOT "c"."removed"
                        AND NOT "c"."deleted"
                      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.

29
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.

1
lmmy.to FAQ (derp.foo)
submitted 1 year ago* (last edited 1 year ago) by irdc@derp.foo to c/lmmy_to@derp.foo
 

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 !risa@startrek.website. Instead of linking to https://startrek.website/c/risa, you'd link to https://lmmy.to/c/risa@startrek.website. 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 !risa@startrek.website, 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/risa@startrek.website.

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/risa@startrek.website, 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: next ›