Steven Kalt

Results 38 comments of Steven Kalt

I'd vote for both. The end-to-end test w/ playwright could test whether the LI APIs break with assertions like `expect(resume.projects).not.toBeEmpty()`. A mocked API would be appropriate for testing the resume-forming...

re: end-to-end browser testing: I took another look through LI's TOS. Turns out they forbid any automated access, so browser testing's out. re: scraping: I think LI's disapproval of this...

What would you think of 1. reducing a grammar to a directed graph structure 2. where nodes are rule names and edges go from a rule to its dependents. For...

I've got an extremely rough draft of w3c EBNF support open on [a fork of this repo](https://github.com/SKalt/bnf/tree/add-ebnf), in case anyone's interested in pushing forward on this front. It has at...

With docblockr 0.13.7 and atom 1.31.2, the package correctly handles ```{javascript} function foo(x, {a, b}) { /* etc */ } // results in /** * [foo description] * @param {[type]}...

I'm considering Would you be open to using [dockerode](https://www.npmjs.com/package/dockerode) ? It seems like the quickest, best-supported way to build out managing multiple docker processes.

I tried integrating the osm_net before integrating the headways, as in the demo.ipynb, but it yielded the same result. The deletion of `stop_name`s still occurs at `integrate_network` with `headways=True, urbanaccess_gtfsfeeds_df=loaded_feeds`....

I found the code at fault around [network.py line 153](https://github.com/UDST/urbanaccess/blob/master/urbanaccess/network.py#L153), where `transit_edges.from` and `.to`, are overwritten, as is `transit_nodes` with [_route_id_to_node](https://github.com/UDST/urbanaccess/blob/master/urbanaccess/network.py#L281). I'd recommend retaining the original node ids in separate...

Here's how I do it (based on [rollup's own implementation](https://github.com/rollup/rollup/blob/master/src/Chunk.ts)): ```javascript import sha256 from 'hash.js/lib/hash/sha/256' sass({ output: (style) => { const hash = sha256().update(styles).digest('hex') const fileName = `styles-${hash.substring(0, 8)}.css` mkdirSync('path/to/output/dir',...