I hereby claim:
- I am fmalk on github.
- I am fmalk (https://keybase.io/fmalk) on keybase.
- I have a public key ASD8HDwnCBuCXefTctiPSGDlzXYpUYJB74eeJLM_b09bWwo
To claim this, I am signing this object:
Verifying that +fernando is my blockchain ID. https://onename.com/fernando |
0x5b43ac8a699bC3E1d9fda39E6CE9F99b01C8640a |
0x105baaDf376cBbA0CF031f861DB4d0b561d036A8 |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Arrow Functions - Acessando propriedades de classes"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Arrow Functions - Acessando propriedades de classes</title> | |
</head> | |
<body> |
I hereby claim:
To claim this, I am signing this object:
/* eslint-disable no-console */ | |
function notJson(test) { | |
return (test !== Object(test) || test instanceof Error); | |
} | |
function log(fn, ...args) { | |
fn(...args.map(x => (notJson(x) ? x : JSON.stringify(x)))); | |
} | |
const logger = { |
This is a sample ticket breakdown I wrote for a previous interview question.
We are a staffing company whose primary purpose is to book Agents at Shifts posted by Facilities on our platform. We're working on a new feature which will generate reports for our client Facilities containing info on how many hours each Agent worked in a given quarter by summing up every Shift they worked. Currently, this is how the process works:
getShiftsByFacility
is called with the Facility's id, returning all Shifts worked that quarter, including some metadata about the Agent assigned to eachgenerateReport
is then called with the list of Shifts. It converts them into a PDF which can be submitted by the Facility for compliance.