ChanServ changed the topic of #crystal-lang to: The Crystal programming language | https://crystal-lang.org | Fund Crystal's development: https://crystal-lang.org/sponsors | GH: https://github.com/crystal-lang/crystal | Docs: https://crystal-lang.org/docs | Gitter: https://gitter.im/crystal-lang/crystal
<FromGitter> <Blacksmoke16> try `each_repeated_combination(3)` instead of `combinations(3)`
<FromGitter> <moe:busyloop.net> how do people who come here always do this cool stuff
<FromGitter> <moe:busyloop.net> robo kinematics, 3d engine...
* FromGitter * moe:busyloop.net sobs in his boring webapp world
<FromGitter> <moe:busyloop.net> but it's great to see how crystal is picking up steam and getting used for more and more things ๐Ÿ’ช
alexherbo2 has quit [Remote host closed the connection]
alexherbo2 has joined #crystal-lang
taupiqueur has quit [Ping timeout: 246 seconds]
alexherbo2 has quit [Ping timeout: 260 seconds]
Sankalp has quit [Ping timeout: 268 seconds]
Sankalp has joined #crystal-lang
Sankalp has quit [Ping timeout: 260 seconds]
Sankalp has joined #crystal-lang
hightower2 has quit [Read error: Connection reset by peer]
hightower2 has joined #crystal-lang
jhass has quit [Ping timeout: 272 seconds]
<FromGitter> <skinnyjames> > gosh, i wish people would stop using MkDocs โŽ :( oh no, I just learned about / stood up a mkdocs yesterday. Is there a better alternative?
jhass has joined #crystal-lang
Sankalp- has joined #crystal-lang
Sankalp has quit [Ping timeout: 260 seconds]
Sankalp- is now known as Sankalp
FromGitter has quit [Remote host closed the connection]
oprypin_ has quit [Quit: Bye]
Sankalp has quit [Ping timeout: 272 seconds]
Sankalp has joined #crystal-lang
Sankalp has quit [Ping timeout: 272 seconds]
Sankalp has joined #crystal-lang
Sankalp has quit [Ping timeout: 268 seconds]
Sankalp has joined #crystal-lang
_ht has joined #crystal-lang
Sankalp has quit [Ping timeout: 256 seconds]
Sankalp has joined #crystal-lang
Sankalp has quit [Ping timeout: 264 seconds]
Sankalp has joined #crystal-lang
oprypin has joined #crystal-lang
FromGitter has joined #crystal-lang
taupiqueur has joined #crystal-lang
<FromGitter> <moe:busyloop.net> thx, made a ticket: https://github.com/crystal-ameba/github-action/issues/16
<FromGitter> <moe:busyloop.net> fwiw, alternative solutions e.g. with action caching or by publishing binary releases of ameba and downloading those in the action may be possible - but i left them out of the ticket because that would get complicated and probably not worth it. according to blacksmoke ameba takes ~20s to build without `--release`. bringing that down to ~5s would be nice, but i think having it currently take *5min* is
<FromGitter> ... the more urgent issue to address. ๐Ÿ˜…
<FromGitter> <moe:busyloop.net> maybe i'm blaming it unfairly and the sites that annoy me just use bad templates. โŽ if i can scroll your navigation sidebars without scrolling the main content and if deeplinks/search don't send me to obscure pages without indication of where i am them i'm fine ๐Ÿ˜ฌ
<FromGitter> <moe:busyloop.net> don't know of any great alternatives either, last time i checked there was docusarus and i think one or two others - but mkdocs and saurus are probably the main ones atm (gitbook also tends to have nice UX but sadly proprietary)
alexherbo2 has joined #crystal-lang
__ht has joined #crystal-lang
_ht has quit [Ping timeout: 252 seconds]
__ht is now known as _ht
kevinsjoberg has quit [Quit: Updating details, brb]
hovsater has joined #crystal-lang
hovsater is now known as kevinsjoberg
kevinsjoberg has quit [Client Quit]
kevinsjoberg has joined #crystal-lang
kevinsjoberg is now known as hovsater
jmdaemon has quit [Ping timeout: 255 seconds]
__ht has joined #crystal-lang
_ht has quit [Ping timeout: 268 seconds]
__ht is now known as _ht
<FromGitter> <skinnyjames> ah yeah. I like that mkdocs can embed and reference api docs. It seems to be really easy to use, but I wonder if another theme would help. โŽ โŽ I am pretty happy the ones I stood up: https://skinnyjames.gitlab.io/barista/
<FromGitter> <moe:busyloop.net> ah yea, that's a good theme, sidebars scroll as they should ๐Ÿ‘๏ธ
<FromGitter> <skinnyjames> Ah nice.
alexherbo2 has quit [Remote host closed the connection]
alexherbo2 has joined #crystal-lang
<FromGitter> <Blacksmoke16> @skinnyjames btw is a new console version out with some breaking changes
<FromGitter> <skinnyjames> Thanks @Blacksmoke16, been meaning to update
<FromGitter> <Blacksmoke16> Np, just officially was released yesterday
ur5us has joined #crystal-lang
<SamantazFox> Hello! Is it possible to format a Time::Span like a Time (e.g: hh:mm:ss.ms)?
<SamantazFox> I can't seem to find a method that supports Time::Span
walez has joined #crystal-lang
alexherbo2 has quit [Remote host closed the connection]
alexherbo2 has joined #crystal-lang
ur5us has quit [Quit: Leaving]
alexherbo2 has quit [Remote host closed the connection]
alexherbo2 has joined #crystal-lang
ur5us has joined #crystal-lang
_ht has quit [Quit: _ht]
<SamantazFox> Also, does someone know the difference between `stefanwille/crystal-redis` and `jgaskins/redis`?
<SamantazFox> Both shards look complete
walez has quit [Quit: Leaving]
<FromGitter> <Blacksmoke16> did you try `.to_s`?
<SamantazFox> Blacksmoke16: I'd like to change the resolution of the milliseconds field
<SamantazFox> (In essence, I only want milliseconds, not ยตs or ns)
<SamantazFox> The following works, but feels hacky, at best: https://play.crystal-lang.org/#/r/ecsc
<FromGitter> <Blacksmoke16> id prob grab what the implementation is and extract it into some class method helper method
<FromGitter> <Blacksmoke16> tho whats the reason it *has* to be ms?
<SamantazFox> It's to write WebVTT files
<SamantazFox> Currently, we have that, so I was wondering if there's a better, proper way of doing it: https://github.com/iv-org/invidious/blob/master/src/invidious/routes/api/v1/videos.cr#L116
<FromGitter> <Blacksmoke16> https://github.com/crystal-lang/crystal/blob/5402f6a/src/time/span.cr#L341 replicate thing in a class method that accepts a `Time::Span`, does like `String.build` and does that logic, minus the extra precision
<SamantazFox> Blacksmoke16: Thanks! I think we'll stay with our way ^^