Ivan Smirnov
Ivan Smirnov
(May be related to #11? Not sure) ``` thread 'main' panicked at 'internal error: entered unreachable code: metal requires all arrays be constant sized', /Users/ivan/.cargo/registry/src/github.com-1ecc6299db9ec823/naga-0.9.0/src/back/msl/writer.rs:235:21 15: 0x1033378d8 - core::panicking::unreachable_display::h9fe587038728a68b 16:...
For larger projects, chances are there's always going to be some proc-macro dependencies involved, seems like `cargo remark build` just hangs; here's the simplest example (taken from [`paste` docs](https://docs.rs/paste/latest/paste/)): ```rust...
Example: ``` cython cdef packed struct Foo: pass cdef extern from "foo.h" namespace "my::namespace": cdef cppclass A: pass ctypedef fused int_or_float: int float ``` Looks like GitHub's syntax highlighter correctly...
In this example: ``` object.Exception@source/app.d(15): Exception thrown ---------------- Stack trace: #1: /path/to/source/app.d line (16) in void app.goToF2(uint) (13) (14) void goToF2(uint i = 0) { (15) if (i == 2)...
This is continuation of a discussion started in \#348, where I promised to summarise my thoughts on what could be cleaned up in the current codebase to hopefully make it...
Suggestion: ```rust // impl for bool, &str, i64, u64, Number trait Scalar: Sealed + Sized { fn from_json_value(value: &V) -> Option; } trait JsonValueTrait { fn as_scalar(&self) -> Option {...
As it currently stands, `pointer!()` macro allocates a `Vec` (or a boxed slice, rather). Why is it necessary where a simply array would do? An array also implements `IntoIterator`, so...
There's a tool called [`cargo-cranky`](https://github.com/ericseppanen/cargo-cranky) that allows actually configuring clippy lints project-wise (which, by the looks of it, won't land in clippy for another few years...). Would it be possible...
This took me a while to figure out (since this was the last place I'd expect a forced rechunk to happen) - while passing huge frames from Python to Rust...
``` panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x28 pc=0x7ed6b6] goroutine 17231123 [running]: ktbs.dev/mubeng/pkg/mubeng.(*Proxy).New(0xc0316e6f50, 0xc146b1c600) /root/mubeng/pkg/mubeng/mubeng.go:27 +0x156 ktbs.dev/mubeng/internal/server.(*Proxy).onRequest.func1(0xc146b1c600) /root/mubeng/internal/server/handler.go:63 +0x2cd created by...