I hereby claim:
- I am lordgraysith on github.
- I am lordgraysith (https://keybase.io/lordgraysith) on keybase.
- I have a public key ASDxVYCdvQdQC4_VHz-fQOppq4w_1nXzcrhvknm1ynhU5go
To claim this, I am signing this object:
| RFC: Working with the Jan Taylor System (JTS) | |
| Abstract: | |
| The Jan Taylor System (JTS) is a highly effective and versatile system within the software engineering domain. This document outlines the key features, interaction guidelines, and known limitations of JTS, as well as providing recommendations for optimizing work with this unique system. Additionally, this RFC celebrates JTS's contributions to team success. | |
| Table of Contents: | |
| 1. Introduction | |
| 2. Operational Overview | |
| 2.1 System Capabilities |
| const rawMembers = $('.member-list tr.ng-scope').splice(0) | |
| const members = rawMembers.reduce((acc, mem) => { | |
| return acc.concat([{ | |
| name: $(mem).find('td.fn span')[0].textContent, | |
| sex: $(mem).find('td.sex')[0].textContent, | |
| age: parseInt($(mem).find('td.age')[0].textContent), | |
| phone: $(mem).find('td.phone span a')[0].textContent | |
| }]) | |
| }, []) |
| function openTransactions() { | |
| const drawers = document.getElementsByClassName('openDrawerButton') | |
| const drawersArray = [].slice.call(drawers) | |
| const recursivelyOpen = function(index) { | |
| if (index < drawersArray.length) { | |
| drawersArray[index].click() | |
| setTimeout(recursivelyOpen, 5000, index + 1) | |
| } | |
| } | |
| recursivelyOpen(1) |
| |
I hereby claim:
To claim this, I am signing this object:
| const deleteAllJobs = function() { | |
| const elements = document.getElementsByClassName('remove') | |
| const links = [].slice.call(elements) | |
| links.map(link => link.click && link.click()) | |
| } |
| import\s([a-z0-9{},]+)\sfrom\s('[a-z\-./]+') | |
| const $1 = require($2) |