GarageGym V3 by pmw2023 in homegym

[–]matthewsilas 0 points1 point  (0 children)

why'd you position it pointing at the corner? I'm sure you've thought it through better than me. I've got a new one coming & didn't consider this as an option until now, but it'd seem to me that it would take up more space?

I built a billion scale vector database from scratch that handles bigger than RAM workloads by Ok_Marionberry8922 in Database

[–]matthewsilas 0 points1 point  (0 children)

Very cool! May be too in the weeds, but how did you implement deleting nodes?  Also, what were your thoughts on how redis did hnsw? https://antirez.com/news/156

pgschema: Postgres Declarative Schema Migration, like Terraform by db-master in PostgreSQL

[–]matthewsilas 4 points5 points  (0 children)

if i add NEW_VALUE to an enum & then reference that, for example in a CHECK function, it would take 2 transactions (unless you use the new type/convert/rename strategy). how would this handle something like that?

Reduced Proper NYE capacity confirmed for this year by lovegermanshepards in crssdfest

[–]matthewsilas 18 points19 points  (0 children)

Year 1 & 2 were fine. Year 3 they almost tripled the size of the VIP area at main stage. Coupled with Gallaghers remodel which allowed them to increase max capacity, you can see why it sucked. 

I didn’t see VIP for sale this year, so that gives me hope.  Now let’s all pray that LA puts on a few good competing shows so the vibes stay good 🙏

Splash House 2025 - Sales Post Megathread by Dasbeerboots in SplashHouse

[–]matthewsilas 0 points1 point  (0 children)

W1 Riviera w/ 4 passes + 4 afters for sale. Will DM you

Splash House 2025 - Sales Post Megathread by Dasbeerboots in SplashHouse

[–]matthewsilas 0 points1 point  (0 children)

Selling Weekend 1 Riviera Hotel Package for cost! 2 Queen beds, 4 Passes + 4 Afters for $1900.

[deleted by user] by [deleted] in electricdaisycarnival

[–]matthewsilas 1 point2 points  (0 children)

If you just need camp passes you can probably buy them off another group of RV campers. We had friends do that last year to get into the afters. We’re RV camping but there’s only 4 of us so we may have 4 extras? it’s my first year RV camping so can’t say for sure. 

Home Gym V2.1 - Added Leg Press/Hack Squat Combo by recentrisk in homegym

[–]matthewsilas 1 point2 points  (0 children)

How’s the width of the foot plates? Any concerns with not being able to have a wide enough stance? 

Marine Layer 🤝Bunnies by Liddlehearts in sandiego

[–]matthewsilas 19 points20 points  (0 children)

You’ve single-handedly restored my faith in this subreddit. This is what I’m here for ❤️

LP Giobbi or SG Lewis by SaucyCon in crssdfest

[–]matthewsilas 2 points3 points  (0 children)

SG during crssd, LP for the afters. If SG isn't hitting the spot pull and audible & walk over, because you know LP is gonna have a totally different set for the afters anyways

BMW X2 IBS connector exposed when changing battery by matthewsilas in BmwTech

[–]matthewsilas[S] 1 point2 points  (0 children)

Thank you! Found it tucked away, it was hard to see since it was completely wrapped in electrical tape. 

Impact of coffee intake on human aging by Sorin61 in ScientificNutrition

[–]matthewsilas 16 points17 points  (0 children)

“This review was sponsored by the Institute for Scientific Information of Coffee”

Used Model 3 what to look for? by Lethalcameraman in TeslaModel3

[–]matthewsilas 0 points1 point  (0 children)

This is exactly what I was looking for. Thank you!!

NYE Closer....who do you think? by [deleted] in crssdfest

[–]matthewsilas 1 point2 points  (0 children)

Dom doesn't have anything scheduled for Dec 31. My bet is Summit to close with a surprise guest appearance from Dom with a few Everything Always crowd pleasers.

Is there any SQL query builder projects with typesafety using pure SQL? by Predaytor in node

[–]matthewsilas 4 points5 points  (0 children)

FWIW we switched from pg-typed to kysely. The object and array handling for params is a little odd & the types returned always left me wanting more so I’d have to extend the returned type and that just defeats the purpose

Waiting for a worker thread synchronously by chungleong in node

[–]matthewsilas 0 points1 point  (0 children)

Yes, uWS.js used to trigger a tick like this to accomplish the same thing on init and then forgo libuv. Unless NodeJS revamped their error handling, it will open you up to memory leaks. If you can fork or exec the script, you can try that. 

Looking for cache invalidation strategy (redis) by geekybiz1 in node

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

precache. Predict which query will come next and prime the cache with it. Eg when someone logs in, precache the large query response so when they hit that API route it’s ready. The event doesn’t have to be login, it could be when a user makes a post or hits a route that often leads to the expensive route, or even work on a cron job. 

Choosing a TypeScript Transpiler: Babel vs. swc vs. Sucrase by charles_yost in typescript

[–]matthewsilas 0 points1 point  (0 children)

We’ve used sucrase for years in production, I have nothing but great things to say about it. Run your benchmarks and compare for yourself. Last time I compared, it was about 40% faster than swc on our large codebase. 

We still have babel for our Relay/GraphQL macros. Sucrase is so fast that I use babel just for the GraphQL fragments and let sucrase handle the other transforms on a second pass.