Post AHXaCD9p8as0dgtMm0 by StevenB@podcastindex.social
(DIR) More posts by StevenB@podcastindex.social
(DIR) Post #AHXaC8lDU8oH0DLerY by coldacid@podcastindex.social
2022-03-17T22:18:27Z
0 likes, 0 repeats
@adam @dave will Podcasting 2.0 be live again tomorrow? Looking forward to my boost getting read out!
(DIR) Post #AHXaC9DDo1DAP4S1Vw by dave@podcastindex.social
2022-03-18T01:17:33Z
0 likes, 0 repeats
@coldacid @adam As far as I know. 😊
(DIR) Post #AHXaC9es9DKTmpO6c4 by StevenB@podcastindex.social
2022-03-18T02:54:52Z
0 likes, 0 repeats
@dave @coldacid @adam Adam, Don't forget to add the Boostagram monitor to the channel(podcast) level.After clicking Value on the right menu, click Podcast on the top. You'll notice PC20 only has three value recipients. The boostagram monitor is missing from the channel level value block. Alternately, you can add it to the episode level of the liveItem, along with the value block you have for any guest, that way your guest is gettting any live boosts as well.
(DIR) Post #AHXaCA6WUPRnAaKBiC by adam@podcastindex.social
2022-03-18T14:06:16Z
0 likes, 0 repeats
@StevenB @dave @coldacid New feed with [pending] live item updated. Wanna do a sanity check for me?
(DIR) Post #AHXaCAXoqvHWXF5zG4 by StevenB@podcastindex.social
2022-03-18T14:13:25Z
0 likes, 0 repeats
@adam @dave @coldacid Everything looks good. The start time and date are off, but that's not a huge deal right now because I'm not showing pending episodes, and I don't think any other apps are showing anything with live. But everything else looks great for a functional live episode today. I even see the boostagram monitor in there.When you change the Live Status to Live, just click the Set Time To Now button, and it'll set your start time automatically for you.
(DIR) Post #AHXaCAy3HOGVqbMw9A by adam@podcastindex.social
2022-03-18T14:15:57Z
0 likes, 0 repeats
@StevenB @dave @coldacid I'm pretty sure I specifically set pm and not am. I noticed this was wrong last week as well. Bug?
(DIR) Post #AHXaCBNZkUgL7lJJvk by StevenB@podcastindex.social
2022-03-18T14:21:39Z
0 likes, 0 repeats
@adam @dave @coldacid Probably. I'll have to look into it later. I thought I have it fixed, but it's looking like it's not. Coding user facing time is HARD. Thankfully, it's not much of an issue now, but I will get it fixed soon.
(DIR) Post #AHXaCBn6Db6AOvFhiK by agates@podcastindex.social
2022-03-18T14:27:41Z
0 likes, 0 repeats
@StevenB @adam @dave @coldacid Steven, what are you using for date/time logic?I highly recommend Moment.js with the timezone addon. It works around the atrocious javascript Datetime and retains timezones for you.https://momentjs.com/timezone/Or maybe this luxon thing is what they recommend now, who the hell knows lolhttps://moment.github.io/luxon/
(DIR) Post #AHXaCCE2bQeJkTrDhw by StevenB@podcastindex.social
2022-03-18T14:33:31Z
0 likes, 0 repeats
@agates @adam @dave @coldacid It's not so much converting between timezones, because ultimately, I'm setting everything to UTC in the end, then displaying that as whatever local time the user is in. It's dealing with the meridian as a radio button so the average user who doesn't think in 24 hour time can just set AM or PM. I've had to deal with it years before with a sprinkler system I built, and it gave me troubles then. You would think it's a simple problem, but it's harder than it looks.
(DIR) Post #AHXaCChooiT7Epn07c by agates@podcastindex.social
2022-03-18T14:38:45Z
0 likes, 0 repeats
@StevenB @adam @dave @coldacid That's why I recommended moment.js, I've done it.
(DIR) Post #AHXaCD9p8as0dgtMm0 by StevenB@podcastindex.social
2022-03-18T14:46:47Z
0 likes, 0 repeats
@agates @adam @dave @coldacid Looking through the docs sent me on a rabbit trail on the difference between meridian and meridiem.
(DIR) Post #AHXaCDZhaNZPvx026q by agates@podcastindex.social
2022-03-18T14:54:13Z
0 likes, 0 repeats
@StevenB Looks like Luxon may be the better option for modern support for stuff like this. I don't think it was around when I used it.Important for other languages, if that matters to you.https://moment.github.io/luxon/#/intl?id=intlThe meridiem is then handled by the locale I think?https://stackoverflow.com/a/68120205/4875332
(DIR) Post #AHXaCE1LvZgjJhw7Cy by dave@podcastindex.social
2022-03-18T14:54:38Z
0 likes, 0 repeats
@agates @StevenB Wasn't moment.js deprecated?
(DIR) Post #AHXaCEVU7Xn6pA2BAu by agates@podcastindex.social
2022-03-18T14:55:05Z
0 likes, 0 repeats
@dave @StevenB 🤷 it's javascript so probably
(DIR) Post #AHXaCEx8SjuQCuyGH2 by jcbrand@mastodon.xyz
2022-03-18T14:59:07Z
0 likes, 0 repeats
@agates @dave @StevenB I used to use moment.js in the Converse chat client, but then later switched to DayJS and I'm very happy with it.IIRC been using it for over 4 years by now.https://day.js.org/Lots of people switched because it's much smaller, faster and has roughly the same API, (perhaps that's why Dave thought that moment.js is deprecated).