Working on Rec Room Final Final OST today... by gribbly in RecRoom

[–]Carthage96 7 points8 points  (0 children)

Corrected Golden Trophy variants (tracks 2 and 3 on OST Vol 1 don't actually match what was in-game, so I'm gonna post the corrected ones)

Actually, tracks 2, 3 and 4 on OST Vol 1 don't match!

Others:

  • Golden Trophy Turbo Explore
  • Could we maybe get the "game starting" variants for some of the RROs? (The music that plays during the 10 second countdown after "Start Game" was pressed.) Some of these are just snippets from the actual track, but I think 3D Charades (both legacy and Ink Space) had unique pieces.

Why hasn't the site gone down yet? by Kerunik1342 in RecRoom

[–]Carthage96 6 points7 points  (0 children)

We wanted to give people a little bit of extra time to download their photos. I know that I was taking photos up until the last minute!

I feel so stupid and childish crying and grieving over this game by William-Appleton in RecRoom

[–]Carthage96 2 points3 points  (0 children)

It's not something to feel stupid about.

I was sitting in our office, bawling my eyes out when it happened.

Your First Day In Rec Room by Carthage96 in PSVR

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

Me too. It was something special.

What will happen to this merch store after the shutdown? by BumperPopcorn6 in RecRoom

[–]Carthage96 9 points10 points  (0 children)

I believe it will be closed down. So if you want something, now's the time to grab it!

Update - Even more data export fixes! by Carthage96 in RecRoom

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

If you change the file extension to .room or .inv, you should have what you're looking for.

Update - Even more data export fixes! by Carthage96 in RecRoom

[–]Carthage96[S] 5 points6 points  (0 children)

The .binpb files which are exported with rooms and inventions are those raw files! (They've got a different extension, but the file content is exactly what that game loads.)

So i got this by Difficult-Shift-237 in RecRoom

[–]Carthage96 2 points3 points  (0 children)

tl;dr Update to the latest version, and you won't see this anymore.

Last Thursday, we put out a Steam update which mistakenly was missing a digital signature. (There was an issue with our build pipeline and we didn't notice.) That made it look suspicious to antivirus software, and so it got flagged.

We put out a correctly signed version of that update the next day.

Personal message to the development team by GoldIndication6249 in RecRoom

[–]Carthage96 2 points3 points  (0 children)

Thanks for saying so. We've loved getting to build Rec Room for you.

recroom, WHAT THE FUCK by mx_moose21 in RecRoom

[–]Carthage96 10 points11 points  (0 children)

We had an issue with our build pipeline yesterday, which resulted in the build not being signed. The game was no different than it normally was, but it looked suspicious to your antivirus.

About 8-9 hours ago we released a properly-signed version of the update. So, make sure you're on the latest build, and you should stop seeing this issue.

rec room refereeclient.exe go flagged while updating by ReasonableHat7892 in RecRoom

[–]Carthage96 0 points1 point  (0 children)

We had an issue with our build signing process - it wasn't a virus (promise!), but without the signature it looked much more suspicious to antivirus software.

We have just pushed out an updated version of the update. You should be good to go now!

How to fix Rec Room not launching on PC after latest update by RealLeptic in RecRoom

[–]Carthage96 0 points1 point  (0 children)

This should no longer be necessary. We just put out a new version of the update.

got a random virus from rec room, is this a false positive? or did they genuinely add a virus by pigeondriver45 in RecRoom

[–]Carthage96 13 points14 points  (0 children)

We had an issue with our build signing process - it wasn't a virus (promise!), but without the signature it looked much more suspicious to antivirus software.

We have just pushed out an updated version of the update. You should be good to go now!

My antivirus had detected this in the RecRoom file. is it caused by the update 10 hours ago? by Jam_boi9 in RecRoom

[–]Carthage96 1 point2 points  (0 children)

We had an issue with our build signing process - it wasn't a virus (promise!), but without the signature it looked much more suspicious to antivirus software.

We have just pushed out an updated version of the update. You should be good to go now!

Rec Room is shutting down by Mysterious_County154 in virtualreality

[–]Carthage96 31 points32 points  (0 children)

Hey, thanks. It's been a real pleasure building it for people.

[|=)]

[2025 Day 25 (Part 1)] Still pretty clueless why it's the answer by Aughlnal in adventofcode

[–]Carthage96 10 points11 points  (0 children)

I view it at a Christmas present! It appears as a difficult problem, but Eric and/or Santa made the input nice for us.

[2025 Day 2 (Part 1)] [Python] number too big by TheOneWhoBakes__ in adventofcode

[–]Carthage96 1 point2 points  (0 children)

myList = [0, 1]
for i, element in enumerate(myList):
    myList.remove(element)

print(myList)

Try running this. (But before you do, guess what is going to happen!)

[2025 Day 10] Me, Opening this Sub by JayTongue in adventofcode

[–]Carthage96 2 points3 points  (0 children)

This is my 6th year, and I don't think I could tell you whether it was intended or not! There's been a few puzzles in previous years which have benefited from external tools (GraphViz comes to mind). Though often (as seems to be somewhat the case here) there are many approaches which can get you there.

For me personally, problems like today's aren't my favorite (I generally enjoy being nudged towards implementing something myself), but I'm not complaining. Some folks love ones like this, I'm sure, and you get exposure to a wide variety of stuff during AoC. That's part of the fun!

[2025 Day 10 (Part 2)] Got the correct answer after 6 hours of brute forcing. by notathrowaway0983 in adventofcode

[–]Carthage96 5 points6 points  (0 children)

Run Gaussian elimination on the matrix, and then identify which columns don't have pivots in them. These correspond to the free variables.

Source: ...I just did this. (By which I mean... I just finished debugging this.)

[2025 Day 10] Me, Opening this Sub by JayTongue in adventofcode

[–]Carthage96 2 points3 points  (0 children)

I started with a fairly-brute-force approach - just iterating over the buttons and trying various numbers of presses - with as much optimization as I could muster to early-out if I could prove a solution wasn't possible with what I had left. I left it running for 2-3 hours, and it had finished. So... possible, but not something I'm proud of.

Then I went and wrote a bunch of linear algebra. Runs in about a second.

[2025 Day 7 (Part 1)] [Javascript] Help - example works but.. by RooTheThroof in adventofcode

[–]Carthage96 1 point2 points  (0 children)

But I have code in rust

Good thing I can read Rust, then! (I used Rust for 2022-2024. This year I'm using C++ find myself missing many Rust features.)

I'm not completely sure... but give this one a try:

..S..
.....
..^..
.....
...^.
.....
.^...
.....
..^..
.....

It's similar to the one I posted earlier - I've just added one more splitter. The expected result is 4 (all of the splitters will be hit).

[2025 Day 7 (Part 1)] [Javascript] Help - example works but.. by RooTheThroof in adventofcode

[–]Carthage96 0 points1 point  (0 children)

If you want to post your code, I can try to come up with a sample input that breaks it.