This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cSpell.words": [ | |
"fexscrape" | |
], | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"eslint.alwaysShowStatus": true, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ADP": "AD", | |
"AFA": "AF", | |
"ALK": "AL", | |
"AOK": "AO", | |
"AON": "AO", | |
"AOR": "AO", | |
"ARA": "AR", | |
"ARP": "AR", | |
"ARY": "AR", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" {} + |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bi | |
fu | |
ho | |
ky | |
uk | |
wn | |
xx | |
ass | |
bbw | |
nig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(" "); | |
} |
NewerOlder