Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# Remove terminating namespaces
# Usage: ./remove-terminating-ns.sh
TERMINATING_NS=$(kubectl get ns | grep Terminating | awk '{print $1}')
kubectl proxy &
PROXY_PID=$!
@valentinvieriu
valentinvieriu / random-domain-name.js
Created October 11, 2020 08:22 — forked from solrevdev/random-domain-name.js
gets a random domain name from https://www.domainsfortherestofus.com/ via cors-anywhere
(async function () {
const response = await fetch('https://cors-anywhere.herokuapp.com/https://www.domainsfortherestofus.com/');
const text = await response.text();
const parser = new DOMParser();
const document = parser.parseFromString(text, 'text/html');
const domain = document.querySelector("body > div.content > div > div > div.left-side > div.domain > a").text;
console.log('domain', domain);
})();
@valentinvieriu
valentinvieriu / name.js
Created August 9, 2019 02:10 — forked from tkon99/name.js
Random Name Generator for Javascript
/*
(c) by Thomas Konings
Random Name Generator for Javascript
*/
function capFirst(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
function getRandomInt(min, max) {
// Allows random intervals that do not start with 1. So you can get a random number from 10 to 15 for example.
function randomIntFromInterval(min,max)
{
return Math.floor( Math.random()* ( max - min + 1 ) + min );
}
@valentinvieriu
valentinvieriu / uuidv4.js
Created August 7, 2019 17:38 — forked from spyesx/uuidv4.js
Generate UUIDv4 in JS
function uuidv4() {
return ([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g, c =>
(c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16)
)
}
@valentinvieriu
valentinvieriu / axios_promises_reduce.js
Last active August 22, 2017 12:34 — forked from tokland/promise_map.js
Sequential execution of axios get requests using reduce()
const axios = require('axios');
function random(min, max) {
return (Math.random() * ((max ? max : min) - (max ? min : 0) + 1) + (max ? min : 0)) | 0;
}
function wait(promise) {
const seconds = random(300, 2000);
return new Promise((resolve, reject) => {
setTimeout(() => resolve(promise()), seconds);