talk2drys

Results 11 comments of talk2drys

I just want to point something out, maybe it is just me though. when I read suggestions/recommendations or even the tutorial pages out there, I get this vibe that it...

more debug info from ssh server ``` [root@server ~]# /usr/sbin/sshd -p 2222 -D -ddd -e debug2: load_server_config: filename /etc/ssh/sshd_config debug2: load_server_config: done config len = 734 debug2: parse_server_config_depth: config /etc/ssh/sshd_config...

@judgeman5, this is my `Cargo.toml` file ```toml [package] name = "learn_ssh" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] actix-rt = "2.8.0"...

> > @judgeman5, this is my `Cargo.toml` file > > ```toml > > [package] > > name = "learn_ssh" > > version = "0.1.0" > > edition = "2021" >...

@judgeman5 please do you know any other way i can do the same thing

@judgeman5 it working now, i updated from `0.37.1` to `0.38` I think this pull [#152](https://github.com/warp-tech/russh/pull/153) request was what fixed it and also i still have the `vendored-openssl` feature flag

having inlay hints at the end of the line looks alright, this way it doesn't really mess with code layout ![image](https://user-images.githubusercontent.com/32944188/161912823-96921698-3baf-4792-b275-8aba11e0e814.png)

I just posted on another issue, but this might be the closet to my issue here is my coredump [core.nvim.1000.57765eeb4a9244f3925e2ba2c8bfd2a3.9603.zip](https://github.com/neovim/neovim/files/12384531/core.nvim.1000.57765eeb4a9244f3925e2ba2c8bfd2a3.9603.zip) i did a backtrace with -full and got, i couldn't...

> Thanks! This narrows it down a lot; will work on finding a reproduction. The tracking issue on `luv`'s end is [luvit/luv#644](https://github.com/luvit/luv/issues/644) Just wanted to add this, I saw somewhere...

there was a breaking change in 0.92 for echo to not print to stdout see [echo breaking change](https://www.nushell.sh/blog/2024-04-02-nushell_0_92_0.html#echo-toc) instead you use `print` to print to stdout and stderr for you...