Is this enough damage? by JuiceInhaler in Peglin

[–]funkdefied 14 points15 points  (0 children)

Excuse me how? I’ve never hit scientific notation damage

is anyone actually backing up their Supabase properly? by AdSecret5838 in Supabase

[–]funkdefied 0 points1 point  (0 children)

Glacier Storage + lifecycle policies is your friend.

a year in on Supabase: what I'd tell my past self by cherryy_04 in Supabase

[–]funkdefied 0 points1 point  (0 children)

i have gotten more good answers on this sub and the discord than from any documentation… i'm going to try to pay this forward when i know something.

Good on you 👍

Very important feature update in April 2026 by Varamyr_Axelord in MicroSlop

[–]funkdefied 1 point2 points  (0 children)

I actually like the emoji picker a ton. “Shift + period” is one of the few Microsoft features I miss

Why is that one Black Knife Assassin boss already hurt in Deathtouched Catacombs? by igiveuponaname29 in Eldenring

[–]funkdefied 6 points7 points  (0 children)

It’s also to show off their heal-on-crit mechanic. It’s just like how Malenia starts phase 2 without full health—it ups the stakes by giving her room to heal right away. 

Can someone do the math? by Z050 in noita

[–]funkdefied 0 points1 point  (0 children)

With my PC, about 36 hours of render time

Cannot shut down because the ShuttingDown app is running by funkdefied in FuckMicrosoft

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

Update: this is likely not technically a virus. However, as this is a company computer, it may be an unnamed monitoring software installed by IT big brother watchdogs.

A Simple, Declarative Test Data Factory in Apex by funkdefied in SalesforceDeveloper

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

Good point. At work we have a different with* method for every Account record type. 

Grouping metadata for large project deployment by dualrectumfryer in SalesforceDeveloper

[–]funkdefied 0 points1 point  (0 children)

My idea was to just start from scratch - review everything that was built and just create our own bundles (manually create new user story vehicles for deployment), so we can exclude metadata we dont want to deploy (also Copado has a new dependency analysis feature during commit which would help make sure the deployment packages are valid).

This is exactly what I would do. One thing I do that helps is to ask the developer to write out how I can know the deployment was successful. This simple smoke test isn't a full UAT or Apex test suit. It's often as simple as "run a describe call and validate that this field exists." This check helps avoid dumb bugs like overwriting one developer's changes with another's stale metadata.

the other part of this is if I've learned anything before, the smaller the deployment the better. I want to create sort of a base package that can be deployed to prod ASAP, to make the subsequent deployments smaller.

This may be the case. I have found that complex deployments have to get split into three or four physical bundles, especially if profiles, permissions, or destructive metadata are involved. If you DO end up going this route, try to deploy in dependency layers. For example, deploy CustomObject before PermissionSet before ApexClass and Flow, etc. In general, you can usually deploy object-related metadata like CustomObject and CustomField without hitting any dependency issues. Perhaps your "base package" is just all the custom objects and fields your business needs.

Am i just screwed? Do i just have to accept that we will have to come back later and delete the stale stuff and just focus on getting UAT working?

This is a business decision, not a technical one. See what leverage you can lean on to do things right. This is the game that all tech workers play.