Skip to content

Instantly share code, notes, and snippets.

View mynameistechno's full-sized avatar

Mark Matyas mynameistechno

View GitHub Profile
@mynameistechno
mynameistechno / scanner_order.diff
Created September 18, 2019 21:00
Scanner order
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({}),
@mynameistechno
mynameistechno / frontend-iv-questions.md
Last active June 8, 2016 23:43
Frontend IV questions

General

  1. How did you get into frontend web dev?
  2. Why do you like it vs other engineering roles?
  3. What developer tools do you use?
  4. When do you just libraries/frameworks? which? Why?
  5. How do you test your code?
  6. How do you debug a problem? What if no error?
  7. Where do you find new information? How do you stay updated with the always evolving web tech?
  8. What is MVC and how do you use it? Do you use any MVC frameworks?
@mynameistechno
mynameistechno / flatten.js
Last active November 19, 2015 07:08
Flatten an array in Javascript
function flatten(a) {
return a.reduce(function(prev, curr) {
if (Array.isArray(curr)) {
return prev.concat(flatten(curr));
}
prev.push(curr);
return prev;
}, []);
}