This is meant to improve on the JSX types supplied here https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/mithril/index.d.ts
It's cribbed from https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts
const STARTING_HASH = 5381; | |
export default function cdbHash(key: string) { | |
let hash = STARTING_HASH; | |
const length = key.length; | |
for (let i = 0; i < length; i++) { | |
hash = ((((hash << 5) >>> 0) + hash) ^ key.charCodeAt(i)) >>> 0; | |
} |
This is meant to improve on the JSX types supplied here https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/mithril/index.d.ts
It's cribbed from https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts
This is just some quick data from the CF browser isolation beta. If you inspect the isolated webpage, there's a debug-sidebar
you can add a show
class to to make visible. From there, you can run a trace and get some info about the machines these VMs are on.
These are the stubs of the metadata
elements of two random traces I made.
P.S. no exploits found yet ;)
Easy to do in VS Code global search
Search: data-target="([\w\d]+)\.([\w\d]+)"
Replace: data-$1-target="$2"
@echo off | |
echo Starting PuTTY Pageant... | |
start "" "C:\Program Files\PuTTY\pageant.exe" %USERPROFILE%\.ssh\id.ppk | |
echo Starting Git4Win ssh-pageant... | |
"C:\Program Files\Git\git-cmd.exe" --no-needs-console --hide ""C:\Program Files\Git\cmd\start-ssh-pageant.cmd" >nul & exit" |
#!/bin/bash | |
# chocolatkey 2019-10-05 - 2019-11-23 | |
set +e | |
PD_POD_NAME="my-pod-name" | |
PD_POD_PORT="9000" | |
PD_CONTAINER_NAME="my-container-name" | |
PD_PACKAGE_URL="docker.pkg.github.com/myuser/myrepo/mydockerpackage" | |
if [ "$1" == "" ]; then |
||region-test.komiflo.com/region-test.gif$image,redirect=1x1-transparent.gif,domain=komiflo.com |
strings.xml, regex: <string name="description_([\w\d_]+)">(.*)</string>
--> | $1 | $2 |
Name | Description |
---|---|
alarm_clock | Sounds made by a clock that is designed to make an audible signal at a specific time. |
applause | The sound of a group of people clapping their hands to express approval. |
baby_cry_or_infant_cry | A young child crying or bawling. |
bagpipes | A wind instrument using enclosed reeds fed from a reservoir of air in the form of a bag. |
banjo | A string instrument with a thin membrane stretched over a frame or cavity as a resonator, called the head. |
bird | Communication calls from birds including bird calls and songs. |
# -*- coding: utf-8 -*- | |
# Cron PNG Image optimizer | |
# chocolatkey (Henry) 2019-03-12 | |
version = "1.1.0" | |
BASE = "/your/path" | |
LOCK_FILE = BASE + "/optim.lock" | |
import os | |
import sys |