Skip to content

Instantly share code, notes, and snippets.

@cavedave
cavedave / addsteps.py
Last active July 25, 2025 07:56
staircase.ipynb
# 1) find every record‐breaking year ≥ 1980
post80 = ts.where(ts.index >= 1980)
current_max = -np.inf
record_years = []
record_values = []
for yr, val in post80.items():
if np.isnan(val):
continue
if val >= current_max:
@cavedave
cavedave / .env
Last active July 5, 2025 13:12
coachbase and gemini check. Code to check if my env file lets us talk to Gemini and Coachbase correctly. A hello world to make sure a connection works. before you start doing clever LLM chats to is.
# Google API Key (required)
GOOGLE_API_KEY=
# Couchbase Capella Configuration (required)
COUCHBASE_CONN_STR=couchbases://cb....
COUCHBASE_USERNAME=...
COUCHBASE_PASSWORD=...
COUCHBASE_BUCKET=travel-sample
@cavedave
cavedave / worldpopulation.ipynb
Created June 27, 2025 19:39
worldpopulation.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cavedave
cavedave / electricity.ipynb
Last active June 19, 2025 23:10
electricity.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cavedave
cavedave / july1976.ipynb
Created June 14, 2025 08:19
july1976.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cavedave
cavedave / judge.ipynb
Created June 10, 2025 09:01
Judge.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cavedave
cavedave / spring3.ipynb
Created June 6, 2025 09:36
Spring3.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cavedave
cavedave / armagh-weather.ipynb
Last active June 4, 2025 09:15
armagh-weather.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cavedave
cavedave / dollar.ipynb
Created June 1, 2025 17:44
dollar.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cavedave
cavedave / nationalgallery.ipynb
Created May 26, 2025 18:26
NationalGallery.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.