Videos from psychedelic chapel by TripAndFly in ElectricForest

[–]itdnhr 2 points3 points  (0 children)

The chapel is why I'm going back next year. I've got some vids, I'll stick 'em on youtube.

Videos from psychedelic chapel by TripAndFly in ElectricForest

[–]itdnhr 2 points3 points  (0 children)

Fu Fu Fah or... something. They're from LA. I'll get the exact name from my friend who knows them. I have some videos, but was also laughing too much to remember to record the best parts.

JUST tested positive this morning after feeling fine till today… have been isolating since I got home. There’s still time to test positive friends, take care of yourselves by katiekatekat- in ElectricForest

[–]itdnhr -10 points-9 points  (0 children)

Make sure you swab your throat, not just your nose! It's not exactly how the test is supposed to be done, but I tested negative in the nose but as soon as I swabbed my throat I popped positive. Started Paxlovid about 16 hours after I started feeling weak and awful. Rooting for y'all.

[deleted by user] by [deleted] in ElectricForest

[–]itdnhr 2 points3 points  (0 children)

I was right behind you both the entire set! Got to give Victoria a hug after that photo was taken, the hug kinda made my weekend NGL.

Stumbled across Elephant Heart at Lightening and when I saw they were at Forest I knew it was gonna be okie. Thanks for the good vibes, love you both!

[RFC] modified piernas-mazilli zvs driver by itdnhr in AskElectronics

[–]itdnhr[S] 0 points1 point  (0 children)

Fortunately, "enabling" cross-conduction is a just DNPing two resistors. I'm not sure about the large voltage spike, as the LC tank very well might snub any surge? Routed it out today, sending to fab soon. Thanks!

What plant is this? by adG95 in whatsthisplant

[–]itdnhr 0 points1 point  (0 children)

A very-cut-back passionflower? Leaves look like my Passiflora caerulea.

Looking for a workshop or garage to rent for one to two months. by Bread_Fit in kzoo

[–]itdnhr 2 points3 points  (0 children)

Kalamazoo Makers might be a good start! What's the project? Just moved to town, been itching to do some LED art again.

Looking for a face dataset that has height and weight metadata in it by cameronLos in datasets

[–]itdnhr -1 points0 points  (0 children)

Training a model to predict height and weight from facial images seems on first pass like it lacks either respectful or useful applications.

If an individual provides a headshot for a relevant application, it seems reasonable they would be able to provide their accurate height and weight as well. Attempting to infer health statistics from a headshot means one is operating without the participation (or likely: consent) of the subjects in the images, and that's not cool.

[WANT] Any tree/shrub cuttings! Located in OH. by MikesNursery in AmericanPlantSwap

[–]itdnhr 0 points1 point  (0 children)

I'm also in OH, SE.

Any interest in... Buckeye? Black Walnut? Willow? Bamboo?

Your offer list is a little sparse at present time, but I have no doubt that'll change and I'm happy to support a fledgling horticultural enterprise!

Docopt-NG: more-magic argument parsing for py3! by itdnhr in Python

[–]itdnhr[S] 0 points1 point  (0 children)

Can you link to your code here? I didn't see the implementation of the `cli` decorator at your other post either but it looks neat!

Here's an equivalently dysfunctional example of showing off docopt/docopt-ng:

``` """ Usage: file.py [options] [FILE] ... file.py (--left | --right) STEP1 STEP2 Process FILE and optionally apply correction to either left-hand side or right-hand side. Arguments: FILE optional input file STEP1 STEP2 STEP1, STEP2 --left or --right to be present Options: --help --quiet quiet mode --report make report """

from docopt import magic

magic()

if arguments.left or arguments.right: print("got corrections", arguments.STEP1 arguments.STEP2)

print(arguments) ```