site

text for beau's website
git clone https://git.beauhilton.com/site.git
Log | Files | Refs

commit e0039d462f3968d7f10aa9052bfbb67d0987716c
parent 9a83073c68ddc87a47550e4de7162217c85bfbc1
Author: Beau <cbeauhilton@gmail.com>
Date:   Mon, 27 Sep 2021 19:13:37 -0500

more useless dialogue w the robot

Diffstat:
Mposts/geocheatcode.md | 16++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/posts/geocheatcode.md b/posts/geocheatcode.md @@ -120,12 +120,16 @@ query = extraneous + relevant lat, lon = google_lat_lon(query) print( - "Hello." - "My name is Google." - "I am really good at guessing what you meant." - f"Your query was {query}." - "Here are the coordinates you probably wanted." - f"The latitude is {lat}, and the longitude is {lon}." + "Hello. " + "My name is Google. " + "I am really good at guessing what you meant. " + f"Your query was '{query}'. " + "Here are the coordinates you probably wanted. " + f"The latitude is {lat}, and the longitude is {lon}. " + "Don't believe me? " + "Here it is again, in a format you can paste into the search bar: \n" + f"{lat}, {lon} \n" + "Told ya. " ) ```