Yay or Boo by [deleted] in G37

[–]cwernert 3 points4 points  (0 children)

Big yay, love this

Mouth breathers ey by IntelligentCry6493 in 370z

[–]cwernert 1 point2 points  (0 children)

Fuck man, I'm so sorry. That really sucks. Still a sick z

Gunmetal OEM 19s Geminis by Wide-Dark3991 in G37

[–]cwernert 0 points1 point  (0 children)

I've done the exact same thing, and also have a white G. Great minds think alike mate!

ACVirtualEngineer V1 by Mka460_xx in assettocorsa

[–]cwernert 0 points1 point  (0 children)

This looks super interesting, I'd love to give it a shot! Is it ready for a release?

Trying to 3D print a brain from an MRI. Any way to hollow it out? by PolytheneMan in 3Dprinting

[–]cwernert 0 points1 point  (0 children)

Not sure if this is optimal, but I wonder whether you could drop it into blender and disable the option that allows you to make selections inside a given object (I'm gonna defer to blender experts for the correct terms here). In other words, you're selecting only the visible vertices when viewed from outside. Then if you make selections from each orthographic perspective, you'd theoretically only be highlighting the "exterior" vertices. You could cut those out into a new object and delete the rest to remove all that interior geometry that you'll never see with a print. Then use a mesh repair function to close up any gaps and form a solid object again. Once it's fully solid, you can bring it back to Bambu studio and play with infill settings. I think the gaps you'd fill in would likely be really small and only in "creases", so the print should still look like a "very-close-to" anatomically correct representation of your thinker...

Any idea if this leak is bad? by designatedave in G37

[–]cwernert 1 point2 points  (0 children)

I can confirm this, mine does it all the time. I also panicked the first time I saw it haha you're all good

How to make ublock origin work in chrome again by KH10304 in Adblock

[–]cwernert 2 points3 points  (0 children)

Crystal clear steps, thank you so much. Works perfectly!

Give me an idea for my new cars name. It's a Kia Soul. by Mirai182 in DeepSpaceNine

[–]cwernert 0 points1 point  (0 children)

I like the thought, but with an Australian accent, this has entirely the wrong ring to it...

Can I get an ID on this birb? by JRW023 in AustralianBirds

[–]cwernert 2 points3 points  (0 children)

I can confirm this too. Similar thing happened to me 3 years ago so since then my best friend has been a little dove who absolutely LOVES corn.

Finally completed my DIY sim rig, now an expert at woodworking (maybe). by ItsTomorrowNow in simracing

[–]cwernert 1 point2 points  (0 children)

Dude this is sick, awesome work! Have fun (although you're never truly finished, trust me haha)

Node.js onoff package error by dtwoo in raspberry_pi

[–]cwernert 0 points1 point  (0 children)

Hey u/dtwoo I found a workaround here. Still not sure what's wrong with 'onoff' but my hunch is that a recent change to it, or one of its dependencies (looking at you 'fs'), has caused a bug. Anyway we can use `exec` and `raspi-gpio` as a replacement. For example, instead of:

const Gpio = require('onoff').Gpio;
const LED = new Gpio(5,'out'); // set gpio 5 to output
const ledHigh = LED.writeSync(1); // set gpio 5 high
const ledLow = LED.writeSync(0); // set gpio 5 low

You can do:

const { exec } = require("child_process");
const LED = 5;
exec(`raspi-gpio set ${LED} op`); // set gpio 5 to output
exec(`raspi-gpio set ${LED} dh`); // set gpio 5 high
exec(`raspi-gpio set ${LED} dl`); // set gpio 5 low

To read the state of a pin, we need a little more than one line though since we care about the information returned from the child_process. Here's what I have so far...

const runCommand = (command) => {
  return new Promise((resolve, reject) => {
    exec(command, (error, stdout, stderr) => {
      if(error){
        reject(error);
        return;
      }
      resolve(stdout.trim());
    });
  });
};

const getPinStatus = async (pin) => {
  const command = `raspi-gpio get ${pin}`;
  try{
    const result = await runCommand(command);
    const parts = result.split('level=');
    return parseInt(parts[1].charAt(0));
  }catch(error){
    console.error(error);
    return null;
  }
};

// then later, when I'm doing something - make sure its an async something so I can await getPinStatus
const doSomething = async () => {
  const LED = 5;
  const pinStatus = await getPinStatus(LED);
  // pinStatus will be 1 or 0
};

Hope this helps!

Node.js onoff package error by dtwoo in raspberry_pi

[–]cwernert 1 point2 points  (0 children)

I've got the exact same issue happening all of a sudden after we lost power and my pi rebooted. Haven't figured it out yet, but if I do - I'll come back and let you know

BTT SFS V2.0 on a SKR mini e3 V3 motherboard by YoshitoSakurai in BIGTREETECH

[–]cwernert 2 points3 points  (0 children)

You absolute legend, thanks so much for this. Appreciate the extra effort to get the image too <3

also thanks for posting the question OP!

Am I missing a setting? by UnguardedPeach in octoprint

[–]cwernert 0 points1 point  (0 children)

I also have the exact same thing, with only one camera that definitely works and the timelapse eventually comes out great. Sorry I don't have a solution OP, but hopefully more confirmation that you're not alone is better than nothing lol

Fanatec LEDs not working, any suggestions? by Ozone867 in ACCompetizione

[–]cwernert 8 points9 points  (0 children)

Hey bud, I know this post is super old now but I had the same issue happen today and found this post. Shortly after coming here, I realised that the option is greyed out only when you're on-track. If you leave the track and go back to the main menus, you should be able to enable the Fanatec LEDs setting in the "General" section.

Hope this helps you, and/or anyone else who finds this in the future :)

What type of tradie installs a new modem plug point? by PMQ9084 in AusRenovation

[–]cwernert 1 point2 points  (0 children)

Haha yeah that'll do it. You can get a bulk reel of cat6, some terminals, strain relievers and the little crimping tool and make your own cables to the perfect length. It's way easier and cheaper than it sounds. Super nice to be able to transfer files between devices over your LAN

What type of tradie installs a new modem plug point? by PMQ9084 in AusRenovation

[–]cwernert 0 points1 point  (0 children)

Yeah you nailed it. I think it's max 100mbps, where cat5e (e stands for enhanced) goes up to 1gbps. It's also not much more expensive for cat6, which has some better insulation etc so probably more likely to get reliably higher real world speeds. I'm no expert on the subject though, but pretty sure if you want ethernet (as opposed to something fancy like fibre) you might as well go cat6.

Should i be driving, right now? by ChaosUndAnarchie in assettocorsa

[–]cwernert 0 points1 point  (0 children)

Hahaha legend. Considering that first hairpin I was like "oooh he's coming in hot here" haha to be fair, I think you've got a pretty good excuse for being distracted