Per Lundberg

Results 169 comments of Per Lundberg

@rprichard @mintty I stumbled into this issues because of some issues I'm seeing in my console-based app (more details in https://github.com/perlang-org/perlang/issues/285). The short version: - `System.Console.ReadKey` in .NET doesn't work...

> If you run MSYS, I suggest to enable ConPTY support by setting MSYS=enable_pcon before starting a terminal; I will add a hint to the wiki. Thanks, I tried enabling...

> Check `uname -a`, if it reports a version of at least 3.1.0, it should work. `3.0.7-338.x86_64`, so apparently too old for that. I upgraded Git for Windows to a...

(Hmm, my problem could be a permutation of https://github.com/git-for-windows/git/issues/2483. I'll ask there for advice.)

@paiden Sorry to hear you are planning to move away from maintaining this (especially given that there are no other better .NET parsers available for `.toml` at the moment), but...

I've also seen this now. Doing like this: ``` user = ldap.search( base: filter_base, filter: user_filter, attributes: ['samaccountname', 'displayname', 'memberof'] ).first { username: user.samaccountname.first, name: user.displayname.first.force_encoding('UTF-8') } ``` ..._works_, but...

@RoryO - care to provide some more details on why this was closed? Has this been fixed, and if so, in what PR?

I looked a bit more: the Net::LDAP::Error class does _not_ contain this info at all, which is a bit unfortunate: https://github.com/ruby-ldap/ruby-net-ldap/blob/master/lib/net/ldap/error.rb (This is running on JRuby 9.1.8.0, on macOS Sierra.)

Interestingly enough, when piping to `cat` instead of `rainbow` (i.e. just outputting `stdin` to `stdout`), it _does not_ exhibit a delay. This indicates that the problem is indeed on the...

Thanks for the suggestions. Will try what you suggested and report back. > Might also be a LF vs CRLF issue ? Is this on Windows ? Ah, sorry, I...