I hereby claim:
- I am aperture147 on github.
- I am aperture147 (https://keybase.io/aperture147) on keybase.
- I have a public key ASBd6WY1IzBYC5Zy4QVnfILfp8SmybQ2VmhHke5DNp9B3Ao
To claim this, I am signing this object:
import java.util.Scanner; | |
public class MainApp { | |
public static void main(String[] args) { | |
String ten; | |
int tuoi = 0; | |
String diachi; | |
Scanner input = new Scanner(System.in); |
import java.util.Scanner; | |
public class MainApp { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
System.out.print("Nhap do dai mang: "); | |
int n = input.nextInt(); | |
int[] array = new int[n]; |
import java.util.Scanner; | |
public class MainApp { | |
public static void main(String[] args) { | |
String ten; | |
int tuoi = 0; | |
String diachi; | |
Scanner input = new Scanner(System.in); |
I hereby claim:
To claim this, I am signing this object:
protocol=cloudflare, | |
#Tell ddclient to get real ip address | |
use=web, web=checkip.dyndns.org | |
#Credentials for Cloudflare api | |
ssl=yes | |
login=#some email | |
password=#global API Key | |
zone=haivq.com |
package main | |
import ( | |
"bytes" | |
"io/ioutil" | |
"log" | |
"os" | |
"os/exec" | |
) |
# Kernel sysctl configuration file for Linux | |
# | |
# Version 1.12 - 2015-09-30 | |
# Michiel Klaver - IT Professional | |
# http://klaver.it/linux/ for the latest version - http://klaver.it/bsd/ for a BSD variant | |
# | |
# This file should be saved as /etc/sysctl.conf and can be activated using the command: | |
# sysctl -e -p /etc/sysctl.conf | |
# | |
# For binary values, 0 is disabled, 1 is enabled. See sysctl(8) and sysctl.conf(5) for more details. |
# original answer: https://gist.github.com/sh4dowb/efab23eda2fc7c0172c9829cf34dc96c?permalink_comment_id=5144932#gistcomment-5144932 | |
# pip install pycryptodome | |
import base64 | |
from Crypto.Hash import MD5 | |
from Crypto.Util.Padding import unpad | |
from Crypto.Util.Padding import pad | |
from Crypto.Cipher import AES | |
import secrets | |
def decrypt(ciphertext, password): |
import itertools | |
rule_1_pronunciation_list = ['', 'mốt', 'hai', 'ba', 'tư', 'lăm', 'sáu', 'bảy', 'tám', 'chín'] | |
rule_2_pronunciation_list = ['không', 'một', 'hai', 'ba', 'bốn', 'năm', 'sáu', 'bảy', 'tám', 'chín'] | |
# should support decimal number, but I don't know how to pronounce decimal number correctly in Vietnamese | |
a = 1234567890 | |
suffix_cycle = itertools.cycle(['', 'nghìn', 'triệu', 'tỷ']) |