Skip to content

Instantly share code, notes, and snippets.

View nahumzs's full-sized avatar
🦄
Living ...

nahum zsilva nahumzs

🦄
Living ...
View GitHub Profile
<Keyboard>
<Key code="enter" onKeyMatch={()=>{console.log('key:', 'Enter')}} />
<input type="text" />
</Keyboard>
@nahumzs
nahumzs / basic.js
Last active January 22, 2018 17:26
// 0. Can you explain the follow concepts?
// 0.1 Explain how prototype works in JS can you give us an example.
// 0.2 how composition works in JS (The candidate might comment about Object.assign() or Object.create();
// bonus points the candidate will comment the different
// scope and this
// 1. why bind, call and apply are used in Javascript, can you give us an example?
// what's the difference between call and apply?
@nahumzs
nahumzs / Accessibility-notes.md
Last active July 19, 2017 04:42
Accessibility

Aria

Accessible Rich Internet Application (WAI-ARIA)

The Web Accessibility Initiative's Accessible Rich Internet Applications specification (WAI-ARIA, 
or just ARIA) is good for bridging areas with accessibility issues that can't be managed with native HTML.
It works by allowing you to specify attributes that modify the way an element is translated into the 
accessibility tree. 

by - Google developers