Results 76 comments of Nickolay

Same here; I had App Store.app open, so I had these in `ps`: ``` $ ps aux | grep WebContent nickolay 39436 0.0 0.4 3773952 58748 ?? Ss 7:55AM 0:03.34...

As far as I understand: * pipx [recommends](https://pipxproject.github.io/pipx/how-pipx-works/) that packages use`entry_points` in their setup.py. * Yet pipx has some support for `scripts`, namely it symlinks them from the app's virtualenv...

Oh, the workaround is to change the last line of `~/.local/bin/mssql-cli` to point to the virtualenv's python (on my system it's `~/.local/pipx/venvs/mssql-cli/Scripts/python -m mssqlcli.main "$@"`)

The `error C1083: Cannot open include file: 'lber.h': No such file or directory` is python-ldap failing to build. The easiest way around it is to install a prebuilt `*.whl`: https://stackoverflow.com/a/58235938/1026...

I've just commented on an upstream issue https://github.com/python-ldap/python-ldap/issues/304 about the various ways python-ldap errors may be raised. The "'int' is not iterable" error can happen when LDAPError's `args` represents a...

Works for me, for what it's worth! (on Python 3.7.0)

`yarn add https://github.com/frappe/frappejs` installs fine on node v12. Couldn't get through the rest of the docs though.

With the changes from #25 and #59 we support `CASE WHEN .. THEN [WHEN..THEN ...] ELSE END` and `CASE WHEN THEN ...`. We don't support "half-expressions" in WHEN like `CASE...

Hey, I wrote about this recently in https://github.com/ballista-compute/sqlparser-rs/issues/7#issuecomment-659857344

If the question was specifically about discussing a change like this https://github.com/ballista-compute/sqlparser-rs/commit/c67d6670d4f5fb7fee5450b96a799f89b8660b2f then I was too quick to close this as a duplicate, as this is something we'll need eventually.