US Congress Stock Trading API examples & templates
Use these vals as a playground to view and fork US Congress Stock Trading API examples and templates on Val Town. Run any example below or find templates that can be used as a pre-built solution.

liamdanielduffy
MOCHI_FLASHCARDS_GENERATOR_GPT_SYSTEM_PROMPT
An interactive, runnable TypeScript val by liamdanielduffy

dpetrouk
notifyInTg
Usage in bash: # Can be in .bashrc or .zsrhc:
to-tg() {
local input=""
if [[ -p /dev/stdin ]]; then
input="$(cat -)"
else
input="${@}"
fi
if [[ -z "${input}" ]]; then
return 1
fi
local chat_id="-1001826545120" # Set chat_id where your bot is
local message="$input"
curl -G https://api.val.town/v1/run/dpetrouk.notifyInTg --data-urlencode 'args=["'"$chat_id"'", "'"$message"'"]'
} # You will get notification where command is succesfully finished
<command in bash> && to-tg Success
# Can be like that?
<command in bash> | to-tg Success