This file contains hidden or 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 | |
num_concurrent=6 | |
source_folder="<path to flac directory>" | |
destination_folder="<path to output mp3>" | |
if [ ! -d "$destination_folder" ]; then | |
mkdir -p "$destination_folder" | |
fi |
This file contains hidden or 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 | |
# Number of concurrent downloads | |
num_concurrent_downloads=9 | |
# Function to perform curl request | |
perform_curl() { | |
local url=$1 | |
local filename=$2 | |
printf "\nDownloading: $filename from $url\n" |
This file contains hidden or 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
const list = document.querySelector("#anyOtherDividendNarrationList > div > div.narration-items") | |
const rows = list.children | |
const getRowData = (row) => { | |
return {name: row.children[0].children[0].value, amount: row.children[1].children[0].value, date: row.children[2].children[0].value} | |
} | |
const res = [] | |
Array.from(rows).forEach(row => res.push(getRowData(row))) |
This file contains hidden or 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
version: "3" | |
services: | |
minecraft: | |
image: itzg/minecraft-server | |
ports: | |
- "1000:25565" | |
volumes: | |
- "./mc:/data" | |
environment: |
This file contains hidden or 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
*, | |
*::after, | |
*::before { | |
margin: 0; | |
padding: 0; | |
box-sizing: inherit; | |
} | |
html { | |
font-size: 62.5%; |