intricate
intricate
- Moved the check for equal position into the if statement above, to only run when new entities are fetched (optimization) - Added the condition of being onGround to that...
One of the optimizations done by optimizedTNT makes TNT not push other TNT that are in the same position, because if the TNTs are on a block the push has...
Expected behavior: `write` should always return the number of bytes written. Actual behavior: `write` returns the *value* written, but only if the value is a `UInt8`. To reproduce: ```julia using...
Hopefully this is not too much stuff. ### Changes - Separated the logic of `draw_direct` into 4 functions: `kitty_encode`, `kitty_encode_chunked`, `kitty_encode_compressed`, and `kitty_encode_chunked_compressed`. Now it's possible to choose whether to...
Mostly copied from `filetype/python.kak` with minor changes.
Related: #127. Compare the performance: ```julia function test_fast(n::Int, t::Int) x = 0 for I in Combinatorics.Combinations(n, t) x += sum(I) end return x end function test_slow(n::Int, t::Int) x = 0...