Brian Henry
Brian Henry
Your question isn't related to authentication, rather authorization. You need to give the user who is making the REST call permission to both create and list users. ``` $user =...
It looks like this plugin is working fine, i.e. the user is authenticated, but the user is not permitted to edit posts, i.e not authorised. Take a look at the...
It fails on the `moz-extension://...` Find+ User Guide page which opens when the extension is installed in Firefox. Since it didn't work there, I assumed it wasn't working at all....
It's not a browser bug, it's a **race condition.** The HTML generated is just a DIV with the relevant classes: https://github.com/WPTT/admin-notices/blob/42101e8cf841b17342fcef984a06caf63990c6f2/src/Notice.php#L180 [WordPress's common.js](https://github.com/WordPress/WordPress/blob/d7086ba67a3071b26678b11f8f12f8f7c3f78484/wp-admin/js/common.js#L1085-L1116) then adds the dismiss button to the...
I tried: ``` git checkout -b 989-namespace-drivetrain-configurations origin/989-namespace-drivetrain-configurations ``` with no other changes and it did not work. Then I... > just uncomment PWM_STEERING_PIN in the PWM_STEERING_THROTTLE sections. That worked....
I did not create a new mycar, nor did I update. (my existing mycar was vanilla – I had reinstalled from scratch as I tried to troubleshoot). The fail was...
This happened me today, the solution was: `pip uninstall RPi.GPIO` Error was `python manage.py drive`: ``` ________ ______ _________ ___ __ \_______________ /___________ __ __ ____/_____ ________ __ / /...
Thanks. I was able to get driving by replacing [controller.py:457-496](https://github.com/autorope/donkeycar/blob/1c4569c4ddf7d2878c73c6af19eee8f67fca79a1/donkeycar/parts/controller.py#L457-L496) with: ``` self.axis_names = { 0x01: 'left_stick_horz', 0x00: 'left_stick_vert', 0x05: 'right_stick_horz', 0x02: 'right_stick_vert', 0x03: 'left_trigger_axis', 0x04: 'right_trigger_axis', 0x06: 'dpad_leftright', 0x07:...
I’m a little hesitant because of [this comment on Discord](https://discord.com/channels/662098530411741184/671604367706554388/827585434800488489) > I have found that the hex keycodes for both the PS4 and XBox One are different depending on what...
PyCharm prompted me to remove the entries with duplicate keys in the dictionary. And the Python documentation does say that dictionaries have ["the requirement that the keys are unique"](https://docs.python.org/3/tutorial/datastructures.html#dictionaries). I...