Ron Waldon-Howe

Results 107 comments of Ron Waldon-Howe

As of jQuery 1.7 (not yet released, but in release candidate) they have a built-in test for CSS Position Fixed support: http://bugs.jquery.com/ticket/6809 Might be worth detecting jQuery 1.7 and using...

It's internal code unfortunately (so I cannot share it at this time), but my team managed to replace the appmetrics module completely in Node.js 14.x using methods available in the...

- we have setTimeout/setInterval jobs that use [`os.cpus()`](https://nodejs.org/dist/latest-v16.x/docs/api/os.html#oscpus), [`os.freemem()`](https://nodejs.org/dist/latest-v16.x/docs/api/os.html#osfreemem), [`os.totalmem()`](https://nodejs.org/dist/latest-v16.x/docs/api/os.html#ostotalmem), [`perf_hooks.PerformanceObserver`](https://nodejs.org/dist/latest-v16.x/docs/api/perf_hooks.html#class-perf_hooksperformanceobserver), [`perf_hooks.monitorEventLoopDelay()`](https://nodejs.org/dist/latest-v16.x/docs/api/perf_hooks.html#perf_hooksmonitoreventloopdelayoptions), etc to collect data - and we have some conversion logic to turn this data into values that...

I'm having what might be the same issue on and off with a Dell Precision 5550 (Intel GPU) with an external monitor When it happens again, I'll try to grab...

Here we go: ``` Nov 19 13:49:08 hostname /usr/lib/gdm-wayland-session[3632]: 04:52:21.706 [ERROR] [backend/drm/atomic.c:36] eDP-1: Atomic commit failed (modeset): Invalid argument Nov 19 13:49:08 hostname /usr/lib/gdm-wayland-session[3632]: 04:52:21.715 [ERROR] [backend/drm/atomic.c:36] eDP-1: Atomic commit...

The only downside with the SQL-based approach is that you probably still end up needing to do client-side escaping. Still it does offer a little bit more structure, so it...

How does https://github.com/sidorares/nodejs-mysql-native handle this? Any reason not to just borrow parts of the way it's done over there? I'm still somewhat struggling with the number of different MySQL drivers...

@dresende the SQL method still winds up tampering with values to make them safe (escaping quotes, etc), whereas the protocol method explicitly separates query from values so tampering is not...

@berglh there are some suggestions here: https://docs.appimage.org/user-guide/run-appimages.html#integrating-appimages-into-the-desktop

I'm thinking of writing a function to recursively strip #s from the state object prior to a push (or replace). I have some high-priority HTML4 devices that are causing the...