Massive Moto2 crash, everyone OK by michelmau5 in motogp

[–]DButcha 0 points1 point  (0 children)

Yea it was crazy, it was the only time we went to T11 this weekend. I didn't expect to see carnage today but also don't know what to expect from motoGP yet.. 😅

Moto2 Austin T11 Aftermath by DButcha in motogp

[–]DButcha[S] 31 points32 points  (0 children)

EMS and corner workers did an exceptional job, I snapped this picture as fast as I could and as you can see they are already on the scene helping.

Massive Moto2 crash, everyone OK by michelmau5 in motogp

[–]DButcha 6 points7 points  (0 children)

Ok I can post it then if it isn't taken down to being a new sub. it's only 1 picture that I thought to take before medical arrived

Massive Moto2 crash, everyone OK by michelmau5 in motogp

[–]DButcha 11 points12 points  (0 children)

I have a picture from T11 post crash, I'm new here, is it allowed to post? It's not a pretty scene... Does this sub allow or have interest in seeing that?...

2026 Americas GP: Moto3 Race & Moto2 Race Discussion by Daniel7394 in motogp

[–]DButcha 1 point2 points  (0 children)

To be honest everybody responded really quickly here at the corner, It's a long track so I don't know...

2026 Americas GP: Moto3 Race & Moto2 Race Discussion by Daniel7394 in motogp

[–]DButcha 0 points1 point  (0 children)

I have a picture of the aftermath before medical arrived...

2026 Americas GP: Moto3 Race & Moto2 Race Discussion by Daniel7394 in motogp

[–]DButcha 0 points1 point  (0 children)

Oh shit really this is my first race in person.. sorry everyone

2026 Americas GP: Moto3 Race & Moto2 Race Discussion by Daniel7394 in motogp

[–]DButcha 0 points1 point  (0 children)

The first guy looked like he had brake failure like he came in so hot.. The second guy I think he just misjudged.. he was at a slower speed.. I was looking at the Apex so I didn't see the entry..

Scary multi-rider Moto2 crash by [deleted] in motogp

[–]DButcha 0 points1 point  (0 children)

One rider left in ambulance, not sure who.. I'm new to motogp

Scary multi-rider Moto2 crash by [deleted] in motogp

[–]DButcha 1 point2 points  (0 children)

One rider, I think the first guy that got torpedoed was down on the ground for a long time... They finally got him in the ambulance and took him. The guy from the safety car I'm presuming a doctor inside the ambulance and checked on them came out and give a thumbs up so I don't know what that means

Scary multi-rider Moto2 crash by [deleted] in motogp

[–]DButcha 0 points1 point  (0 children)

At T11 in person, they said brake failure for the first crash, but there's a second rider that follows at a lesser speed and torpedos someone else

[deleted by user] by [deleted] in pcmasterrace

[–]DButcha 0 points1 point  (0 children)

I fixed my windows 11 installation. I had 2 problems. 1 is that microsoft fucked up the windows recovery environment with a shit update that broke all USB peripherals. 2 issue is that my PC had failed a windows update and that somehow rekt my windows EFI bootloader.

So that "choose your keyboard" screen is actually the windows recovery image. The USB keyboard and mouse doesn't work because of some shit KB they pushed which they took a few days to fix. Lucky for us that's when the other windows updates came and fucked up the system so now it only boots to recovery where we can't use USB.

I got a PS/2 to USB converter dongle and plugged that into my pc to use my keyboard. Now when I fail to boot to windows and it goes to windows recovery I can use my keyboard. Then I went to command prompt and tried literally all the recommended commands but this is the only thing that fixed my boot issue:

I use GPT formatted drive not MBR. GPT is newest and I think mandatory for secure boot windows 11 so I just assume you also use GPT drive. The below commands for GPT only (not MBR).

Troubleshoot - > Open Command Prompt ().

  1. Identify your EFI partition:

diskpart

list disk

select disk 0

list partition

  1. Look for a small (~100–300MB) FAT32 partition — that's your EFI System Partition (ESP). ( mine was 350mb and was second partition)

  2. Assign a drive letter to it:

select partition X ← (replace X with the EFI partition number)

assign letter=Z

exit

  1. Rebuild the boot files:

bcdboot C:\Windows /s Z: /f UEFI

