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
{ | |
"basics": { | |
"name": "Manu Chardonnens", | |
"label": "Software developer @ QoQa Services SA", | |
"picture": "", | |
"email": "[email protected]", | |
"phone": "", | |
"website": "", | |
"summary": "15 years experience in web development.\nSoftware Engineering, Development, and Project Management in a wide variety of e-Commerce applications.\nAlways interested in new challenges and technologies.\nWith a strong focus on quality and usability.\n\nHIGHLIGHTS\nGood interaction and communication skills in heterogeneous groups\nPatient and reliable under all conditions\nStrong sense and knowledge of both responsibility and business\n\nSPECIALITIES\nProject Management, Scrum, Design Sprint\nRoR, React, HTML5, SCSS\nSEO, Marketing, Analytics, GTM\nWeb Design, UI, UX, Adobe PS & The Gimp", | |
"location": { |
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
const loadingState = { | |
PENDING: 'pending', | |
LOADED: 'loaded', | |
FAILED: 'failed' | |
}; | |
const delay = t => new Promise(resolve => setTimeout(resolve, t)); | |
/** | |
Loads a resource using a promise, can call then after | |
Ex: ResourceUtils.load(url, options).then(this.someInitFunction); |
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
<div class="container modified"> | |
<h2>React 16.2.0 Materialize Autocomplete Chips</h2> | |
<div id="app" /> | |
</div> |
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
def combinations(lengths) | |
return nil if lengths.nil? | |
(0..lengths.reduce(:*) - 1).map do |line| | |
(0..lengths.count - 1).map do |row| | |
sub_pos = lengths.slice(row + 1, lengths.count).reduce(:*) || 1 | |
line / sub_pos % lengths[row] | |
end | |
end | |
end |
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
/** | |
* Copyright Marc J. Schmidt. See the LICENSE file at the top-level | |
* directory of this distribution and at | |
* https://github.com/marcj/css-element-queries/blob/master/LICENSE. | |
*/ | |
; | |
(function() { | |
/** | |
* | |
* @type {Function} |