Stephan Mantler

Results 8 comments of Stephan Mantler

My temporary approach for running a job every 5 minutes: ``` struct MyJob : ScheduledJob { // start with 4 to ensure first run happens immediately static var inter: Int...

> For a personal project I ended up creating an NPM package of a modified `suncalc` to do this. It's called [suncalc-tz](https://www.npmjs.com/package/suncalc-tz), if anyone comes across this and is looking...

I encountered the same issue because my homebrew path is different from the one specified in the Makefile (`brew list argp-standalone` confirmed the include and library paths needed to be...

Opening `/dev/disk7s2` in read-only mode ... open_container__info_stream: ERROR: You do not have sufficient privileges to read this file. You'll need to run as root to have full access to the...

+1. Trying to upload GPX or GeoJSON files by specifying: ``` { "application/gpx+xml": [".gpx"], "application/geo+json": [".geojson"], } ``` Hover shows rejection. Drop works fine, accepts suitable files as expected, and...

Poking around further. In [fileAccepted](https://github.com/react-dropzone/react-dropzone/blob/d6911c991e077151e302b599b92269432ab0472b/src/utils/index.js#L66), the `file` parameter appears to be bogus: ``` { kind: "file", type: "" } ``` Not sure how to dig further than that though.

react & react-dom are now at 19.1, which appears to require another update.

I've seen similar errors in other packages after switching to React 19, so it is likely to be related...