This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>spa.simone</groupId> | |
| <artifactId>example</artifactId> | |
| <version>0.0.1</version> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| The formula is rendered as an image. You can embed the image in a IMG tag as the following: | |
| <img src="https://render.githubusercontent.com/render/math?math=\frac{3}{2}"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function filter(object, filterList) { | |
| // return an empty object if the filterList is not an array | |
| if (!Array.isArray(filterList)) return {}; | |
| const newObject = {}; | |
| for (property of filterList) { | |
| if (property in object) { | |
| newObject[property] = object[property]; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function filter(object, filterList) { | |
| // return an empty object if the filterList is not an array | |
| if (!Array.isArray(filterList)) return {}; | |
| const newObject = {}; | |
| for (property of filterList) { | |
| if (property in object) { | |
| newObject[property] = object[property]; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function filter(object, filterList) { | |
| // return an empty object if the filterList is not an array | |
| if (!Array.isArray(filterList)) return {}; | |
| const newObject = {}; | |
| for (property of filterList) { | |
| if (property in object) { | |
| Object.defineProperty(newObject, property, { | |
| value: object[property], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function filter(object, filterList) { | |
| // return an empty object if the filterList is not an array | |
| if (!Array.isArray(filterList)) return {}; | |
| return filterList.reduce((accumulator, current) => { | |
| const hasOwnProperty = current in object; | |
| return { | |
| ...accumulator, | |
| ...(hasOwnProperty && { [current]: object[current] }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function filter(object, filterList) { | |
| // return an empty object if the filterList is not an array | |
| if (!Array.isArray(filterList)) return {}; | |
| return filterList | |
| .filter((property) => property in object) | |
| .map((property) => ({ [property]: object[property] })) | |
| .reduce((accumulator, current) => ({...accumulator, ...current}), {}); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Wavenet: https://deepmind.com/blog/article/wavenet-generative-model-raw-audio | |
| Google workspace | |
| Google smartsheet | |
| Google meet | |
| LaMDA used for conversation or for "concepts" like road trip, or searching an action within a movie or video | |
| - multi modality | |
| TPU v4 - 1 exaflop of computing power | |
| Quantum computing at google - error corrected quantum computer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://rhendricksen.medium.com/distributed-load-testing-with-gatling-using-docker-and-aws-d497605692db | |
| https://rhendricksen.medium.com/distributed-load-testing-with-gatling-using-docker-and-aws-part-2-5a6df57128aa | |
| https://github.com/richardhendricksen/gatling-docker-on-aws/ | |
| ## External factors | |
| * Availability: | |
| * Responsivness (or speed) | |
| effectiveness (the what) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Production Safety | |
| Working Safely at the BBC | |
| Fair Trading Awareness | |
| The Commercial Criteria | |
| Inclusive Culture | |
| Fair Trading Awareness | |
| The Commercial Criteria | |
| Anti-bribery UK | |
| Anti-Fraud and Corruption Training (v4) | |
| Unconscious Bias |