Results 20 comments of mcpower

> Maybe if an option was added to the implementations to override autoload for certain implementations.. What about changing auto-load to be an per-implementation on/off, rather than a global on/off?...

Sorry, it's been literally 3 years since I've written that code! It seems like Imgur has changed their front-end, so my old code doesn't work any more. Additionally, there is...

> You could make _copy and _nocopy versions of (most? all? if there's two parameters which one gets mutated?) functions and I guess that'd work, but it gets pretty ugly...

To add onto this: Calling `Robot.get_owner_location()` when owner is not on the server results in this: ``` python >>> r.get_location() Location(x_coord=-1054, y_coord=64, z_coord=6) >>> r.get_owner_location() Traceback (most recent call last):...

Hi, have there been any updates to this? Are there any more blockers to adding arm64 OSX-Linux support?

Replace this function in `js/util/utils.js`: ```js function mapObjectProps(a,c){var b=[],d;for(d in a){var e=c(d,a[d]);void 0!==e&&b.push(e)}return b} ``` with ```js function mapObjectProps(a,c){var b=[],d;for(d in a){if (!a.hasOwnProperty(d)) {continue};var e=c(d,a[d]);void 0!==e&&b.push(e)}return b} ``` Follow the...

The problem is that when exporting data, Sidewise accidentally exports "too much" data, including the length of localstorage as well as some functions associated with it (which can't be exported...

@NorseGaud Unfortunately, my employer doesn't allow me to submit PRs to this repo (due to licensing issues) 😢 Feel free to cherry pick my commits though! I give everyone full...

Here's the culprit ([in the `chrome.tabs` documentation](https://developer.chrome.com/extensions/tabs#type-Tab)): ![image](https://user-images.githubusercontent.com/6015058/70962204-74091b00-20d8-11ea-8d2f-e20c76de48ba.png) In `js/bg/events/tab-events.js`, `function onTabCreated(a)` is expecting the URL to be in `a.url` - not `a.pendingUrl`. To fix this, do a find and...

> Just add. Anybody can make changes in chrome extension's folder and just disable/enable sidewise extension. I didn't think this would work - if this is possible, malware installed on...