Ben Sarah Golightly

Results 18 comments of Ben Sarah Golightly

Note that [is equivalent to](https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute)

fwiw I'm currently having the same error on Linux, e.g. Exception ignored in: Traceback (most recent call last): File "/usr/local/lib/python3.4/dist-packages/freetype_py-1.2-py3.4.egg/freetype/__init__.py", line 999, in __del__ TypeError: 'NoneType' object is not callable

Thanks! This is something I will aim to fix.

I've seen authuser in Google Cloud Console before, it's the picked account when you're logged into multiple accounts and switch between them - starting with 0 for the first account,...

I would encapsulate the type conversions in a function like so: ``` func calcVelocity(d distance, t time) velocity { return velocity(float64(d) / float64(t)) } ``` Is that insufficient?

@apparentlymart I believe the result would have to be explicitly typed: ```go type velocity float64 type velocitySquared float64 var result velocitySquared v1 := velocity(1.0) v2 := velocity(2.0) result = v1...

It works fine on Nginx. This is what I'm using: In /etc/hosts ``` 127.0.0.1 yourwebsite.localhost ``` In /etc/nginx/sites-available/yourwebsite.localhost (note, this is not the complete file! just the flipflop specific bit)...

> The alternative is either putting up with ugly docs, or writing this boilerplate: I sympathise with the reasoning a lot, but at the point where the public and the...