Richard Gomes
Richard Gomes
1. I've fixed some missing functions on certain providers. 2. I've created a sample "kotti_velruse" which uses openid-selector in order to provide a nice front end for authentication via OpenID...
For consistency, routes for bitbucket should start like '/login' velruse.bitbucket-login --> /bitbucket/login velruse.bitbucket-callback --> /bitbucket/login/callback velruse.openid-url --> /login/openid velruse.openid-callback --> /login/openid/callback velruse.github-login --> /login/github velruse.github-callback --> /login/github/callback velruse.twitter-login --> /login/twitter...
Related: #19 IMHO, one of the major deficiencies of actix-web documentation and codebase is that examples may not be self-contained, being clean enough and straighforward enough for newcomers into the...
The code below is a valid Python expression ``` sum(v) / float(len(v) - True) ``` but the similar code below does not compile: ``` @cutype("([Float], Bool) -> Float") @cu def...
Builtin "pow" is not allowed inside lambdas. ``` @cutype("([Float], Float) -> Float") @cu def cm2(v, m): return sum(map(lambda x: pow(x-m, 2), v)) / float32(len(v)) ```
Porting CBT to Scala Native would potentially allow an entire tool chain independent of the JVM, including the build tool, which is a very important component of a tool chain....
Decide how scripts which require root privileges should be handled. > Chances are that they simply become scripts under folder `sbin` or maybe simply `bin`, but explicitly warn that root...
- [ ] convert scripts under ``user_install`` to scripts under ``bin`` - [ ] provide nice usage screen messages for all install_* scripts
I'm not sure why... but existing scripts which were working fine stopped work properly when `wget` is called. It may be a misconfiguration or just a bug somewhere else... but...