yxhuvud has quit [Remote host closed the connection]
yxhuvud has joined #crystal-lang
f1refly has quit [Quit: see ya in hell]
f1refly has joined #crystal-lang
straight- is now known as straight-shoota
<FromGitter>
<rishavs> For adding verification mails/forgot password mails to my crystal site, what would be the recommended way? ⏎ Use a specific shard or a mail over http provider? ⏎ Any recommendations?
deavmi has left #crystal-lang [P A R T E D]
casionaut has joined #crystal-lang
<FromGitter>
<grkek> Hello People
<casionaut>
hello
casionaut has quit [Remote host closed the connection]
Starfoxxes has quit [Ping timeout: 245 seconds]
Starfoxxes has joined #crystal-lang
<FromGitter>
<Blacksmoke16> o/
<FromGitter>
<Blacksmoke16> @rishavs REST API of some provider would prob be simplest. E.g. Postmark or something.
<postmodern>
also kind of wish there was something like String.build, but was prepopulated with the contents of the string to make manipulating a String easier
<postmodern>
probably could be done like the above: String.build(self.length) { |builder| builder << self.dup; builder.rewind; yield builder }
<FromGitter>
<Blacksmoke16> for what purpose?
<postmodern>
easily changing a single character at a given index in a stringg