Scott Duensing

Results 19 issues of Scott Duensing

I'm working on a driver library for some custom hardware. We're using hid_enumerate() to get a list of all HID devices on the system and then we scan through it...

I know interfaces aren't supported on OS X. The work-around to check the usage to be sure you have the correct one is fine... except then what? I can either...

After installing DJGPP and reading the Microwindows FAQs and DJGPP PDF, running: `make -f Makefile_nr ARCH=DOS` results in: ![image](https://user-images.githubusercontent.com/98645/100027951-6f061e80-2db3-11eb-955a-40d342747b60.png)

Problem user here again. :-) This is the demo program from the TV C++ manual. Pressing F4 should open a window that displays a source file. Instead it throws an...

When trying to use enet with various memory leak tools, they break enet when redefining 'malloc' and 'free'. Replacing the definitions in ENetCallBacks with 'emalloc' and 'efree' (and related locations...

enhancement

Unzipping the Linux distribution leaves all the binaries un-executable. Since nw tries to execute other things, it's like playing whack-a-mole to make it run. Tarball?

gitmirror@stuff:~/gitlab-mirrors$ ./add_mirror.sh --git --project-name osxcross --mirror https://github.com/tpoechtrager/osxcross Resolving gitlab remote. Traceback (most recent call last): File "lib/manage_gitlab_project.py", line 149, in found_project=createproject(project_name) File "lib/manage_gitlab_project.py", line 110, in createproject 'namespace_id': find_group(name=gitlab_namespace).id, AttributeError:...

With a laptop touchpad, it's far too easy to right-click and alter the system speed. I'd love an option to disable this feature. It's in adb.c. Search for adb_increment_speed. If...

The settings: ``` SQL_SERVER_ADDRESS=127.0.0.1 SQL_SERVER_PORT=3306 ``` Seem to be ignored. Changing them does nothing. :-(

The JSON Management API is allowing password-protected operations without a password. Example: ``` $ echo w 1 stop | nc -w1 -u 127.0.0.1 5644 {"_tag":"1","_type":"error","error":"badauth"} {"_tag":"1","_type":"begin","cmd":"stop"} {"_tag":"1","_type":"row","keep_running":0} {"_tag":"1","_type":"end","cmd":"stop"} ``` This...