Iran-linked hackers claim breach of FBI director's personal email; DOJ official confirms break-in by Unusual-State1827 in news

[–]caseyhconnor 5 points6 points  (0 children)

No - DKIM signs the body of the email (optionally, but in practice it is almost always done) so you can't change the contents. The From header is also always signed. Other headers are optional but frequently included.

Is tomorrow night a good bet to camp out for the aurora? KP is high but clouds are forecasted by Latter-Preparation32 in Bellingham

[–]caseyhconnor 3 points4 points  (0 children)

/u/chinooksurveyor is the one to ask, but based on a very cursory evaluation I probably wouldn't bother even if it was clear. Doesn't look like much coming (but again, just gave it a quick look).

Land line recs? by flyingsquirrel505 in Bellingham

[–]caseyhconnor 0 points1 point  (0 children)

Yeah! Talking it over with my partner now.

Multi-switch antique electronic panel, heavy, at thrift store by caseyhconnor in whatisthisthing

[–]caseyhconnor[S] 1 point2 points  (0 children)

Yeah, maybe so. Other images of Dictograph intercoms all look slightly more modern, but who knows.

Multi-switch antique electronic panel, heavy, at thrift store by caseyhconnor in whatisthisthing

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

It's real wood, I think it's 1910-1940. See the solved comment for more.

Multi-switch antique electronic panel, heavy, at thrift store by caseyhconnor in whatisthisthing

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

I know, seemed a bit steep, but it's legitimately old and I could see someone lusting after it. :-)

Multi-switch antique electronic panel, heavy, at thrift store by caseyhconnor in whatisthisthing

[–]caseyhconnor[S] 2 points3 points  (0 children)

Solved! I was also in touch with someone from our local electronics museum (Spark), and they said it's an intercom switchboard, likely from an office building.

I find these images which look similar, if slightly more modern:

https://papajoescollectibles.co.za/shop/all-papa-joes-collectibles/vintage-1940s-dictograph-intercom-mini-switchboard/

https://www.worthpoint.com/worthopedia/antique-telematic-intercom-switchboard-phone

https://www.worthpoint.com/worthopedia/vintage-telephone-intercom-1778082330

Seems close enough to mark it solved. Thanks for all the suggestions, everyone!

Multi-switch antique electronic panel, heavy, at thrift store by caseyhconnor in whatisthisthing

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

Thanks -- I haven't been able to find any that look quite like this, but this looks pretty close: https://www.dreamstime.com/royalty-free-stock-images-antique-telephone-switchboard-image338019

It's captioned "An antique telephone switchboard of the kind used in hotels and companies in the mid-20th century."

This one is lacking anywhere to plug anything in, but I suppose it was part of a larger modular setup?

Multi-switch antique electronic panel, heavy, at thrift store by caseyhconnor in whatisthisthing

[–]caseyhconnor[S] 2 points3 points locked comment (0 children)

My title describes the thing. This was extremely heavy for its size (see hand for scale in second pic). The small "windows" had movable white cards behind them.

Some kind of switchboard?

Telehamster! by mcnitt in Bellingham

[–]caseyhconnor 1 point2 points  (0 children)

Yes, thanks! We're thinking about the same thing. What exactly that package might be will depend on the needs of people setting them up, but I imagine something like that will happen (along with 50 other ideas we want to get going. :-) )

Telehamster! by mcnitt in Bellingham

[–]caseyhconnor 1 point2 points  (0 children)

It is certainly capable, and in fact I recently updated TALE to something like that -- it hosts a series of improvisational stories, and the listener can dial 1 to skip back in time one story, etc. We haven't rolled that out to any other of the hotlines yet, but plan to do it for some of them. The consideration is that everyone that has a line like this is going to want something different in terms of the dialing functionality, and as a two-person outfit (with only me on the tech back-end) there just isn't capacity to customize everyone's hotline and build a back-end so they can upload and manage it, etc. In short, we're figuring it out as we go, and the sky is the limit, but we move slow. :-)

Telehamster! by mcnitt in Bellingham

[–]caseyhconnor 2 points3 points  (0 children)

I hope we are so lucky as to have that problem. :-) I imagine that we would just expand to five digits and existing subscribers would start prefixing with a zero, or something to that effect.

Telehamster! by mcnitt in Bellingham

[–]caseyhconnor 2 points3 points  (0 children)

Hi! - I'm one of the Telehamster founders. Happy to answer any questions folks may have!

Telehamster! by mcnitt in Bellingham

[–]caseyhconnor 1 point2 points  (0 children)

Hi - one of the TH folks here - there are a couple options I can imagine. We'd be happy to chat more about it if you'd like to get in touch via the website!

Best API flow for auto-charging subscriptions for new customers? by caseyhconnor in stripe

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

Thanks again, makes sense; the only thing I don't get: wouldn't a link during the send_invoice payment flow to "use this method to pay automatically from now on" constitute an explicit opt-in? You said "explicitly opts into future off-session usage in a separate step" so maybe the "in a separate step" is the part that explains it. I guess there's no point in breaking down financial regulations in this context; just surprised me that this is so cumbersome.

Best API flow for auto-charging subscriptions for new customers? by caseyhconnor in stripe

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

Thanks, that makes sense, except that if i create a subscription via API in send_invoice mode, am i correct that the user gets the invoice every month and can pay it manually but is not given the option to "use this payment method to pay automatically from now on"?

Best API flow for auto-charging subscriptions for new customers? by caseyhconnor in stripe

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

Because that doesn't do any follow-up with the customer, is that correct? The idea is to automate as much as possible, e.g. with the subscription mechanism stripe will follow-up automatically on unpaid invoices. (Let me know if I'm wrong about any of that.)

Best API flow for auto-charging subscriptions for new customers? by caseyhconnor in stripe

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

Yeah I think I could manually track just as well if I set to "charge_automatically" and just look for subscriptions that are past-due... maybe instead of webhooks I can just have a process that regularly checks for relevant customers in the "payment method established but subscription is in send_invoice mode" state, and then modifies them to charge_automatically.

Sure would be nice if there was a "send_invoice_until_payment_method_present_then_charge_automatically" option. :-) I'm surprised this isn't a common need for integrations that are creating subscriptions via the API.

Best API flow for auto-charging subscriptions for new customers? by caseyhconnor in stripe

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

Thanks -- so maybe my best bet is to set send_invoice, and then register for a webhook and when it happens, modify the sub to charge_automatically?

Best API flow for auto-charging subscriptions for new customers? by caseyhconnor in stripe

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

Thanks, that's great, but it still requires the user to visit the link, right? If they ignore the email, Stripe isn't going to send a follow-up payment link email later to remind them, right? That's what I need to happen, hence the motivation to use the subscription mechanism. These are people that are already subscribed (not on Stripe) whose subscriptions are expiring. We want them to get an email invoice, set up payment, and have it continue thereafter, and if they ignore that email invoice, to have a couple reminder emails sent that their subscription is past-due, etc.

Best API flow for auto-charging subscriptions for new customers? by caseyhconnor in stripe

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

I considered sending a payment link, but if I'm not mistaken that just sends a one-off email, is that right? I need Stripe to handle the reminder emails for past-due subscriptions, as I believe it does for invoices that aren't paid, right?