237dmitry

Results 245 comments of 237dmitry

You have to specify the file name `-OutFile /path/to/asio.1.12.1.nupkg`

Is temp1 an existing directory? ```powershell $ Invoke-WebRequest -Uri 'https://github.com/ros2/choco-packages/releases/download/2022-03-15/asio.1.12.1.nupkg' -OutFile ./Desktop/filewithoutextension $ dir ./Desktop/ Directory: ~/Desktop UnixMode Num User Group LastWriteTime Size Name -------- --- ---- ----- ------------- ----...

> using a more standardized way of passing colors RGB Escape Sequences maybe? ``` Write-Host "`e[38;2;255;255;255;48;2;255;0;0m White on Red `e[0m" ```

As I remember in Gnome environment default terminal is set in `gsettings` ``` $ gsettings list-keys org.gnome.desktop.default-applications.terminal exec-arg exec $ gsettings get org.gnome.desktop.default-applications.terminal exec 'gnome-terminal' $ gsettings get org.gnome.desktop.default-applications.terminal exec-arg...

> I don't want to use the gnome-terminal I want to use tilix Set Tilix as default: ``` gsettings set org.gnome.desktop.default-applications.terminal exec 'tilix' gsettings set org.gnome.desktop.default-applications.terminal exec-arg '-e' ```

> Why does tilix use a different shell? I think this is $SHELL environment variable.

> Therefore, use a `u` suffix to ensure that you get an unsigned (positive) value. Exclusively for 255? But for 254 and 256 this is not necessary.

> 4 is a multiple of 8 but this rule is not applied the "rule" of 255, this bug is for 255 and 65535: ```powershell for ($i = 1; $i...