- 13" Macbook Pro 3.3 GHz i7 (late 2016)
- Microsoft Surface Book (2016)
- Dell up3216q 32" monitor
It's now here, in The Programmer's Compendium. The content is the same as before, but being part of the compendium means that it's actively maintained.
| [...document.querySelectorAll('.invite-card')].forEach(card => { | |
| const headline = card.querySelector('.headline').textContent; | |
| const accept = card.querySelector('.bt-invite-accept'); | |
| const decline = card.querySelector('.bt-invite-decline'); | |
| const name = card.querySelector('.name').textContent; | |
| if(headline.match(/recruit/gi)) { | |
| console.log(`Nah. ${name} looks a little fishy to me. 🚷🚷🚷`); | |
| decline.click(); | |
| } else { |
The following guide will show you how to deploy a simple microservice written in JavaScript using 𝚫 now.
It uses Open Source tools that are widely available, tested and understood:
| // source: http://stackoverflow.com/a/11058858 | |
| function ab2str(buf) { | |
| return String.fromCharCode.apply(null, new Uint16Array(buf)); | |
| } |
| grammar org.json.Json with org.eclipse.xtext.common.Terminals | |
| generate json "http://www.json.org/" | |
| Object: | |
| '{' ((members+=Member) (',' members+=Member)*)? '}'; | |
| Member: | |
| key=STRING ':' value=Value; | |