Daniel Lo Nigro

Results 350 comments of Daniel Lo Nigro

> I deleted all those values and re-loaded the model and it worked fine. Thanks @MetroSynth - This worked for me too.

> The library depends on the DOM for just escaping special characters. Not just that, it also walks the DOM as a means of parsing the HTML. You might be...

The closest thing we have to a REPL at the moment is https://astexplorer.net/. You can select jscodeshift from the "Transform" drop down. AST Explorer lets you edit a transform and...

I wonder if we should move the jsdoc to a Docusaurus site and have a separate build process for it (e.g. on Netlify).

Hmmm... It's likely that this has been a problem ever since engine pooling was added to the library. The data stored in the log shim needs to be cleared after...

Hmm, that's interesting, because it does seem like `intel_idle` is active? ``` root@DanHome:~# cat /sys/devices/system/cpu/cpuidle/current_driver intel_idle ``` It's an i5-13500 running on Linux 6.1.38. I'll have to figure out how...

Hey @fenrus75, sorry for the delay in replying. This is somewhat recent hardware - it's a W680 motherboard with a Raptor Lake CPU (i5-13500). I did notice that `intel_idle.c` seems...

Confirmed that intel_idle doesn't currently support Raptor Lake CPUs, as per this mailing list post from August 2023: https://lore.kernel.org/linux-pm/[email protected]/

Good catch, thanks. We've actually encountered similar issues at Facebook as our IDs are also 64-bit integers.

HTMLtoJSX just builds JSX at the moment. It does not use any parts of JSXTransformer. It could definitely be modified to output regular JavaScript rather than JSX. I'll add it...