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> @naqvis planning on migrating your recent string shards into the stdlib? I'd be happy to help if you want/need a hand with that
<FromGitter> <naqvis> Thanks George. I haven't yet started looking into that. Would require to go through stdlib classes and see how to best integrate that.
<FromGitter> <naqvis> Also would be better if you can review the shard code and help to provide your comments if code base meets the required standard and optimization
richbridger has quit [Ping timeout: 268 seconds]
richbridger has joined #crystal-lang
hendursa1 has joined #crystal-lang
hendursaga has quit [Ping timeout: 240 seconds]
<FromGitter> <naqvis> I just added grapheme to stdlib, will be pushing the PR for review
<FromGitter> <Blacksmoke16> 🚀 that was quick!
<FromGitter> <naqvis> let's see how the review goes :P
<FromGitter> <naqvis> have left unicode string/char width part for another PR
<FromGitter> <Blacksmoke16> is that properties file going to change when new unicode versions are released?
<FromGitter> <naqvis> nah, not in this version
<FromGitter> <Blacksmoke16> gotcha. was going to say if it does would be nice to add it to that script that generates the other unicode data
<FromGitter> <naqvis> but could do that auto generation, as did in chard width
<FromGitter> <Blacksmoke16> would be worth it imo, less likely to be forgotten/work when updating normal unicode data
<FromGitter> <naqvis> agree 👍
<FromGitter> <Blacksmoke16> granted i never really looked at the script to know how it works, but i would assume it provides the data you need
<FromGitter> <Blacksmoke16> otherwise should be easy enough to make another request to get it
<FromGitter> <naqvis> actually just checked, data doesn't get updated that often. Even the latest version was updated in 2019 ⏎ ⏎ ```code paste, see link``` ⏎ ⏎ http://www.unicode.org/Public/UCD/latest/ucd/auxiliary/GraphemeBreakProperty.txt [https://gitter.im/crystal-lang/crystal?at=60a3bc5d233397424dcd6141]
<FromGitter> <Blacksmoke16> wasn't that just when the last unicode version was released?
<FromGitter> <Blacksmoke16> nvm, 13.0.0 was in 2020
DTZUZU_ has joined #crystal-lang
asterite has quit [Quit: Bye]
asterite_ has joined #crystal-lang
asterite_ is now known as asterite
DTZUZU has quit [Read error: Connection reset by peer]
FromGitter has quit [Ping timeout: 240 seconds]
FromGitter has joined #crystal-lang
sz0 has quit [Quit: Connection closed for inactivity]
lanodan has quit [Quit: WeeChat 3.0]
lanodan has joined #crystal-lang
hendursa1 has quit [Quit: hendursa1]
hendursaga has joined #crystal-lang
deavmi has quit [Ping timeout: 260 seconds]
deavmi has joined #crystal-lang
DTZUZU_ has quit [Ping timeout: 240 seconds]
DTZUZU_ has joined #crystal-lang
DTZUZU_ has quit [Read error: Connection reset by peer]
DTZUZU_ has joined #crystal-lang
yxhuvud has quit [Ping timeout: 250 seconds]
DTZUZU_ has quit [Ping timeout: 240 seconds]
DTZUZU has joined #crystal-lang
DTZUZU has quit [Ping timeout: 252 seconds]
DTZUZU has joined #crystal-lang
yxhuvud has joined #crystal-lang
deavmi has quit [Read error: Connection reset by peer]
deavmi_ has joined #crystal-lang
<FromGitter> <oprypin:matrix.org> @Blacksmoke16: thanks much for the notice. huh that's a really weird project, isnt it? there must be some science use case or something, cuz i'm personally not seeing the use case
<FromGitter> <oprypin:matrix.org> @Blacksmoke16: wait... this isn't about "github actions artifacts" at all
<FromGitter> <oprypin:matrix.org> so im fine :p
<FromGitter> <Blacksmoke16> oh you're right. I kinda just assumed it was
<FromGitter> <oprypin:matrix.org> and the use case is obvious, of course, if it's exporting actual data such as issues, not just exporting "github actions artifacts"
<FromGitter> <oprypin:matrix.org> i'm probably really taking a hit in terms of SEO though lol
<FromGitter> <oprypin:matrix.org> (if anyone's wondering about the context: https://nightly.link/ is my project)
DTZUZU_ has joined #crystal-lang
DTZUZU has quit [Ping timeout: 240 seconds]
DTZUZU has joined #crystal-lang
DTZUZU_ has quit [Ping timeout: 252 seconds]
<FromGitter> <mixflame> is it possible to store Procs in an Array and then call them later with parameters?
<FromGitter> <mixflame> ```code paste, see link``` [https://gitter.im/crystal-lang/crystal?at=60a453935fcfdb5ebd73f5cc]
<FromGitter> <mixflame> ``````
<FromGitter> <mixflame> ```def add_injector(proc) ⏎ @injectors << proc ⏎ end``` [https://gitter.im/crystal-lang/crystal?at=60a453a540194369b6dc3077]
<FromGitter> <mixflame> ```@injectors.each do |injector| ⏎ injector.call(request) ⏎ end``` [https://gitter.im/crystal-lang/crystal?at=60a453c8ee77a74d685d1b4c]
<FromGitter> <mixflame> ```code paste, see link``` [https://gitter.im/crystal-lang/crystal?at=60a454804e4b874d642a509e]