Steve Colbow
Steve Colbow
From the doc: > At the moment it is not possible to do the contrary: a call to Meteor.loginWithPassword will log out the current user and login the one associated...
At least one file in SimpleFOC uses the [include guard](https://www.wikiwand.com/en/Include_guard) of an external library (here the STM32duino lib) as a flag: https://github.com/simplefoc/Arduino-FOC/blob/master/src/drivers/hardware_specific/stm32_mcu.cpp#L4 This is dangerous. If the lib author (or...
1. The "Legacy Password Generator" just makes SecureLogin even more difficult to understand. Is it really useful? 2. My understanding is that user email serves no purpose in your system....
As discussed in https://github.com/sakurity/securelogin/issues/24, it seems you can claim additional security over traditional passwords only if the unique password is very strong. If the unique password is weak, my understanding...
I've installed the native app and here is what I get when using the demo to send $123 to "aaa": 
**TypeScript Version:** 2.9 **Search Terms:** JSDoc destructuring param **Code** ```javascript /** * @param {Object} arg * @param {number} arg.id - This param description won't show up */ function foo({ id...
In a [multi-root workspaces](https://code.visualstudio.com/docs/editor/multi-root-workspaces), when putting the vscode-deploy settings in the `.code-workspace` file, paths are still relative to their corresponding root folders, instead of being relative to the `.code-workspace` file....
This issue only occurs with `engine` == `ftp`. It seems this engine is not able to create the `dir` folder automatically. Not sure if it is the intended behavior. So...
This issue only occurs with `engine` == `jsftp`. I can deploy a file on an "empty" FTP without any problem: the `dir` folder is created automatically and the file is...
As you know, there are two methods to implement a publish function: 1. By returning a cursor (or an array of cursors) 2. By using `this.added()` / `this.changed()` / `this.removed()`,...