Skip to content

Instantly share code, notes, and snippets.

View douglasg's full-sized avatar

Douglas douglasg

  • Germany, Karlsruhe
View GitHub Profile
---
- bcdDevice: 1
bInterfaceNumber: 0
idProduct: 6185
idVendor: 1241
hidReportDescriptor: !binary |
BQEJBqEBBQgZASkDFQAlAXUBlQORApUFkQEFBxngKeeVCIECGQQpKAlPCVAJ
KwksCVEJUpUrgQIJU5UBgQIZWSlklQyBAsA=
bConfigurationValue: 1
@douglasg
douglasg / gist:5527205
Created May 6, 2013 18:50
bus probe working after booting from windows
High Speed device @ 1 (0xFA000000): ............................................. Hub device: "EHCI Root Hub Simulation"
Port Information: 0x061d
Built-in Root Hub
Captive
Internal Device
Connected
Enabled
Number Of Endpoints (includes EP0):
Total Endpoints for Configuration 1 (current): 2
Device Descriptor
@douglasg
douglasg / gist:5527218
Created May 6, 2013 18:52
Bus Probe not working noppoo
Full Speed device @ 128 (0x14800000): ............................................. Hub device: "XHCI Root Hub SS Simulation"
Port Information: 0x061d
Built-in Root Hub
Captive
Internal Device
Connected
Enabled
Number Of Endpoints (includes EP0):
Total Endpoints for Configuration 1 (current): 2
Device Descriptor
@douglasg
douglasg / RaidHelperImport.gs
Created May 26, 2022 14:18
Imports Raid-Helper Group Assignments into the current active google sheet
function onOpen() {
var ui = SpreadsheetApp.getUi();
ui.createMenu('Raid-Helper')
.addItem('Import', 'showPrompt')
.addItem('Update', 'update')
.addToUi();
}
function showPrompt() {
var ui = SpreadsheetApp.getUi(); // Same variations.
@douglasg
douglasg / RaidHelperImport.gs
Created May 28, 2022 13:53
Imports raid-Helper Signups for use as Dropdown selection on google sheet
var RaidHelperCellRow = 1;
var RaidHelperCellColumn = 19;
var sheet;
function onOpen() {
var ui = SpreadsheetApp.getUi();
ui.createMenu('Raid-Helper')
.addItem('Import Event', 'showPromptEvent')
.addItem('Update', 'update')