-
I've been thinking that maybe we should also provide links to promise learning resources: blog posts, tutorials, examples, etc etc. These don't necessarily have to be things written by Promises/A+ me…
-
Inspired by https://github.com/promises-aplus/cancellation-spec/issues/1#issuecomment-12377406, what about something as simple as this? Assume underscored properties are "actually private," i.e. would…
-
检测到 willwan92/interview-questions 一共引入了34个开源组件,存在5个漏洞
```
漏洞标题:Growl命令执行漏洞
缺陷组件:growl@1.9.2
漏洞编号:CVE-2017-16042
漏洞描述:Growl是一套支持Node.js的通知系统。
Growl 1.10.2之前版本中存在安全漏洞,该漏洞源于在将输入传递到shell命令之前,程序未能正确的对其进行过滤…
-
> **Migrated from Trello**
The current UX is both confusing in various ways and even factually incorrect (e.g. submission shows up as green ("correct") before even being assessed). How these assign…
-
For learning promises, I made my own little implementation, see code below. I'm a Javascript newbie, so Douglas, don't be too hard on me please ;-)
For simplicity, it uses `process.nextTick`, so it…
-
As discussed with @raphendyr and in https://github.com/apluslms/a-plus/pull/585, we should tweak some of the Bootstrap colours.
Let's explore an asset pipeline that doesn't require any major work …
-
When I am in the process of registering and have entered a date of birth, when I press the x button in the date of birth field, this error comes up due to the field now being empty.
-
Hi @rst-fokus ,
I need to use secure MQTT connection with openmtc. i have used an own mqtt broker (EMQ) which enable SSL and use key and certs file itself. Afterthat i changed openmtc-backend.json…
-
Ass suggested by @Raynos in #2 we could make promises lazy until `.done` is called. Consider the `promise(executor)` syntax being proposed in https://github.com/promises-aplus/resolvers-spec/issues/3…
-
```javascript
const Promise = (function () {
function MyPromise(fn) {
const self = this;
self.state = 'pending';
self.value = undefined;
self.callbacks = [];
function …