- How did you get into frontend web dev?
- Why do you like it vs other engineering roles?
- What developer tools do you use?
- When do you just libraries/frameworks? which? Why?
- How do you test your code?
- How do you debug a problem? What if no error?
- Where do you find new information? How do you stay updated with the always evolving web tech?
- What is MVC and how do you use it? Do you use any MVC frameworks?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function flatten(a) { | |
return a.reduce(function(prev, curr) { | |
if (Array.isArray(curr)) { | |
return prev.concat(flatten(curr)); | |
} | |
prev.push(curr); | |
return prev; | |
}, []); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/client/pages/fileset.js b/client/pages/fileset.js | |
index 3e454dbd..0a074421 100644 | |
--- a/client/pages/fileset.js | |
+++ b/client/pages/fileset.js | |
@@ -43,6 +43,7 @@ function create(opts: DefaultPageOptions): Observable { | |
filesetId: hg.value(''), | |
uri: hg.value(''), | |
fileset: hg.varhash({}), | |
+ scanners: hg.array([]), | |
filesetFilesMeta: hg.varhash({}), |