On ETR top 150 page, run this
const top150 = document.querySelectorAll("td.ninja_clmn_nm_player");
let top150Players = [];
top150.forEach((player) =>
player.innerText.includes(" ")
? top150Players.push(player.innerText.split(" (")[0])
const top150 = document.querySelectorAll("td.ninja_clmn_nm_player");
let top150Players = [];
top150.forEach((player) =>
player.innerText.includes(" ")
? top150Players.push(player.innerText.split(" (")[0])
./gradlew -Dorg.gradle.internal.launcher.welcomeMessageEnabled=false --no-daemon --no-parallel --continue build | |
# sdk install java 17.0.10-tem | |
npm install -g @cyclonedx/cdxgen | |
cdxgen -t java -o bom.json | |
CDX_MAVEN_GOAL CycloneDX Maven plugin goal to use. Default makeAggregateBom. Other options: makeBom, makePackageBom |
docker run -d --name sonarqube -p 9000:9000 sonarqube | |
docker start sonarqube |
FROM node:18 as builder | |
WORKDIR /workspace | |
COPY package*.json . | |
RUN npm ci | |
COPY . . | |
RUN npm run build:prod -- --output-path=/webapp |
https://www.thoughtworks.com/radar Volume 27
https://github.com/TeamTopologies/Team-Cognitive-Load-Assessment
Because we believe that organizational design and team interactions evolve over time, we think it's particularly important to measure and keep track of the team cognitive load, which indicates how easy or difficult teams find building, testing and maintaining their services. We've been using a template to assess team cognitive load that is based on ideas by the authors of the Team Topologies book.
https://www.thoughtworks.com/radar Volume 27
https://github.com/TeamTopologies/Team-Cognitive-Load-Assessment
Because we believe that organizational design and team interactions evolve over time, we think it's particularly important to measure and keep track of the team cognitive load, which indicates how easy or difficult teams find building, testing and maintaining their services. We've been using a template to assess team cognitive load that is based on ideas by the authors of the Team Topologies book.
<cfhttp method="GET" url="https://sandbox-rest.avatax.com/api/v2/taxrates/bypostalcode?country=US&postalCode=50021"> | |
<cfhttpparam type="header" name="Authorization" value="Basic #toBase64('2006850667:E8FD4AC155E565D9')#"> | |
</cfhttp> | |
<cfdump var="#deserializeJson(cfhttp.filecontent)#"> |
wrap any function in | |
javascript: (function () { | |
// javascript goes here | |
})(); | |
minify and then create a bookmark with the URL as the minified JavaScript | |
// grayscale all images without an alt tag | |
const css = document.createElement("style"); |
# view directories | |
find . -type d -name node_modules -prune | |
#actually prune them | |
find . -type d -name node_modules -prune -exec rm -rf {} \; |
<script> | |
const cryptos = [ | |
{ type: 'SHIB', amount: 1311286.32422093 }, | |
]; | |
const formatter = new Intl.NumberFormat('en-US', { | |
style: 'currency', | |
currency: 'USD', | |
}); | |
function getTotals(cryptos) { |