This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const request = require('superagent') | |
const { RateLimiter } = require('limiter') | |
const { queue } = require('async') | |
const faker = require('faker') | |
var codes=["0004","0034","0079","0140","5065","5132","5159","5255","7250","7277","9881","0092","0103","0150","0017","0064","7187","0007","0041","0066","0070","0080","0084","0085","0156","0163","0165","3948","5080","5199","5243","6483","7035","7111","7123","7152","8486","9385","2127","5008","0020","5257","7013","7070","5072","5194","0104","0168","0175","0195","2429","5115","5125","5149","5259","7114","7253","8303","5230","0005WA","5157","5256","0138","0021","1818","7199","2793","5001","7217","9873","0176","5253","0103WA","4057","2739","0017WA","0109","0185","4235","4456","5098","5205","5232","0118","0173","0179","7079","7219","0037","9938","0065","4944","9172","0186","1651","5226","7080","0075","0120","5054","5058","5157WA","7230","0005wa","0017wa","0066WA","0103wa","0112","5157wa","524317","5158","5172","7174","0116","0152","0166","3069","5102","5143","5147","5152" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"activeProfiles": { | |
"General": "default_copy_1508986360611", | |
"Keybindings": "default_copy_1508987326450", | |
"Appearance": "white on blue_copy_1508986321164" | |
}, | |
"profiles": { | |
"General": { | |
"power_copy_1507342430517": { | |
"enabled": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Place this file in /etc/nginx/snippets/acme.conf | |
# Include it in any of your server.conf | |
location ^~ /.well-known { | |
proxy_pass http://127.0.0.1:18881; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt update | |
# setup docker | |
curl -fsSL get.docker.com -o get-docker.sh | |
sh get-docker.sh | |
# setup python | |
apt install -y python3 python-pip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl -XPUT \ | |
-H'X-AUTH-EMAIL: [email protected]' \ | |
-H'X-AUTH-KEY: YOUR_VERY_SECRET_AUTH_KEY' \ | |
-H'content-type: application/json' \ | |
"https://api.cloudflare.com/client/v4/zones/{ZONE_ID}/dns_records/{DNS_RECORD}" \ | |
--data '{"type":"A", "name":"YOUR.DOMAIN.COM", "content": "'"$(curl ipinfo.io/ip)"'", "ttl": 120, "proxied": false}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"plugins": { | |
"es_modules": {}, | |
"node": {} | |
}, | |
"libs": [ | |
"ecma5", | |
"ecma6" | |
], | |
"ecmaVersion": 6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# ~/.bashrc | |
# | |
# If not running interactively, don't do anything | |
# [[ $- != *i* ]] && return | |
# Custom bash prompt via kirsle.net/wizards/ps1.html | |
export PS1="\[$(tput bold)\]\[$(tput setaf 6)\]\t \[$(tput setaf 2)\][\[$(tput setaf 3)\]\u\[$(tput setaf 1)\]@\[$(tput setaf 3)\]\h \[$(tput setaf 6)\]\W\[$(tput setaf 2)\]]\[$(tput setaf 4)\]\\$ \[$(tput sgr0)\]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function (text) { | |
if (text) { | |
return text.toString().toLowerCase().trim() | |
.replace(/\s+/g, '-') // Replace spaces with '-' | |
.replace(/&/g, '-and-') // Replace & with 'and' | |
.replace(/[$+,:;=?@#|'<>.^*()%!\/\\]+/g, '') // Remove all non-word chars, to prevent replace on non-latin characters | |
.replace(/\-\-+/g, '-') // Replace multiple - with single - | |
.replace(/^-+/, '') // Trim - from start of text | |
.replace(/-+$/, ''); // Trim - from end of text | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- ========================================================================== -- | |
-- == EDITOR SETTINGS == -- | |
-- ========================================================================== -- | |
vim.opt.number = true | |
vim.opt.relativenumber = true | |
vim.opt.mouse = 'a' | |
vim.opt.ignorecase = true | |
vim.opt.smartcase = true | |
vim.opt.hlsearch = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (C) 2012 whatatux | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |