Timo Tijhof

Results 386 comments of Timo Tijhof

@jbboehr My workaround is: ```php static $delimiterPragma = "{{=`\"'\x7f\xca \xca\x7f'\"`=}}"; return $delimiterPragma . strtr( $value, [ "\xca" => '' ] ); ``` Details at https://gerrit.wikimedia.org/r/c/labs/codesearch/+/1062418/2/frontend/src/Model.php#441 Which I believe is robust...

This was fixed in https://github.com/gruntjs/grunt/pull/1778, but is not yet released. There is an open question on the PR about whether it is fine to release as a minor version.

For input fields and forms, we have "change" and "submit" events as happening after processing a lower level event like click, keydown, keyup, Enter, drag-and-drop, clipboard paste, etc. What if...

@jakearchibald I see. Another example is `HTMLElement.click()` on a `` element, in relation to the `toggle` event on the parent `` element. The `toggle` event is non-cancellable and emitted after,...

> [..] By the way, because the site is built by Jekyll, the `feed.xml` will be regenerated every time I push a change. And even if the feed's content didn't...

When pasting the URL to a channel, NetNewsWire already discovers and follows the underlying RSS feed of that channel. For example, if you follow this channel in NetNewsWire: https://www.youtube.com/@engineerguyvideo Then...

While use of `grunt.util.spawn` is discouraged in new code, it is currently supported, tested and generally known to work. If you'd like help with the issue, please provide details of...

In case it is specific to some versions or OS, I pulled an isolated example through GitHub CI at . * Node.js 20 on Linux, macOS, Windows: OK * Node.js...

In the old open source version of the Algolia doc scraper, there was an easy way to configure this in the JSON file. I don't know how that works nowadays...

From : > Navigation where the [history handling behavior](https://html.spec.whatwg.org/multipage/browsing-the-web.html#history-handling-behavior) is set to ["entry update"](https://html.spec.whatwg.org/multipage/browsing-the-web.html#hh-entry-update). The "history handling behavior" link still resolves but indeed now only covers `push` and `replace`. The...