Skip to content

Instantly share code, notes, and snippets.

View dejurin's full-sized avatar
💭
;-)

YURII D. dejurin

💭
;-)
View GitHub Profile
@dejurin
dejurin / settings.json
Created March 24, 2025 13:31
Format on Save in Go with VS Code
{
"cSpell.words": [
"fexscrape"
],
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"eslint.alwaysShowStatus": true,
"eslint.validate": [
"javascript",
"javascriptreact"
@dejurin
dejurin / collect.py
Created February 22, 2025 10:02
This script recursively scans a specified directory, generates a tree-like structure of its directories and files, and collects the contents of all files.
#!/usr/bin/env python3
import os
import argparse
import fnmatch
# Directories and files to ignore by exact name
IGNORE_DIRS = ['.git', '.vscode', '__pycache__', 'node_modules', 'templates']
IGNORE_FILES = ['.gitignore', '.DS_Store', 'LICENSE', '.gitattributes', 'collect.py', 'output.txt', 'README.md', 'go.mod', 'go.sum']
# Patterns for directories and files to ignore
@dejurin
dejurin / currency_country.json
Last active December 25, 2024 21:36
ISO 3166-1 alpha-2 by ISO 4217
{
"ADP": "AD",
"AFA": "AF",
"ALK": "AL",
"AOK": "AO",
"AON": "AO",
"AOR": "AO",
"ARA": "AR",
"ARP": "AR",
"ARY": "AR",
@dejurin
dejurin / IANATimeZones.json
Last active December 25, 2024 21:36
IANATimeZones by country ISO2 code
{
"AF": "Asia/Kabul",
"AN": "America/Curacao",
"AL": "Europe/Tirane",
"DZ": "Africa/Algiers",
"AS": "Pacific/Pago_Pago",
"AD": "Europe/Andorra",
"AO": "Africa/Luanda",
"AI": "America/Anguilla",
"AQ": "Antarctica/Vostok",
@dejurin
dejurin / languageCodes.ts
Created June 9, 2024 12:25
Language codes
// https://qit.tools/developer/cheat-sheet/unicode/languages/
// https://www.alchemysoftware.com/livedocs/ezscript/Topics/Catalyst/Language.htm
// let languageNativeNames = new Intl.DisplayNames([lang], { type: "language" });
// let languageNames = new Intl.DisplayNames(['en'], { type: "language" });
[
{
"code": "aa",
"name": "Afar",
"native": "Afar",
@dejurin
dejurin / create_archive.sh
Created April 19, 2024 14:13
This script creates a zip archive of the current directory, excluding files starting with '.DS_', and names the archive after the current directory.
#!/bin/bash
# Script: create_archive.sh
# Description: This script creates a zip archive of the current directory, excluding files starting with '.DS_', and names the archive after the current directory.
# Assign the name of the current directory to the variable 'folder_name'
folder_name=$(basename "$PWD")
# Find files in the current directory and its subdirectories, excluding those whose names start with '.DS_', and zip them into an archive named after the current directory
find . -type f -not -name '.DS_*' -exec zip "$folder_name.zip" {} +
@dejurin
dejurin / bad-words.txt
Created March 26, 2024 21:16
Bad words (stop words)
bi
fu
ho
ky
uk
wn
xx
ass
bbw
nig
// https://jsfiddle.net/v8Lxazhr/
function changeValue(isIncreasing) {
const valueElement = document.getElementById('valueElement');
let currentValue = parseInt(valueElement.innerText);
if (isIncreasing) {
currentValue++;
valueElement.style.color = 'green';
} else {
@dejurin
dejurin / polymorphic.ts
Last active March 8, 2024 13:51
Qwik Polymorphic Component Example
import type { QwikIntrinsicElements } from "@builder.io/qwik";
import { component$, Slot } from "@builder.io/qwik";
export default component$(
<C extends keyof QwikIntrinsicElements>(props: PolyProps<C>) => {
const Component = (props.as ?? "div") as string;
return (
<Component {...props}>
<Slot />
</Component>
@dejurin
dejurin / generateMonthCalendar.ts
Created February 27, 2024 21:51
Generate Month Calendar by Luxon
import { Info, DateTime } from "luxon";
function generateMonthCalendar(dt: DateTime, locale = "en-US") {
const startOfMonth = dt.startOf("month");
// Prepare an array to fill in the calendar
const calendar = [];
for (let i = 0; i < startOfMonth.weekday - 1; i++) {
calendar.push(" ");
}