https://www.w3.org/WAI/WCAG21/Understanding/info-and-relationships.html
https://www.w3.org/WAI/WCAG21/Understanding/consistent-navigation.html
| # Sample Configuration File | |
| # Copy this to a file named .env to change local development settings | |
| # Password used for the postgres super user, used for database maintenance. This is only required if | |
| # you're running the database dependency through Docker; otherwise you can ignore it. | |
| POSTGRES_SUPER_PASSWORD=SuperSecureDefinitelyChangeThis | |
| # Password used for the user connecting to the shieldbattery database. Has to match the one provided | |
| # in the `DATABASE_URL`. This is only required if you're running the database dependency through | |
| # Docker; otherwise you can ignore it. |
| #!/usr/bin/env bash | |
| langs=" | |
| golang | |
| nodejs | |
| javascript | |
| typescript | |
| cpp | |
| c | |
| lua |
| async function drawLineChart() { | |
| // 1. Access data | |
| const dataset = await d3.json("denisvillenuve.json"); | |
| const yAccessor = (d) => d.colors; | |
| const xAccessor = (d) => d.colorsTime; | |
| const runtimeAccessor = (d) => d.runtime; | |
| const colorAccessor = (d) => d.colors; | |
| // 2. Create chart dimensions |
| license: mit |
| // Returns a function, that, as long as it continues to be invoked, will not | |
| // be triggered. The function will be called after it stops being called for | |
| // N milliseconds. If `immediate` is passed, trigger the function on the | |
| // leading edge, instead of the trailing. | |
| function debounce(func, wait, immediate) { | |
| var timeout; | |
| return function() { | |
| var context = this, args = arguments; | |
| var later = function() { | |
| timeout = null; |
Explain Promises like I'm five years old
What does it mean when it is said that JS has first-class functions?
Explain higher order functions?
Explain this
Q: What are the advantages of using ES6 maps over objects? What about using ES6 sets over arrays?
| Qs to ask | |
| How does the engineering culture differ from the overall company culture? | |
| What were some of the biggest changes on the team in the last 6 months? | |
| How did your team come to use your current framework(s)/tech stack? | |
| Did they consider other options? | |
| How did they evaluate tradeoffs between them? |
| // ---------------------------------------------------------- | |
| // A short snippet for detecting versions of IE in JavaScript | |
| // without resorting to user-agent sniffing | |
| // ---------------------------------------------------------- | |
| // If you're not in IE (or IE version is less than 5) then: | |
| // ie === undefined | |
| // If you're in IE (>=5) then you can determine which version: | |
| // ie === 7; // IE7 | |
| // Thus, to detect IE: | |
| // if (ie) {} |
| (function($) { | |
| var o = $( {} ); | |
| $.each({ | |
| on: 'subscribe', | |
| trigger: 'publish', | |
| off: 'unsubscribe' | |
| }, function( key, api ) { | |
| $[api] = function() { | |
| o[key].apply( o, arguments ); |