Trevor Starick
Trevor Starick
This was fixed in the 2.2 release of VooDooI2C: https://github.com/alexandred/VoodooI2C/pull/191 You need to patch your DSDT to use GPIO interrupts.
I installed version 2.2 and then had to MaciASL to apply the "GPIO Controller Enable" patch On Sat, Jun 15, 2019 at 7:26 AM Toon van Strijp wrote: > @trevorstarick...
Do you have a guide to create SSDT patches? That's the only thing stopping me from making a PR
https://gist.github.com/trevorstarick/d11821776b10f92393bf9fed26c902f8 Here's my DSDT you should be able to just run a `diff` between the DSDT you export and mine to see the changes.
@LuletterSoul: I'm still encountering the cursor "jumping" or "lagging" when using the trackpad even after using the latest patch you provided. Are you having similar issues? I'm also finding the...
I replaced FakeSMC with VirtualSMC because I found the lagging was due to the ACPIBatteryManager. It's better now but not as good as I'd hope
What do you mean by authorization checks. As in OAuth/Basic?
Solved by changing `"./"` to `__dirname` ``` app.get(/\/static\/?.*/, restify.serveStatic({ directory: __dirname, 'default': 'index.html' })); ```
Strange since this is my code I'm using. ``` var restify = require('restify'); var register = function(app) { app.get('/', function(req, res, next) { res.send('hw'); next(); }); app.get(/\/static\/?.*/, restify.serveStatic({ directory: './',...
If anyone is looking for a semi-automatic way to import data from an existing SQLite DB into Pocketbase, I wrote two scripts to do so for my own use case:...