Andrew Crites
Andrew Crites
- Removed trailing whitespace - Use 4-space tab in JavaScript files consistently
The change from module.exports to export default no longer allows you to use named imports. This would be a breaking change, but it's also incompatible with the current type declarations....
Just a suggestion, but I think the example conflicts a bit with other philosophies espoused in this repo. * `SuperArray`. is not a descriptive name. `DiffableArray` or something like that...
Whenever I try to use Omnicompletion after first loading a TypeScript file, I get this error. ``` Error detected while processing function tsuquyomi#complete: E716: Key not present in Dictionary: 0...
I have followed the installation instructions for Tsuquyomi. I am using Neovim 0.1.7 which should be compatible I think. I have typescript 2.2.2 globally installed with tsc/tsserver. I'm also using...
This would be a pretty large change, but the [current Amazon Alexa SDK](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs#making-skill-state-management-simpler) has a concept of states for intents. You can set a state in the session handler and...
VoiceLabs has some recommendations for how to use `alexa-app` to track usage. Currently they document using `VoiceInsights.track(req.getSession(), ...` but this does not work as expected because the session object you...
Currently if there are any errors from `http.get` (e.g. the file does not exist) the error is propagated to the top level of the app and there's no way to...
In the JavaScript, .on actually returns an EmitterSubscription rather than void. This is important mainly because you can call .remove on it.