I hereby claim:
- I am wonderb0lt on github.
- I am wonderb0lt (https://keybase.io/wonderb0lt) on keybase.
- I have a public key ASBL8xwSHhOo3sjoxc_-18K0Cpl626V1kN4W28DJ0Hfd5Qo
To claim this, I am signing this object:
import string | |
def read_single(chars = 0): | |
input_sequence = input(f'> ') | |
char = chr(int(input_sequence, base=2)) | |
if char in string.printable: | |
return char | |
else: |
{ | |
"Empty Variable (wonderb0lt)": { | |
"prefix": "varx", | |
"body": [ | |
"variable \"${1:name}\" {", | |
"\ttype = ${2|string,number,bool,set(string)|}", | |
"\t${3:description = \"${4:(optional) describe your variable}\"}", | |
"\t${5:default = \"${6:default_value}\"}", | |
"}" | |
] |
from sys import argv | |
from ipaddress import IPv4Network | |
class SubnetUsage: | |
def __init__(self, subnet_cidr): | |
self.subnet_cidr = subnet_cidr | |
self.network = IPv4Network(subnet_cidr) | |
self.used = [] | |
def mark(self, ip_or_cidr): | |
self.used.append(IPv4Network(ip_or_cidr)) |
I hereby claim:
To claim this, I am signing this object:
import org.javamoney.moneta.FastMoney; | |
import org.javamoney.moneta.Money; | |
import org.javamoney.moneta.format.CurrencyStyle; | |
import javax.money.*; | |
import javax.money.convert.CurrencyConversion; | |
import javax.money.convert.MonetaryConversions; | |
import javax.money.format.AmountFormatQuery; | |
import javax.money.format.AmountFormatQueryBuilder; | |
import javax.money.format.MonetaryAmountFormat; |
import winston from 'winston'; | |
import {LOG_PATH} from './env'; | |
let lastLog = new Date(); | |
/** | |
* @type {winston.Logger} | |
*/ | |
export default new winston.Logger({ | |
transports: [ | |
new winston.transports.Console({ |
public class Main { | |
static String jsonString = "{\n" + | |
"\t\"1002001\": {\n" + | |
"\t\t\"level\": 2,\n" + | |
"\t\t\"name\": \"CaptKrunch\",\n" + | |
"\t\t\"uid\": 1002001,\n" + | |
"\t\t\"user\": {\n" + | |
"\t\t\t\"age\": 21,\n" + | |
"\t\t\t\"chat_color\": \"CC3299\",\n" + | |
"\t\t\t\"city\": \"None\",\n" + |
public class Yep { | |
static String jsonString = "{\n" + | |
"\t\"1002001\": {\n" + | |
"\t\t\"level\": 2,\n" + | |
"\t\t\"name\": \"CaptKrunch\",\n" + | |
"\t\t\"uid\": 1002001,\n" + | |
"\t\t\"user\": {\n" + | |
"\t\t\t\"age\": 21,\n" + | |
"\t\t\t\"chat_color\": \"CC3299\",\n" + | |
"\t\t\t\"city\": \"None\",\n" + |
public class Yep { | |
static String jsonString = "{\n" + | |
"\t\"1002001\": {\n" + | |
"\t\t\"level\": 2,\n" + | |
"\t\t\"name\": \"CaptKrunch\",\n" + | |
"\t\t\"uid\": 1002001,\n" + | |
"\t\t\"user\": {\n" + | |
"\t\t\t\"age\": 21,\n" + | |
"\t\t\t\"chat_color\": \"CC3299\",\n" + | |
"\t\t\t\"city\": \"None\",\n" + |
import java.io.IOException; | |
import java.nio.file.Files; | |
import java.nio.file.Paths; | |
import java.util.List; | |
import static java.util.stream.Collectors.toList; | |
public class Main { | |
public static void main(String[] args) throws IOException { |