Curran Kelleher

Results 396 comments of Curran Kelleher

Personally, I think so! This would make a nice addition to the library, and it seems to be a non-breaking change. I'm not able to merge PRs as I'm not...

Someone should totally build an example with this that produces Minard's "Napoleon's March on Moscow" map. [![image](https://user-images.githubusercontent.com/68416/91904067-49fd8600-ec72-11ea-838f-eadf7a3a8021.png)](https://www.edwardtufte.com/tufte/posters)

Also I wonder how close this gets us to being able to automatically produce shapes like this. [![image](https://user-images.githubusercontent.com/68416/91904225-90eb7b80-ec72-11ea-9f38-e6e9df1d1719.png)](https://cartographia.wordpress.com/2008/06/09/minards-map-of-british-coal-exports/)

How would that be defined? In my experience each university defines semesters slightly differently. Is there a standard definition for semesters?

Are JavaScript Date objects able to faithfully represent B.C./BCE or pre-1000 years?

@mbostock Very interesting! Thank you for clarifying.

That would be neat! The next step is to dig up their source code. I found this, which looks like the definitions for these: https://github.com/mwaskom/seaborn/blob/6fdf253393c27f9f2f124c63cc50351f94ca4761/seaborn/cm.py#L1565 The next step would be...

Strawman API proposal: ```js const filteredData = d3.memoize( // The first argument is the function to be memoized, just like React's useMemo. () => data.filter( ... some logic that uses...

That would work, but not in the context of hot reloading (`d3.local` uses a new ID on each run). Here's a strawman implementation that works under hot reloading as well:...