Results 31 issues of Colin

In the (rare) case where a point's x or y coordinate is exactly in the middle of the bbox, the sign of `cx -xp` or `cy-yp` will be 0, so...

The docstring says... > precision (float): up to which sum of all overlaps along both x and y > to iterate; may need to increase for complicated situations; In practice,...

If there are many ways a text can be aligned without creating any overlaps, it would be nice to break ties by choosing the values of `ha` and `va` passed...

E.g. [here](https://processing.org/reference/background_.html) it would be great if `draw()`, `setup()`, `tint()` etc. were all clickable links that went to the corresponding reference page for that function.

enhancement

[pipe-filter](http://swcarpentry.github.io/shell-novice/04-pipefilter/) says 17 (which I think is consistent with `data-shell`) The [loops episode](http://swcarpentry.github.io/shell-novice/05-loop/) says: > 1518 times 5 seconds, divided by 60, tells her that her script will take about...

type:bug

Back when #699 was filed, we had an issue where an exercise in episode 3 required wildcards, but they were introduced and covered at length in episode 4. The needle...

type:clarification

The [merging lesson](http://www.datacarpentry.org/python-ecology-lesson/04-merging-data/) has the following code excerpt: ```python # read in first 10 lines of surveys table survey_sub = surveys_df.head(10) # grab the last 10 rows survey_sub_last10 = surveys_df.tail(10)...

help wanted
type:clarification

Methods are first explained in lesson 00: > To add elements to the end of a list, we can use the append method. Methods are a way to interact with...

help wanted
type:instructor guide
type:clarification

This seems to consistently affect `?!;`. Example: > How effective have Kennedy administration first foreign policy decisions been in dealing with Communist aggression ? ? This shows some more examples:...

My call graphs often have a long tail of functions that have a trivial impact on my program's total running time (e.g. a function that's called twice for a total...