Skip to content

Instantly share code, notes, and snippets.

View dev99problems's full-sized avatar
🤷
Little By Little

Gene Chulkov dev99problems

🤷
Little By Little
View GitHub Profile
const languages = [
{
"code": "af",
"langEnglishName": "Afrikaans"
},
{
"code": "ak",
"langEnglishName": "Akan"
},
{
WEBVTT
1
00:00:03.643 --> 00:00:07.514
You know, we should all do?
2
00:00:07.557 --> 00:00:10.086
Go
see a musical.
@dev99problems
dev99problems / table_signs.js
Created September 6, 2021 09:13
List of signs to easily draw table in CLI
const signs = {
topLeft: '┌',
topVert: '┬',
topRight: '┐',
bottomLeft: '└',
bottomVert: '┴',
bottomRight: '┘',
horizLeft: '├',
horizRight: '┤',
vert: '│',
def make_readable_size(size_in_bytes)
suffix = %W(B KB MB)
idx = 0
rest = 0
size = size_in_bytes
while size / 1024 > 1
idx += 1
new_size = size / 1024
rest = size - new_size * 1024