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
| #!/usr/bin/env python3 | |
| """ | |
| rich_table.py — render a TSV or JSON stream as a styled rich table | |
| created 2026-03-10 by Noah Coad w Claude Code | |
| Usage: | |
| <cmd> | rtbl [OPTIONS] [COL_SPEC ...] | |
| COL_SPEC: |
Japan is such a great place to visit! Feels like another world, super clean and safe, and one of the friendliest and easiest places to visit. I’ve seen round trip tickets as low as $480. And as of writing this (Jan 2026) the dollar is really strong (150yen vs 100yen per dollar) so it is also considerably less expensive than the US when there.
When docs, code, resources are scattered around on various team shares, repros, etc and a new team starts up, one of the first things they think about is "hey! we should have all the docs/code in ONE place!". But there's a REASON code/files/docs are in different stores. Because that organization makes sense too.
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
| # created 2024-04-25 by Noah Coad ncoad@amazon.com | |
| # demo video at https://youtu.be/9UkoTsXMnlQ | |
| import streamlit as st, boto3 | |
| # setup app | |
| amazon_q = boto3.client('qbusiness', 'us-west-2') | |
| st.title("Amazon Q Chatbot") #page title |
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
| # created 2024-04-25 by Noah Coad ncoad@amazon.com | |
| # demo video at https://youtu.be/9UkoTsXMnlQ | |
| import streamlit as st, boto3 | |
| # parameters | |
| aws_region = 'us-west-2' | |
| q_app_id = 'be05d006-3c25-439e-b25d-781ad5b2xxxx' | |
| q_user_id = 'AmazonQ-Administrator' |
NewerOlder