flabberghaster

flabberghaster wrote

I stopped smoking recently too and hadn't realized what a fog i had been in; My anxiety is way less now. (not to say it's bad or anything just relating my experience after stopping daily use)

Glad you are now able to get by without it holly, so good to hear your pain is doing better :D

3

flabberghaster wrote

I think my favorite feature along these lines is splatting.

def draw_circle(x, y, r, line_color="#ff0000", fill_color="#00ff00"):
    ...

args = [10, 20, 2]
kwargs = {"line_color": "#0000ff", "fill_color": "#ff0000"}
draw_circle(*args, **kwargs)

it works the other way too. It's such a useful feature!

2