Skip to content

Instantly share code, notes, and snippets.

View karchx's full-sized avatar
need more coffee

Стив karchx

need more coffee
View GitHub Profile
@karchx
karchx / uppercaseUtil.js
Last active October 18, 2021 15:06
lowercase to uppercase in js
const uppercaseUtil = (text) => {
return text.toUpperCase();
}
@karchx
karchx / ddd
Last active June 23, 2025 23:32
https://gist.github.com/ReK42/da457ad29b718cc664b9769d3b4d997a
@karchx
karchx / random.py
Created October 1, 2025 15:03
random name
#!/usr/bin/env python3
import random
cs = "BCDFGHJKLMNPQRSTVWXZY"
vs = "AEIOU"
def generate_name(n=3):
result = ""
for i in range(n):