Samuel Marks
Samuel Marks
``` Apple clang version 13.0.0 (clang-1300.0.29.3) Target: x86_64-apple-darwin20.5.0 Thread model: posix cmake version 3.21.4 ```
Works fine in Sydney, Australia
Thanks. Just pushed up another commit. Trying to remove all your minified files, your globals, and start using `package.json`. Can you help me figure out the types of everything, and...
Thanks for that, okay I've switched to my fork which incorporates the two relevant open PRs. Been thinking of replacing: ``` new SSHyClient.hash.SHA1(m.toString()).digest() ``` With ``` sjcl.hash.sha1.hash(m.toString()) ``` Also trying...
[`const`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const) doesn't apply to the RHS if the RHS has its own memory, e.g.: to do this to a regular object, run [`Object.freeze`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze). Oh, I meant that `inflate_long` is used...
@stuicey Thanks, yeah I think this is where I leave it in your hands (for a time). Lots of types still need to be annotated, but the bulk of the...
Any news on this feature's implementation, or roadmap to implementation?
You might be interested in my approach here: https://github.com/SamuelMarks/restify-orm-scaffold The idea is to have [this line in your `main`](https://github.com/SamuelMarks/restify-orm-scaffold/blob/8f60aa1/main.ts#L26): ```ts export const all_models_and_routes: Map = populateModelRoutes(__dirname); ``` A directory structure...
@avital Yep, I agree completely. So that's why it's important to get linters setup as early as possible in the project. Introducing these to TensorFlow for example would be completely...
@jheek One can just add this line to the GitHub Action: ``` flake8 . --count --select=$(printf '%s,' {A..Z}) --ignore='W503,E203,E402,E731,E741,C901' --show-source --max-line-length=119 --statistics ``` In terms of two spaces versus four,...