Artem Solod

Results 10 issues of Artem Solod

Is it possible to display some sort of section information in Outline pane? I've tried using cell syntax but it seems to be treated just like a comment and ignored....

enhancement
area-ls-code-navigation

`circshift!(vec, n)` rotation direction is inconsistent with copying `circshift(vec, n)` and mutating destination `circshift!(dest, source, n)` versions. Judging by https://github.com/JuliaLang/julia/issues/46016 it appears that in-place `circshift!(vec, n)` was introduced in `1.8`...

bug

Not sure if this is setup specific, but there is no autocomplete for symbols from `VSCodeServer`. ![image](https://user-images.githubusercontent.com/1939268/185452938-a986d8b4-0868-4413-961c-705bfac41a79.png) julia-vscode: v1.6.31 julia: 1.7.3

Is there a particular reason for `NanoSeconds` type not to provide `Integral` instance?

This allocates differently in terminal and VSCode: (julia 1.9.3, julia-vscode v1.52.2, MacOS & ubuntu) ``` using BenchmarkTools function warn_f(x) @warn "Warning" maxlog=1 end function foo(x) warn_f(x) x end foo(3) #...

bug

`Zip(x, y)` allocates a lot in a simple use case (`foo`). `Zip(x)` with a single argument seems ok. System: julia 1.9.3, Transducers v0.4.78, Ubuntu ``` julia> using Transducers, BenchmarkTools julia>...

Is it in principle possible to have some sort of a macro that would take a function and replace its inner calls to `Vector{T}(undef, n)` (and similar) with `@alloc(T, n)`?...

I saw a thread on `julia` at https://codeforces.com/blog/entry/79 and wanted to help out. This code is a slightly modified copy&paste of `python3` version. The biggest difference is `julia`'s 1-based indexing....

On one of my machines (Ubuntu 22.04.4 LTS) `juliaup` fails. I tracked it down to https://github.com/rustls/rustls-native-certs/issues/124 which apparently is triggered when not all certificates in `usr/lib/ssl/certs/` are usable. Manually installing...

Would it make sense to switch from `Vector` as the container for buffer of `CircularDeque` (and potentially other fixed size containers)? Since we have `Memory{T}` and [FixedSizeArray](https://github.com/JuliaArrays/FixedSizeArrays.jl) they could eliminate...