Brenton Simpson

Results 106 comments of Brenton Simpson

Thanks. That's helpful info. It could be especially hard in JS because JS is a dynamic, untyped language. Therefore, you can write the same code in a handful of different...

@tofuness You may find this interesting. Eventually, we'll want a tool that can spit out [API changelogs](https://github.com/material-motion/runtime-objc/blob/develop/CHANGELOG.md) comparing two releases. Click that link for example output from Objective-C, but effectively,...

I wonder if it's safe to presume that the same MIDI instrument is both an input and an output. Right now, we presume that there's only one instrument (output). When...

The issue @samvy just linked has another workaround: overloading `envDir` to serve as the root of a monorepo, so all the files therein get watched for changes.

Thanks! I think I've got the new build installed on my device, but unfortunately the volume keys still don't seem to be doing anything.

I'm not a C programmer, so I don't know how much farther I can take this without a whole lot of digging. I was tempted to see if I could...

I see this section: https://github.com/systemd/systemd/blob/56afff50b9e0ccfa16c922c2a8f565ec4f1bbda5/src/boot/efi/boot.c#L183-L191 I'm guessing I could add something like `KEYCHAR(key) + ` to `print_at(…, print + cursor)`?

If you're not careful with the first option, you end up with [this sharp edge](http://babeljs.io/repl/#?evaluate=true&lineWrap=false&presets=es2015%2Creact%2Cstage-0%2Cstage-2&experimental=false&loose=false&spec=false&code=class%20Thing%20%7B%0A%20%20_something%20%3D%20this.makeSomething%28%29%3B%0A%20%20%0A%20%20constructor%28arg%29%20%7B%0A%20%20%20%20this._someState%20%3D%20arg%3B%0A%20%20%7D%0A%20%20%0A%20%20makeSomething%28%29%20%7B%0A%20%20%20%20%2F%2F%20constructor%20hasn't%20run%20here%20yet%0A%20%20%20%20%2F%2F%20so%20this._someState%20%3D%3D%3D%20undefined%0A%20%20%20%20return%20%22someState%20is%20%22%20%2B%20this._someState%3B%0A%20%20%7D%0A%7D%0A%0Aconsole.log%28%0A%20%20new%20Thing%28%22defined.%22%29%0A%29%3B): ``` javascript class Thing { _something = this.makeSomething(); makeSomething() { // constructor hasn't run here...

Maybe my concerns are off-base. Allowing methods in property initializers feels like a foot-gun. To be fair, this isn't a bug I've personally encountered, just one I got curious about...