Ary Borenszweig

Results 414 comments of Ary Borenszweig

I forgot to ask: what OS are you on? And does it reproduce on that OS? Maybe it's only a mac osx thing.

@BurntPizza Will Java get actual structs? When is that supposed to happen? Do you have a link?

@RuedigerMoeller: an offtopic question, is this benchmark being discussed right now on some website like reddit or hackernews?

Reduced a bit more: ```crystal class Foo def initialize "" % 1 end end def run(x : Foo = Foo.new) end run ``` Probably can be reduced further by starting...

Reduced more: ```crystal lib LibC fun exit(Int32) : NoReturn end class Foo def initialize arg = 1 LibC.exit(0) unless arg.is_a?(String) unknown arg end end def run(x : Foo = Foo.new)...

Oh, actually, one has to escape it in the itemTemplate... sorry about the issue!

Reopening. I thought underscore or lodash was being used for templates, but it seems the logic is reimplemented here. The problem is, the `` characters are not being escaped. So...

As a workaround, in templates you can do: ``` ``` This uses a trick to escape HTML using jquery (which should be available because materialize needs it)

Sure! Yesterday we were discussing with @waj how to do this. For example, the homebrew formula. We'd like to have `crystal` optionally depend on `shards`, but to install `shards` you'll...

That also means that `shards` will depend on `libyaml`, but not `crystal-compiler`, at least now.