close
Skip to main content
ericgla u/ericgla avatar

decatron

u/ericgla

Feed options
Hot
New
Top
View
Card
Compact

I was pulling my hair out trying to diagnose a similar issue where my server would completely freeze every few weeks. After many hours of research I ran across a suggestion to move by boot USB to a USB2 port. Once I did that my server has been up for over 6 weeks without an issue.


The tech mentioned that it's a manufacturing defect in the seat pan involving a rivet that connects two pieces in the seat. The seat is finally stable after two replacements. Both were covered under warranty. DM me if your service department doesn't want to replace it and I'll send you copies of my work orders.


There was an issue with ‘24 GT-Line drivers seat where you would feel the seat shift on left hand turns. They have replaced the drivers seat base two times so far.


I had the same error. I asked Claude Code to update the script and I can now build. Updated script https://gist.github.com/ericgla/4a1b69a31bef2e45b491a5703164bd3a


The caps lock key doesn't produce a separate keycode for shift-capslock so I don't think your desired mapping will work. The top row of keys on the thumb clusters are also problematic for remapping. I ended up switching the keyboard controller to https://github.com/dcpedit/pillzmod to have full mapping control of the keyboard.


I'm not sure I follow. In the case of checkThing(['a', 'b', 'c']) the return type is boolean[] with an array length of 3. [boolean, boolean, boolean] is an array of boolean values. Can you give a detailed description of how the return type isn't specific enough for your use case?


function checkThing<T extends string | string[]>(item: T): boolean | boolean[] {
  if (Array.isArray(item)) {
    return item.map(i => toBoolean(i));
  }
  return toBoolean(item);
}


function toBoolean(item: string) {
  // the uniary + operator converts i to a number, and Boolean() coerces the number to a boolean
  return Boolean(+item);
}

Do the Telluride wheels have a high enough load rating for the weight of the EV9?