hikari

Results 9 comments of hikari

> Related: doesn't .NET 6 also introduce a shared Random instance? When #885 is merged, I will issue the following commit pull request. https://github.com/hikarin522/mathnet-numerics/commit/f132aa5f8b67e01b8c158dd8013bac5a7cd0f32f

> Note, the reason we pass in a seed is to avoid the problem Random used to have when you create multiple instances very quickly they are not guaranteed to...

If the system language is Japanese, MSBuild will be output as CP932, which will cause garbled characters. Similar problems may occur in other languages.

Below is an image of a PackageReference typo error. - before ![image](https://user-images.githubusercontent.com/7986594/148012797-acda8601-df8e-40be-b57f-5fdea4a8880e.png) - after ![image](https://user-images.githubusercontent.com/7986594/148012916-6331919d-91cc-451e-92ca-90cc11cd499e.png)

Can you post the output of below command. ```sh xprop -root | grep '_NET_CLIENT_LIST(WINDOW)' ``` #16 https://github.com/hikarin522/GlassIt-VSC/blob/v0.2.2/extension.js#L51

Start code and run the following shell script. ```sh #!/bin/bash codeIds=(`pgrep 'code'`) echo "codeIds: ${codeIds[@]}" IFS=', ' windowIds=`xprop -root | grep '_NET_CLIENT_LIST(WINDOW)'` windowIds=(${windowIds#*#}) echo "windowIds : ${windowIds[@]}" pids=() targets=() for...

If the window does not become translucent after running this script, i3 may not support _NET_WM_WINDOW_OPACITY. ```sh #!/bin/bash codeIds=(`pgrep 'code'`) echo "codeIds: ${codeIds[@]}" IFS=', ' windowIds=`xprop -root | grep '_NET_CLIENT_LIST(WINDOW)'`...

I'm not familiar with i3 so I don't know, but if I find a solution, I'll fix it.