shark0der

Results 9 issues of shark0der

Often the map is set up to monitor a whole city. Giving the user the ability to send his location to get notifications only for a certain area would be...

Currently the "Select in Project" action is not working if the file is ignored. I often jump into the source of the installed npm packages in `node_modules` by using "Go...

You can use HTML attribute `accesskey` to access the elements on the page. I've put together a small demo here: https://jsfiddle.net/x4ek56pc/ I've used jQuery in my example but that's just...

promising-idea

I'm having an issue with chained methods indentation. Code example: ``` function sum(uint a, uint b, uint c) returns (uint s) { s = a.add(b) .add(c); } ``` Currently, the...

It would be nice to add a self-update feature, something similar to [composer's](https://getcomposer.org/doc/03-cli.md#self-update). I think it should be pretty straight forward since there's only one file but it's up to...

The recently added zero-config feature that overrides the compile task to generate typechain should be opt-in. Although there is a flag to turn it off for the compile task when...

![image](https://user-images.githubusercontent.com/528959/83898088-1ab4a700-a75f-11ea-9318-286e0bcb437a.png) I've skimmed through the source, I wouldn't say you're affected but you'd probably want to remove the dependency and implement those functions yourself Advisory: https://npmjs.com/advisories/1507 ### Usages 1. https://github.com/OpenZeppelin/openzeppelin-sdk/blob/c68234271a4a6e29b989fe1bac1902a246a298b3/packages/cli/src/models/dependency/Dependency.ts#L58...

When oz verify sends the post request to etherscan, it sends the compiler version as well. In oz source code there's this line: ``` const compiler = `v${compilerVersion.replace('.Emscripten.clang', '')}`; ```...

Instead of `apt-get python-gst*` (which installs tons of packages on my pi), running `apt-get install python-gst-1.0 python-gst0.10 gir1.2-gstreamer-0.10` worked and got me past import error, but then I hit #40....