Skip to content

Instantly share code, notes, and snippets.

View AquiGorka's full-sized avatar
🏠
Working from home

Gorka Ludlow AquiGorka

🏠
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am aquigorka on github.
  • I am aquigorka (https://keybase.io/aquigorka) on keybase.
  • I have a public key ASDvOX1gKPKIC5OmtJaGxhAjm1e2zKG1x_f2uydRqybmXAo

To claim this, I am signing this object:

@AquiGorka
AquiGorka / flatten.js
Created March 15, 2016 18:18
Flatten an array of arbitrarily nested arrays of integers into a flat array of integers. e.g. [[1,2,[3]],4] -> [1,2,3,4].
String.prototype.replaceAll = function(search, replacement) {
var target = this;
return target.split(search).join(replacement);
};
Array.prototype.flatten = function() {
return JSON.stringify(this).replaceAll('[','').replaceAll(']', '').split(',').map(item => parseInt(item));
};
var a = [[1,2,[3]],4];
@AquiGorka
AquiGorka / zappier.md
Created March 15, 2016 16:08
Zappier gist

Look at this list (https://gist.github.com/mikeknoop/fbd108db26b661e89967) and pick the 5 things that most excite you. Also pick the 5 things that least excite you. Don't pick by your opinion of importance, this is mostly to see interest/experience. Please put this answer somewhere like Gists or Pastebin and include a link in your email.

Most excite me:

  • Write a project spec
  • Own technical context about how Zapier works
  • Learn a new skill to fill in a gap on your team
  • Be responsible for hitting or missing a big company goal (maybe a metric or timeline)
  • Dream up the future of Zapier, inspire and motivate your teammates

Least excite me: