This list has been moved to https://github.com/SoftCreatR/fakerando-domains
Diese Liste wurde nach https://github.com/SoftCreatR/fakerando-domains verschoben
// https://badges-content.teamspeak.com/list | |
\$(?P<ID>[\w\d-]+).(.|\n)(?P<Title>.+)..(?P<URL>https:\/\/[\w\-\.\/]+)..(?P<Desc>[^\(]*) |
""" | |
Copyright (c) 2021 1-2.dev | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all | |
copies or substantial portions of the Software. |
(document => { | |
let checkCount = 0, | |
formatFound = false; | |
const setHTMLClass = (height, className) => { | |
checkCount += 1; | |
if (parseInt(height, 10) === 2) { | |
formatFound = true; |
#!/usr/bin/env bash | |
############################################################## | |
# Title : Hetzner Firewall Cloudflare IP Updater # | |
# Description : Allows you to update your Hetzner Cloud # | |
# Firewall to allow all incoming requests # | |
# from Cloudflare. # | |
# # | |
# Author : Sascha Greuel <[email protected]> # | |
# Date : 2021-03-30 09:30 # |
This list has been moved to https://github.com/SoftCreatR/fakerando-domains
Diese Liste wurde nach https://github.com/SoftCreatR/fakerando-domains verschoben
##### | |
# IPInfo Host configuration | |
# | |
# Source: https://gist.github.com/SoftCreatR | |
# | |
# Requires: | |
# - ngx_http_json_var_module (https://github.com/SoftCreatR/nginx-json-var-module) | |
# - geoip2.conf (see below) | |
##### |
ARG NAME_IMAGE_BASE='php' | |
ARG NAME_IMAGE_TAG='8.0.1-fpm-alpine3.12' | |
FROM ${NAME_IMAGE_BASE}:${NAME_IMAGE_TAG} | |
ARG ID_BUILD='build-20210118' | |
ARG VERSION_PHP='8.0.1-imagick' | |
ARG VERSION_OS='3.12.0' | |
ARG IMAGICK_COMMIT='448c1cd0d58ba2838b9b6dff71c9b7e70a401b90' |
#!/usr/bin/env bash | |
while [ "$#" -gt 0 ]; do | |
case "$1" in | |
--no-docker) | |
WITH_DOCKER="no" | |
;; | |
--no-docker-compose) | |
WITH_DOCKER_COMPOSE="no" | |
;; |
@ECHO OFF | |
goto :start | |
MIT License | |
Copyright (c) 2020 Sascha Greuel <[email protected]> | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal |
const hashBrowser = val => | |
crypto.subtle.digest('SHA-256', new TextEncoder('utf-8').encode(val)).then(h => { | |
let hexes = [], | |
view = new DataView(h); | |
for (let i = 0; i < view.byteLength; i += 4) | |
hexes.push(('00000000' + view.getUint32(i).toString(16)).slice(-8)); | |
return hexes.join(''); | |
}); | |
hashBrowser(JSON.stringify({ a: 'a', b: [1, 2, 3, 4], foo: { c: 'bar' } })).then(console.log); |