TTFB test, monitoring, api, performance testing
Queue/workflows processing https://temporal.io/
108.61.178.34 |
console.log('=====================test.js======================'); | |
console.log('=====================test.js======================'); | |
console.log('=====================test.js======================'); | |
window.addEventListener('load', function () { | |
console.log('=====================test.js======================'); | |
}); |
pass() { | |
local input | |
read -r input | |
print -n "\e[1A\e[K" | |
local var=$(echo $input | sed 'y/[!"№%:,.;йцукенгшщзхъёфывапролджэячсмитьбюЙЦУКЕНГШЩЗХЪЁФЫВАПРОЛДЖЭЯЧСМИТЬБЮ/~!@#$%^&*qwertyuiop[]\\asdfghjkl;\''zxcvbnm,.QWERTYUIOP{}|ASDFGHJKL:"ZXCVBNM<>/') | |
echo -n "$var" | |
read -r input | |
print -n "\e[1A\e[K" | |
} |
// Intent to test n8n endpoints locally | |
resource "random_id" "playground_tunnel_secret" { | |
byte_length = 35 | |
} | |
resource "cloudflare_tunnel" "playground" { | |
provider = cloudflare.main | |
account_id = local.cloudflare_account_id |
TTFB test, monitoring, api, performance testing
Queue/workflows processing https://temporal.io/
# https://github.com/bitwarden/clients/issues/3366 | |
# Usage: | |
# bwget <item-name> | |
# to get any org password | |
# bwget <item-name> null | |
# to get self password | |
bwget() { | |
local pwd | |
local count | |
# by default search inside any organisation |
# gitclean allows to work with multiple origins, cleans all deleteded aliases | |
alias gitclean="(git remote | xargs git remote prune) && git branch -vv | egrep '('\$(git remote | xargs | sed -e 's/ /|/g')')/.*: gone]' | awk '{print \$1}' | xargs git branch -D" |
/*Parses ICU messages format https://messageformat.github.io/messageformat/guide/ | |
like | |
{from} - {to} {results, plural, | |
one { # result } | |
many { # results } | |
} text {vr} rmm | |
{s, select, | |
man { He is "#"#"#" } | |
woman { She is # } | |
} |
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types | |
export default function relay() { | |
return { | |
name: 'relay', | |
transform(code) { | |
// Use indexOf as its probably ;-) faster | |
if (code.indexOf('graphql`') > -1) { | |
const re = /graphql`[^`]+(?<type>query|fragment|mutation)\s+(?<name>[\w_-\d]+)[^`]+`/gm; | |
let imports = []; |