MariusDrulea

Results 26 issues of MariusDrulea

# Description Fixes https://github.com/JuliaPlots/Makie.jl/issues/2172 ## Type of change - [x] New feature (non-breaking change which adds functionality) This is how it looks now:

In order to correctly display an image `x` we have to do one of the following: 1. `image(x', axis = (yreversed = true, ))`, this option displays the data correctly...

The way we access a matrix in julia is: `x[row, col]`. Currently DataInspector(fig) displays `img[col, row] = value`, where value is `x[row, col]`. This is confusing. We have to change...

**Auto-complete works with the usual `include("..."), using ... `** ![image](https://user-images.githubusercontent.com/27725572/141210774-f1759ba0-540b-4e05-8eae-59831a43e0ac.png) **Auto-complete does not work with `@from "..." using ...`** If I use @from (see the FromFile julia package) to include...

enhancement

Currently there is a `debuggerDefaultCompiled` list of modules stored in the settings.json file. Everything not in this list is treated as interpreted by default. Most of the time we only...

enhancement
area-debugger

This is not an issue, it's rather a feature request. When having a larger project, I think we shall have the possibility to use absolute paths with respect to the...

enhancement

### Issue: Adding a new breakpoint while debugging seem to invalidate all other breakpoints in some cases. See bellow. Tested with julia-vscode version 1.6.30. **Step1: See the following code +...

bug
area-debugger

The example provided here does not seem to work after the most recent updates of genie, genieframework. Tested on an Ubuntu machine with Julia 1.10 and also Julia 1.9.4. https://learn.genieframework.com/docs/guides/adding-reactive-pages#multiple-app-modules...

I'm having problems with the autoload of controllers, usage in the docs https://learn.genieframework.com/docs/guides/adding-dynamic-pages#pages-with-a-controller. So what am I doing wrong here? system: Linux and Julia 1.10 ![image](https://github.com/GenieFramework/Genie.jl/assets/27725572/f71d8cae-e4cc-48dd-b8e6-e1dec11f3cef) The error: `ERROR: UndefVarError:...

See the following MWE: ``` using Flux model = Dense(2, 2) xt = rand(Float32, 2, 4) # batch size of 4 yt = rand(Float32, 2, 4) ps = Flux.params(model) loss_fun(m,...

implicit