Zeke Sikelianos

Results 472 comments of Zeke Sikelianos

So.. unauthenticated requests then, right?

I see. So hazel will only make a request to the GitHub API every `INTERVAL` minute(s), even though apps will be asking hazel for that info much more frequently. Does...

I ask because unauthenticated GitHub API requests are tallied by IP. It might be worth defaulting to a longer interval to reduce the likelihood of contention across apps.

Hey again. Thanks for chiming in @bcoe. The bot is indeed designed to follow the spec as closely as reasonably possible, so I think this org is probably the best...

https://github.com/electron/electron-api-demos/blob/master/tests/index.js is a pretty good Spectron example to start from. I tried AVA for a bit but it was quite slow to start up every time because it's doing so...

@sindresorhus sweet! I will give AVA another go.

In atom? With `atom://`?

It looks like that atom.io URL redirects to an S3 URL which doesn't allow cross-origin requests either: > Fetch API cannot load https://gh-contractor-zcbenz.s3.amazonaws.com/atom-shell/dist/index.json. No 'Access-Control-Allow-Origin' header is present on the...

This is how our team is currently faking a CLI: ```sh alias 2fa="node -pe \"require('/usr/local/lib/node_modules/speakeasy').totp({secret:'xyz123', encoding:'base32'})\"" ```

Related: https://github.com/nodejs/i18n/pull/250 -- feedback wanted!