Shane St Savage

Results 82 comments of Shane St Savage

Which version of b2 are you using?

Potential fix here, reviews/comments welcome. https://github.com/axiom-data-science/rsync-server/pull/22

+1 Also: http://stackoverflow.com/questions/17057104/multimap-table-with-guava

I can confirm this works with h3-duckdb 1.0.0 using the python client: ``` import duckdb duckdb.sql("INSTALL h3ext FROM 'https://pub-cc26a6fd5d8240078bd0c2e0623393a5.r2.dev'") con = duckdb.connect(config = {"allow_unsigned_extensions": "true"}) con.load_extension("h3ext") con.sql("SELECT h3_cell_to_latlng(cast(586265647244115967 as ubigint));").show()...

Yeah, this seems strange to me too. Maybe the last line in `pamAuthenticate` should just be changed to `return AuthError`?

Yeah, I think the pam configuration itself should be adjusted with `required/requisite` if other modules are to be used instead of pam-ussh returning success if no auth check was actually...

How about replacing ``` if err := c.CheckCert(username, cert); err != nil { ``` with ``` if err := c.CheckCert(cert.ValidPrincipals[0], cert); err != nil { ``` This seems better than...

My suggestion is to stop checking principals in `ssh.CheckCert` by feeding it the first principal in the cert (or an empty string if none are set), but to still do...