John Strunk

Results 14 issues of John Strunk

After running the install script (wonderful script by the way), it generated the IPv6 peer as (with different actual values of course): ```bash [Peer] PublicKey = CVcJFPr5FPUhQQb1j8H2k0Abg4lDw+dGJVzPPFzJ4js= PresharedKey = pqO1poiAJStI8nCZcjsI9aD+xXi9zXJKV3wH+VNBG1Y=...

This pull request implements the features requested in #23 and #48. Buy adding a shuffle button to the top of the page that shuffles the currently displaying posts, feature request...

The following code ```gleam birl.from_unix(1_711_456_116) |> birl.set_timezone("America/New_York") |> birl.to_iso8601 |> io.debug ``` produces `2024-03-26T07:28:36.000-05:00` when it should produce `2024-03-26T08:28:36.000-04:00` because America/New_York is in EDT time right now, which has the...

The test function: ``` pub fn birl_set_time_of_day_test() { birl.now() |> birl.set_time_of_day(birl.TimeOfDay(9, 30, 0, 0)) } ``` fails when it is past 12:00 AM UTC but before (I assume, haven't waited...

Hey everyone, just wanted to start a discussion. Since Gleam has a really nice type system and as a language heavily encourages you to use types to reduce the possibility...

Thanks for the package, I've gotten lots of use out of it! One thing I noticed is that running this code: ```gleam let assert Ok(t1) = birl.parse("2019-01-01T14:00:00.000-04:00") let assert Ok(t2)...

Is there anything I can do to [Tempo](https://hexdocs.pm/gtempo/index.html) to make using it with Pog more ergonomic? Would adding `to_pog` and `from_pog` functions to the Tempo library make sense? Should `to_tuple`...

Hello! From experience, inserting into SQLite databases has been a common hurdle for people new to Gleam (for the people that are using SQLite of course). What do you think...

Waiting on #8, this will allow the parse_any functions to parse other locales' date formatting. Currently, only the EN-US locale is supported. This will bump the package version number up...

Waiting on #8, the package should be able to get the current locale whether running in the browser or on a server