shavyg2

Results 9 issues of shavyg2

TLDR; What are the possible ways to instantiate a class that require parameters that are dynamic such as as name or something that is only know at runtime. ``` export...

https://github.com/ko2ic/image_downloader/blob/master/android/src/main/kotlin/com/ko2ic/imagedownloader/ImageDownloaderPermissionListener.kt#L13 The issue is on this line, the number needs to fit within 16 bits so 0 - 65535, while the library is using 2578166 Question, does that number really...

```typescript var cmd = nodeArgs.concat(wrapper, script, scriptArgs); child = fork(cmd[0], cmd.slice(1), { cwd: process.cwd(), env: process.env }); ``` should be ```typescript var cmd = nodeArgs.concat(wrapper, script, scriptArgs); child = fork(cmd[0],...

made the command a little bit shorter

It would be nice to do ```ts @ErrorView(Component) getPage(){ } ```

Base url on module would be nice as a user wouldn't have to keep including it in the controllers. This should be added to the module decorator

Using a @State('key') would be nice for managing global state objects. This would give users something nice rather than having multiple state objects all over the file system. The framework...

enhancement

This should make it easy for people to store a global state for the current page that is loaded. must be unique for each request that it gets ```its import...

The ability to override specific view layout would be nice. This shouldn't be used frequently as similar things should have for the most part very similar layouts, but once in...

enhancement