I hereby claim:
- I am kaki87 on github.
- I am kaki87 (https://keybase.io/kaki87) on keybase.
- I have a public key ASBVux5-VAVoreRwBZHvwvaIoWgW5paogKtj8dF8XWH94wo
To claim this, I am signing this object:
const getParents = element => { | |
const parents = []; | |
for (; element && element !== document; element = element.parentElement){ | |
parents.push(element); | |
} | |
return parents; | |
}; | |
/* | |
Source : https://gomakethings.com/how-to-get-all-parent-elements-with-vanilla-javascript/ |
const isIpInCidr = (ip, cidr) => { | |
const [range, bits = 32] = cidr.split('/'); | |
const mask = ~(2 ** (32 - bits) - 1); | |
const ip4ToInt = ip => ip.split('.').reduce((int, oct) => (int << 8) + parseInt(oct, 10), 0) >>> 0; | |
return (ip4ToInt(ip) & mask) === (ip4ToInt(range) & mask); | |
}; | |
/* | |
Source : https://tech.mybuilder.com/determining-if-an-ipv4-address-is-within-a-cidr-range-in-javascript/ | |
*/ |
I hereby claim:
To claim this, I am signing this object:
Official VueJS libraries, e.g. vue-router
, are simultaneously dependencies and dependents of vue
, seemingly making those impossible to use with ESM CDN import
statements without using <script type="importmap">
, which isn't supported everywhere.
Full code snippet :
Liste inspirée par awesome de logiciels libres français.
Found by searching "Easy file sharing from the command line" + "Upload using cURL"
on Google.
URL | Country | Cloudflare | Max size | Lifetime | Note |
---|---|---|---|---|---|
transfer.whalebone.io | 🇩🇪 (🇪🇺) | ❎ | ∞ | 24h | |
big.tarr.hu | 🇭🇺 (🇪🇺) | ❎ | 10 GB | 14d | |
transfer.ch.tools | 🇬🇧 | :nega |