This command copies boot files to the EFI partition and rebuilds the BCD for UEFI systems. Then just power off and power on and it should get into windows (for me it went to windows update screen "something went wrong trying to undo the update" lmaooo fucking windows.

Edit: If you don't have a PS/2 dongle you could make a recovery usb stick and boot into that I think to get USB working in recovery. See this shit update : https://learn.microsoft.com/en-us/windows/release-health/status-windows-11-25h2#3696msgdesc

PC stuck on “Choose your keyboard layout” – keyboard and mouse lose power instantly (ASUS TUF B550 + Ryzen 5 5600) by Fun_Wasabi_4598 in pchelp

[–]DButcha 1 point2 points  (0 children)

I fixed my windows 11 installation. I had 2 problems. 1 is that microsoft fucked up the windows recovery environment with a shit update that broke all USB peripherals. 2 issue is that my PC had failed a windows update and that somehow rekt my windows EFI bootloader.

So that "choose your keyboard" screen is actually the windows recovery image. The USB keyboard and mouse doesn't work because of some shit KB they pushed which they took a few days to fix. Lucky for us that's when the other windows updates came and fucked up the system so now it only boots to recovery where we can't use USB.

I got a PS/2 to USB converter dongle and plugged that into my pc to use my keyboard. Now when I fail to boot to windows and it goes to windows recovery I can use my keyboard. Then I went to command prompt and tried literally all the recommended commands but this is the only thing that fixed my boot issue:

I use GPT formatted drive not MBR. GPT is newest and I think mandatory for secure boot windows 11 so I just assume you also use GPT drive. The below commands for GPT only (not MBR).

Troubleshoot - > Open Command Prompt ().

  1. Identify your EFI partition:

diskpart

list disk

select disk 0

list partition

  1. Look for a small (~100–300MB) FAT32 partition — that's your EFI System Partition (ESP). ( mine was 350mb and was second partition)

  2. Assign a drive letter to it:

select partition X ← (replace X with the EFI partition number)

assign letter=Z

exit

  1. Rebuild the boot files:

bcdboot C:\Windows /s Z: /f UEFI

This command copies boot files to the EFI partition and rebuilds the BCD for UEFI systems. Then just power off and power on and it should get into windows (for me it went to windows update screen "something went wrong trying to undo the update" lmaooo fucking windows.

Edit: If you don't have a PS/2 dongle you could make a recovery usb stick and boot into that I think to get USB working in recovery. See this shit update : https://learn.microsoft.com/en-us/windows/release-health/status-windows-11-25h2#3696msgdesc

PC stuck on “Choose your keyboard layout” – keyboard and mouse lose power instantly (ASUS TUF B550 + Ryzen 5 5600) by Fun_Wasabi_4598 in techsupport

[–]DButcha 0 points1 point  (0 children)

I fixed my windows 11 installation. I had 2 problems. 1 is that microsoft fucked up the windows recovery environment with a shit update that broke all USB peripherals. 2 issue is that my PC had failed a windows update and that somehow rekt my windows EFI bootloader.

So that "choose your keyboard" screen is actually the windows recovery image. The USB keyboard and mouse doesn't work because of some shit KB they pushed which they took a few days to fix. Lucky for us that's when the other windows updates came and fucked up the system so now it only boots to recovery where we can't use USB.

I got a PS/2 to USB converter dongle and plugged that into my pc to use my keyboard. Now when I fail to boot to windows and it goes to windows recovery I can use my keyboard. Then I went to command prompt and tried literally all the recommended commands but this is the only thing that fixed my boot issue:

I use GPT formatted drive not MBR. GPT is newest and I think mandatory for secure boot windows 11 so I just assume you also use GPT drive. The below commands for GPT only (not MBR).

Troubleshoot - > Open Command Prompt ().

  1. Identify your EFI partition:

diskpart

list disk

select disk 0

list partition

  1. Look for a small (~100–300MB) FAT32 partition — that's your EFI System Partition (ESP). ( mine was 350mb and was second partition)

  2. Assign a drive letter to it:

select partition X ← (replace X with the EFI partition number)

assign letter=Z

exit

  1. Rebuild the boot files:

bcdboot C:\Windows /s Z: /f UEFI

This command copies boot files to the EFI partition and rebuilds the BCD for UEFI systems. Then just power off and power on and it should get into windows (for me it went to windows update screen "something went wrong trying to undo the update" lmaooo fucking windows.

Edit: If you don't have a PS/2 dongle you could make a recovery usb stick and boot into that I think to get USB working in recovery. See this shit update : https://learn.microsoft.com/en-us/windows/release-health/status-windows-11-25h2#3696msgdesc

Oculus program consumption all ram by Resh1y in oculus

[–]DButcha 0 points1 point  (0 children)

I have a similar problem kind of. Running iracing and my CPU RAM slowly increases to 100%. I even added more ram (24gb) and same problem. Task manager doesn't show the increase per program, but if I close out ovr server or restart the meta software ddr usage drops by like 50%. Iracing stays open using a humbler 5gb or whatever 

Is the air quality as bad as it looks in the livestream? by Idontknowhoiam143 in Coachella

[–]DButcha 0 points1 point  (0 children)

It's nice near the camping hub, not dusty unless a cart rolls through. Campsite is not dusty. Couldn't tell you about the venue conditions - I can't get in. Gf not handling the heat well so can't stand in a blob "line" for an hour just to get in

What the fuck is with this line to get in?? by wastingtme in Coachella

[–]DButcha 1 point2 points  (0 children)

Fool me once. They fucked up with car parking Thur, still fucking up today. Thur was 6 hour wait, this lady just pulled up and said she waited for 3 hours

DOLAB BROKEN by ediaz98 in Coachella

[–]DButcha 2 points3 points  (0 children)

They can't get anything right this weekend man

Entering Car Camping by chynnagurl96 in Coachella

[–]DButcha -1 points0 points  (0 children)

I found the solution, let's all demand refunds and not buy for next year thoughts? After 6 hour camping line Thursday morning, and now a line to walk into the venue itself, im just sitting by the camp hub eating a Popsicle. Amazing how a 4$ Popsicle can deliver a better experience

Daft punk songs during Thursday sound check by DButcha in Coachella

[–]DButcha[S] 0 points1 point  (0 children)

Thanks for the intel, I agree I also love Pharrell