KC Erb
KC Erb
Hi there, When I've used this module to export and then import entities everything stay intact except for user info (sometimes called Owner, User, and Author by various modules). The...
```crystal require "linalg" m = LA::GMat[[3, -2],[4, -1]] vals, vecs = m.eigs res = vecs.inv * m * vecs res.detect res.flags.diagonal? ``` The last line of the above is false...
I would have liked my sample in #7 to be a tiny bit more condensed ```crystal require "linalg" m = LA::GMat[[3, -2],[4, -1]] vals, vecs = m.eigs res = (vecs.inv...
Some kinds of dev mistakes can result in the titular error. Usually followed by a pretty nasty looking error message: ``` Failed to raise an exception: END_OF_STACK [0x55cae972a076] *CallStack::print_backtrace:Int32 +118...
What do folks think about a page that explains a little bit about `to_s`, `to_s(io)`, `inspect`, `inspect(io)`, puts, pretty_print etc.? I find that there's just enough room for confusion here...
Are you interested in allowing the user to pass in an array of commands instead of a single command for build and run? There's a relative of this tool in...
This is related to #646 and #860. When edit_line has the focus, keypress doesn't get called. For example: ``` ruby Shoes.app do keypress do |key| p key.to_s end edit_line end...
This is a follow-up to #658 I have a question! I've been digging into style the last few days and noticed that in some cases when we have an element...
Hi all, One of the things I love about [Prawn](https://github.com/prawnpdf/prawn) is that you can solve positioning problems with a `stroke_axis` method and a `stroke_bounds` method. These methods help you see...
Hi all, as noted in the mailing list edit_line is behaving incorrectly when it receives the enter character. **The Problem** I would expect `edit_line` to give me back all of...