Peter deHaan

Results 134 issues of Peter deHaan

I'm sure a few of these are somewhat moot with refactorings in WIP pull requests, or not all of these markdown files being used to build the front end, but...

Trying to build a simple test.njk file using npx nunjucks-cli "test.njk" but getting an error about the `path` argument being `undefined` when it's expecting a string: ```sh npx nunjucks-cli "test.njk"...

https://2022.stateofjs.com/en-US/other-tools/#edge_runtimes The `` heading seems to be "other_tools.edge_runtimes". Also, the second tab (beside "Main Answers") seems to be "[en-US] other_tools.edge_runtimes.others".

https://2022.stateofjs.com/en-US/libraries/mobile-desktop/#mobile_desktop_happiness Looks like the `` is "mobile_desktop.mobile_desktop_happiness".

https://2022.stateofjs.com/en-US/libraries/testing/#testing_happiness The `` heading seems to be "testing.testing_happiness".

https://2022.stateofjs.com/en-US/libraries/front-end-frameworks/#front_end_frameworks_happiness The `` label seems to be "front_end_frameworks.front_end_frameworks_happiness"

VPN timer increments erratically - would be consistent for ~20 seconds, pause for definitely longer than 1 second, increment by one second, increment two seconds the next time (Not consistent...

Just found https://github.com/chriskrycho/v5.chriskrycho.com/blob/master/types/eleventy.d.ts and it's _exactly_ what I've been looking for. Any plans to publish this to npm or somewhere else public so I don't need to copy/paste it into...

implementation

Randomly spotted in [/src/lib/measurement.js:7](https://github.com/mozilla/pulse/blob/a36d4dfca74f62fa50da7ead0c339650ac547b91/src/lib/measurement.js#L7) that we're defining a `window` argument in the `BaseMeasurement#constructor()`, but never using it (using `tab.window` instead): ```js export default class BaseMeasurement { constructor(tab, window, survey) {...

Randomly looking at _/src/index.js_, I noticed that when we set the `storage.id[*]` we set the key as `msg.payload`, but when we delete the `storage.id[*]` the key we're using is `msg.payload.id`....