├── .gitignore ├── LICENSE ├── README.md ├── bridge_bidding_advisor ├── .gitignore ├── README.md ├── bidding_advisor.py ├── bidding_tool.py ├── dspy_init.py ├── index_bridge_world_system.py ├── output.txt ├── requirements.txt └── trainingdata.json ├── choose_arch.txt ├── dataframe_to_pdf.ipynb ├── deployable_ner.ipynb ├── genai_agents ├── README.md ├── ag_weather_agent.py ├── chicago_weather.json ├── eval_weather_agent.py ├── lg_weather_agent.py └── requirements.txt ├── genai_seminar ├── .gitignore ├── Coval-Black.ttf ├── Coval-Light.ttf ├── README.md ├── create_lecture.ipynb ├── powerpoint_screenshot.jpg └── requirements.txt ├── genai_sketchnote └── create_sketchnote.ipynb ├── keys.env.example ├── llm_prices ├── .gitignore ├── apis.json └── llm_api_prices.ipynb ├── pydantic_ai_mountains ├── 1_zero_shot.py ├── 2_zero_shot_structured.py ├── 3_eval_against_reference.py ├── 4_use_tool.py ├── README.md ├── llm_utils.py ├── requirements.txt └── wikipedia_tool.py ├── stablediffusion ├── .gitignore ├── README.md └── stable_diffusion.ipynb ├── stock_grid_view ├── README.md ├── backend │ ├── .gitignore │ ├── env.example │ ├── list_models.py │ ├── main.py │ ├── models.py │ ├── requirements.txt │ ├── routers │ │ └── grid.py │ └── services │ │ ├── gemini_service.py │ │ └── redis_service.py └── frontend │ ├── .gitignore │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.jsx │ ├── api.js │ ├── assets │ │ └── react.svg │ ├── components │ │ └── StockGrid.jsx │ ├── index.css │ └── main.jsx │ ├── tailwind.config.js │ └── vite.config.js ├── stockanalysis ├── .gitignore ├── 1_non_agentic.py ├── 2_pydanticai.py ├── 2b_pydanticai_subagents.py ├── 3_langchain.py ├── 3b_langchain_subagents.py ├── 3c_langchain_deepagents.py ├── 4_adk │ ├── __init__.py │ ├── agent.py │ ├── data_model.py │ ├── env.example │ └── tools.py ├── README.md ├── data_model.py ├── playbooks │ ├── README.md │ ├── file_system_mcp.py │ ├── output │ │ └── 1734668400 │ │ │ └── report.md │ ├── playbooks.toml │ ├── run.py │ ├── stock_analysis_report_format.md │ ├── stock_analyst.pb │ └── web_mcp.py ├── pyproject.toml ├── requirements.txt ├── tools.py └── uv.lock ├── uk_postcode ├── .gitignore ├── README.md ├── uk_postcodes.ipynb ├── ukpopulation.csv.gz └── ukpostcodes.csv.gz └── w9_copilot ├── README.md ├── requirements.txt ├── scratch.py └── w9copilot.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # lakblogs 2 | Code and notebooks associated with my blogposts 3 | -------------------------------------------------------------------------------- /bridge_bidding_advisor/.gitignore: -------------------------------------------------------------------------------- 1 | *.env 2 | *.log 3 | *.pyc 4 | /bwscompletesystem.html 5 | ben/* 6 | 7 | -------------------------------------------------------------------------------- /bridge_bidding_advisor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/bridge_bidding_advisor/README.md -------------------------------------------------------------------------------- /bridge_bidding_advisor/bidding_advisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/bridge_bidding_advisor/bidding_advisor.py -------------------------------------------------------------------------------- /bridge_bidding_advisor/bidding_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/bridge_bidding_advisor/bidding_tool.py -------------------------------------------------------------------------------- /bridge_bidding_advisor/dspy_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/bridge_bidding_advisor/dspy_init.py -------------------------------------------------------------------------------- /bridge_bidding_advisor/index_bridge_world_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/bridge_bidding_advisor/index_bridge_world_system.py -------------------------------------------------------------------------------- /bridge_bidding_advisor/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/bridge_bidding_advisor/output.txt -------------------------------------------------------------------------------- /bridge_bidding_advisor/requirements.txt: -------------------------------------------------------------------------------- 1 | chromadb 2 | python-dotenv 3 | dspy-ai 4 | BeautifulSoup4 5 | langchain 6 | -------------------------------------------------------------------------------- /bridge_bidding_advisor/trainingdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/bridge_bidding_advisor/trainingdata.json -------------------------------------------------------------------------------- /choose_arch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/choose_arch.txt -------------------------------------------------------------------------------- /dataframe_to_pdf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/dataframe_to_pdf.ipynb -------------------------------------------------------------------------------- /deployable_ner.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/deployable_ner.ipynb -------------------------------------------------------------------------------- /genai_agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/genai_agents/README.md -------------------------------------------------------------------------------- /genai_agents/ag_weather_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/genai_agents/ag_weather_agent.py -------------------------------------------------------------------------------- /genai_agents/chicago_weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/genai_agents/chicago_weather.json -------------------------------------------------------------------------------- /genai_agents/eval_weather_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/genai_agents/eval_weather_agent.py -------------------------------------------------------------------------------- /genai_agents/lg_weather_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/genai_agents/lg_weather_agent.py -------------------------------------------------------------------------------- /genai_agents/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/genai_agents/requirements.txt -------------------------------------------------------------------------------- /genai_seminar/.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb* 2 | article* 3 | lecture.* 4 | -------------------------------------------------------------------------------- /genai_seminar/Coval-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/genai_seminar/Coval-Black.ttf -------------------------------------------------------------------------------- /genai_seminar/Coval-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/genai_seminar/Coval-Light.ttf -------------------------------------------------------------------------------- /genai_seminar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/genai_seminar/README.md -------------------------------------------------------------------------------- /genai_seminar/create_lecture.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/genai_seminar/create_lecture.ipynb -------------------------------------------------------------------------------- /genai_seminar/powerpoint_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/genai_seminar/powerpoint_screenshot.jpg -------------------------------------------------------------------------------- /genai_seminar/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/genai_seminar/requirements.txt -------------------------------------------------------------------------------- /genai_sketchnote/create_sketchnote.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/genai_sketchnote/create_sketchnote.ipynb -------------------------------------------------------------------------------- /keys.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/keys.env.example -------------------------------------------------------------------------------- /llm_prices/.gitignore: -------------------------------------------------------------------------------- 1 | config.txt 2 | -------------------------------------------------------------------------------- /llm_prices/apis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/llm_prices/apis.json -------------------------------------------------------------------------------- /llm_prices/llm_api_prices.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/llm_prices/llm_api_prices.ipynb -------------------------------------------------------------------------------- /pydantic_ai_mountains/1_zero_shot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/pydantic_ai_mountains/1_zero_shot.py -------------------------------------------------------------------------------- /pydantic_ai_mountains/2_zero_shot_structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/pydantic_ai_mountains/2_zero_shot_structured.py -------------------------------------------------------------------------------- /pydantic_ai_mountains/3_eval_against_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/pydantic_ai_mountains/3_eval_against_reference.py -------------------------------------------------------------------------------- /pydantic_ai_mountains/4_use_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/pydantic_ai_mountains/4_use_tool.py -------------------------------------------------------------------------------- /pydantic_ai_mountains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/pydantic_ai_mountains/README.md -------------------------------------------------------------------------------- /pydantic_ai_mountains/llm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/pydantic_ai_mountains/llm_utils.py -------------------------------------------------------------------------------- /pydantic_ai_mountains/requirements.txt: -------------------------------------------------------------------------------- 1 | pydantic-ai 2 | dotenv 3 | wikipedia 4 | -------------------------------------------------------------------------------- /pydantic_ai_mountains/wikipedia_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/pydantic_ai_mountains/wikipedia_tool.py -------------------------------------------------------------------------------- /stablediffusion/.gitignore: -------------------------------------------------------------------------------- 1 | token.txt 2 | *.png 3 | -------------------------------------------------------------------------------- /stablediffusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stablediffusion/README.md -------------------------------------------------------------------------------- /stablediffusion/stable_diffusion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stablediffusion/stable_diffusion.ipynb -------------------------------------------------------------------------------- /stock_grid_view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/README.md -------------------------------------------------------------------------------- /stock_grid_view/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/backend/.gitignore -------------------------------------------------------------------------------- /stock_grid_view/backend/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/backend/env.example -------------------------------------------------------------------------------- /stock_grid_view/backend/list_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/backend/list_models.py -------------------------------------------------------------------------------- /stock_grid_view/backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/backend/main.py -------------------------------------------------------------------------------- /stock_grid_view/backend/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/backend/models.py -------------------------------------------------------------------------------- /stock_grid_view/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/backend/requirements.txt -------------------------------------------------------------------------------- /stock_grid_view/backend/routers/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/backend/routers/grid.py -------------------------------------------------------------------------------- /stock_grid_view/backend/services/gemini_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/backend/services/gemini_service.py -------------------------------------------------------------------------------- /stock_grid_view/backend/services/redis_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/backend/services/redis_service.py -------------------------------------------------------------------------------- /stock_grid_view/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/.gitignore -------------------------------------------------------------------------------- /stock_grid_view/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/README.md -------------------------------------------------------------------------------- /stock_grid_view/frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/eslint.config.js -------------------------------------------------------------------------------- /stock_grid_view/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/index.html -------------------------------------------------------------------------------- /stock_grid_view/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/package-lock.json -------------------------------------------------------------------------------- /stock_grid_view/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/package.json -------------------------------------------------------------------------------- /stock_grid_view/frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/postcss.config.js -------------------------------------------------------------------------------- /stock_grid_view/frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/public/vite.svg -------------------------------------------------------------------------------- /stock_grid_view/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/src/App.css -------------------------------------------------------------------------------- /stock_grid_view/frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/src/App.jsx -------------------------------------------------------------------------------- /stock_grid_view/frontend/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/src/api.js -------------------------------------------------------------------------------- /stock_grid_view/frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /stock_grid_view/frontend/src/components/StockGrid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/src/components/StockGrid.jsx -------------------------------------------------------------------------------- /stock_grid_view/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/src/index.css -------------------------------------------------------------------------------- /stock_grid_view/frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/src/main.jsx -------------------------------------------------------------------------------- /stock_grid_view/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/tailwind.config.js -------------------------------------------------------------------------------- /stock_grid_view/frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stock_grid_view/frontend/vite.config.js -------------------------------------------------------------------------------- /stockanalysis/.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /stockanalysis/1_non_agentic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/1_non_agentic.py -------------------------------------------------------------------------------- /stockanalysis/2_pydanticai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/2_pydanticai.py -------------------------------------------------------------------------------- /stockanalysis/2b_pydanticai_subagents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/2b_pydanticai_subagents.py -------------------------------------------------------------------------------- /stockanalysis/3_langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/3_langchain.py -------------------------------------------------------------------------------- /stockanalysis/3b_langchain_subagents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/3b_langchain_subagents.py -------------------------------------------------------------------------------- /stockanalysis/3c_langchain_deepagents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/3c_langchain_deepagents.py -------------------------------------------------------------------------------- /stockanalysis/4_adk/__init__.py: -------------------------------------------------------------------------------- 1 | from . import agent 2 | -------------------------------------------------------------------------------- /stockanalysis/4_adk/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/4_adk/agent.py -------------------------------------------------------------------------------- /stockanalysis/4_adk/data_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/4_adk/data_model.py -------------------------------------------------------------------------------- /stockanalysis/4_adk/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/4_adk/env.example -------------------------------------------------------------------------------- /stockanalysis/4_adk/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/4_adk/tools.py -------------------------------------------------------------------------------- /stockanalysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/README.md -------------------------------------------------------------------------------- /stockanalysis/data_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/data_model.py -------------------------------------------------------------------------------- /stockanalysis/playbooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/playbooks/README.md -------------------------------------------------------------------------------- /stockanalysis/playbooks/file_system_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/playbooks/file_system_mcp.py -------------------------------------------------------------------------------- /stockanalysis/playbooks/output/1734668400/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/playbooks/output/1734668400/report.md -------------------------------------------------------------------------------- /stockanalysis/playbooks/playbooks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/playbooks/playbooks.toml -------------------------------------------------------------------------------- /stockanalysis/playbooks/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/playbooks/run.py -------------------------------------------------------------------------------- /stockanalysis/playbooks/stock_analysis_report_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/playbooks/stock_analysis_report_format.md -------------------------------------------------------------------------------- /stockanalysis/playbooks/stock_analyst.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/playbooks/stock_analyst.pb -------------------------------------------------------------------------------- /stockanalysis/playbooks/web_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/playbooks/web_mcp.py -------------------------------------------------------------------------------- /stockanalysis/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/pyproject.toml -------------------------------------------------------------------------------- /stockanalysis/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/requirements.txt -------------------------------------------------------------------------------- /stockanalysis/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/tools.py -------------------------------------------------------------------------------- /stockanalysis/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/stockanalysis/uv.lock -------------------------------------------------------------------------------- /uk_postcode/.gitignore: -------------------------------------------------------------------------------- 1 | indata 2 | temp 3 | .ipynb_checkpoints 4 | -------------------------------------------------------------------------------- /uk_postcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/uk_postcode/README.md -------------------------------------------------------------------------------- /uk_postcode/uk_postcodes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/uk_postcode/uk_postcodes.ipynb -------------------------------------------------------------------------------- /uk_postcode/ukpopulation.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/uk_postcode/ukpopulation.csv.gz -------------------------------------------------------------------------------- /uk_postcode/ukpostcodes.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/uk_postcode/ukpostcodes.csv.gz -------------------------------------------------------------------------------- /w9_copilot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/w9_copilot/README.md -------------------------------------------------------------------------------- /w9_copilot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/w9_copilot/requirements.txt -------------------------------------------------------------------------------- /w9_copilot/scratch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/w9_copilot/scratch.py -------------------------------------------------------------------------------- /w9_copilot/w9copilot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanok/lakblogs/HEAD/w9_copilot/w9copilot.py --------------------------------------------------------------------------------