Joseph Dykstra

Results 37 issues of Joseph Dykstra

Before you write a scraper for comicsrss, please know that I don't want comicsrss to have some types of comic strips. I don't want comicsrss to have sexually-suggestive comics. For...

I put some test data in the resolve, and forgot to set it as an async function. When I try to load a route, I don't get any error message...

Node.js allows for [imports like this](https://nodejs.org/dist/latest-v16.x/docs/api/esm.html#node-imports): ```js import test from 'node:test'; const { createHmac } = await import('node:crypto'); const EventEmitter = require('node:events'); const fs = require('node:fs'); ``` For [some builtin...

## Situation In a JavaScript monorepo project: ``` - /api - /scripts - (etc.) - /shared ``` I want to easily import shared code from `/shared` into the other directories....

HyperClick doesn't support JavaScript template literals: ```js // works great require("./my-file.js") import("./my-file.js") // works great require('./my-file.js') import('./my-file.js') // does not work :( require(`./my-file.js`) import(`./my-file.js`) ``` Obviously parsing any templates `./my-${...

https://mostly-adequate.gitbook.io/mostly-adequate-guide/ch06 about halfway down, there is a link "include" ![image](https://user-images.githubusercontent.com/1833684/116911829-fda58400-ac0c-11eb-9e7d-7eac50f01161.png) Links to: https://github.com/mostly-adequate/mostly-adequate-guide/tree/356da9d3c46cee3d66b2ac3b015765a09879cf0b/exercises/ch06/main.js Should link to: https://github.com/MostlyAdequate/mostly-adequate-guide/tree/356da9d3c46cee3d66b2ac3b015765a09879cf0b/exercises/ch06/main.js (The only difference between those links is the GitHub username from "mostly-adequate" to...

When I tried to use this module with rollup, it included the ESM version of `video.js`, instead of the CJS. Probably because I was using it like this: ```js import...

Based on the number of end-parens `)` on line 323, the rest of the example was indented too far.

For bookmarks, and easier tab recognizability, I'd like to have a favicon. https://www.arangodb.com/ has this code... ```html ``` ...which could maybe be repurposed? (I'm not sure if arangojs is connected...

help wanted
Documentation