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
ur5us has quit [Ping timeout: 264 seconds]
Chillfox has quit [Ping timeout: 260 seconds]
<FromGitter> <nanobowers> Is there a way to call a (different) method from the superclass without using `super`? e.g, for classes `Foo` and `Bar < Foo` if I want to do: ⏎ ⏎ ```code paste, see link``` [https://gitter.im/crystal-lang/crystal?at=616e1d0898c13e7550e221df]
<FromGitter> <Blacksmoke16> ooo
<FromGitter> <Blacksmoke16> iirc the suggested approach is to like define ⏎ ⏎ ```def aaa ⏎ self.foo_aaa ⏎ end``` [https://gitter.im/crystal-lang/crystal?at=616e1da7a41fd20699ef5919]
<FromGitter> <nanobowers> haha, thanks. similar use case, was trying to support some translation of python code that does this (via `py2cr`)
yxhuvud has quit [Quit: No Ping reply in 180 seconds.]
xyhuvud has joined #crystal-lang
ur5us has joined #crystal-lang
Munto has quit [Ping timeout: 264 seconds]
Munto has joined #crystal-lang
xyhuvud has quit [Quit: No Ping reply in 180 seconds.]
yxhuvud has joined #crystal-lang
r0bby has quit [Ping timeout: 245 seconds]
r0bby has joined #crystal-lang
ur5us has quit [Ping timeout: 245 seconds]
avane has quit [Ping timeout: 264 seconds]
avane has joined #crystal-lang
yxhuvud has quit [Ping timeout: 258 seconds]
yxhuvud has joined #crystal-lang
trillp has joined #crystal-lang
Munto has quit [Ping timeout: 264 seconds]
Munto has joined #crystal-lang
Munto has quit [Ping timeout: 258 seconds]
Munto has joined #crystal-lang
ur5us has joined #crystal-lang
Munto has quit [Ping timeout: 265 seconds]
ur5us has quit [Ping timeout: 245 seconds]
ur5us has joined #crystal-lang
Munto has joined #crystal-lang
Munto has quit [Ping timeout: 264 seconds]
Munto has joined #crystal-lang
Munto has quit [Ping timeout: 245 seconds]
Munto has joined #crystal-lang
ur5us has quit [Ping timeout: 264 seconds]
Munto has quit [Ping timeout: 245 seconds]
Munto has joined #crystal-lang
Munto has quit [Ping timeout: 258 seconds]
Munto has joined #crystal-lang
Munto has quit [Ping timeout: 245 seconds]
Munto has joined #crystal-lang
Munto has quit [Ping timeout: 258 seconds]
Munto has joined #crystal-lang
Munto has quit [Ping timeout: 260 seconds]
Munto has joined #crystal-lang
Munto has quit [Ping timeout: 258 seconds]
Munto has joined #crystal-lang
trillp has left #crystal-lang [#crystal-lang]
yxhuvud has quit [Remote host closed the connection]
yxhuvud has joined #crystal-lang
ur5us has joined #crystal-lang
Stephie- is now known as Stephie
antoszka has quit [Ping timeout: 268 seconds]
antoszka has joined #crystal-lang
hexology has joined #crystal-lang
ur5us has quit [Ping timeout: 265 seconds]
<FromGitter> <christopherzimmerman> @nanobowers if you're still working on the `numpy` part of translation, and you don't want to have to make big changes later, you can use the `device-agnostic` branch of `num.cr`, it's in a pretty stable place right now, pretty much just have a ton of documentation to write before 1.0. https://github.com/crystal-data/num.cr/tree/device-agnostic. Apart from `fft`, and a couple of the *grid
<FromGitter> ... methods, it should have every method in the numpy API. It also has a pretty nice `einsum` implementation now, which should mean it can cover a lot more than py2ruby.
<FromGitter> <christopherzimmerman> Once I get that released, I'd also like to contribute to some of the python translation, so let me know how I can help.
<FromGitter> <christopherzimmerman> Oh, it also supports `.npy` files, so that should hopefully allow for much easier testing.