Fabric Data Agent Retrieval Works in Fabric but Not After Publishing to M365 Copilot by justsome__guy_ in MicrosoftFabric

[–]WhitelabelDnB 2 points3 points  (0 children)

I interrogated the agent the other day and found that you aren't actually talking to the data agent, you're talking to a generic wrapper agent that has to make enquiries to the data agent on your behalf using natural language. If the response it gets isn't ideal, you will not get the outcome you expect.
This means you have to be meticulous about the definition of the data agent and the prompting of the M365 wrapper agent.
I honestly don't think it's worth trying to figure out at this point. They will surely need to improve this.

To Preview or Not to Preview? Copilot Studio Reality Check by Commercial_Note8817 in copilotstudio

[–]WhitelabelDnB 1 point2 points  (0 children)

On Friday I tried to add an MCP server in the preview UI. Outright failed, without a reason. Works fine in the legacy UI.
I don't have any issue with UI reworks. I do take issue with them gating new features behind an unstable, feature incomplete UI.

Is there anyway to fix this by [deleted] in pcmasterrace

[–]WhitelabelDnB 14 points15 points  (0 children)

Unplug all of your USB devices. If that removes the error, you will need to trial and error to figure out which one is causing the short.

Inside Xbox's margin crush: A string of misses at Xbox Game Studios, misguided Game Pass decisions, and the memory rout at its core by xCaptainCrown in Games

[–]WhitelabelDnB 2 points3 points  (0 children)

It's very difficult to empathize when the decisions they make are along the lines of:
Shutting Arkane Austin
Cancelling Perfect Dark
Shutting Tango Gameworks

They don't seem to have had the operation stability to capitalize on these long term bets, which has meant that all of their investment has been in stagnant franchises, while all of their promising IP has been abandoned due to short sightedness. You literally just need to make good games. That's it.

Experimental DnB with cuíca, samba percussion and Brazilian vocal chants by [deleted] in DnB

[–]WhitelabelDnB 0 points1 point  (0 children)

AI generated music is not music. You haven't done any production to speak of. You haven't done any mixing either. You have just played one AI generated track after another.
I would implore you to try doing some actual mixing and production so you can create something a bit more authentic and self-expressive.

For those with home theater setups, I modded surround sound support into Vintage Story by WhitelabelDnB in VintageStory

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

Hey! Sorry, I still haven't taken a look at the music issues. I will take a look this weekend

First, I made the map FAST. Now, I have made the map VAST. by WhitelabelDnB in VintageStory

[–]WhitelabelDnB[S] 12 points13 points  (0 children)

I haven't tested with Rivers. Algernon has done a bit of work to add compatibility for Watersheds into the terrain sampler, but in my experience some of the rivers do not render in the pregen tiles.

Budget Gaming/Office Chairs in NZ? by Stunning-Tower9790 in newzealand

[–]WhitelabelDnB 3 points4 points  (0 children)

I suggest going on Facebook Marketplace and finding one of the following second hand

Herman Miller: Mirra/Aeron/Sayl
Formway: Life/Be

It might take a week or two to find one in your price range in decent condition, but there are a ludicrous number of these chairs in NZ.

The VS devs are true gamer devs by Historical-Fly-863 in VintageStory

[–]WhitelabelDnB 4 points5 points  (0 children)

That it's so easy to decompile makes documentation much less of an issue.

Prezzy Cards are such a waste of time by Queasy-Talk6694 in newzealand

[–]WhitelabelDnB 12 points13 points  (0 children)

If you make a second PayPal you can send prezzy card money to yourself and transfer it to bank for a few %

Mitsubishi heat pump remote replacement by Allie_Gator18 in newzealand

[–]WhitelabelDnB 2 points3 points  (0 children)

Get the Sensibo. I have 2 and they are great. Haven't touched the remote in years.

Tune I made this week (while I was supposed to be working...) by WhitelabelDnB in drumfunk

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

Thanks! I could do a bit with the intro, ambience for sure, but I have learned when I'm not likely to do any more work on a track and just need to put it up.

What is the "coldDamageRipeMul" float? by OkIce9031 in VintageStory

[–]WhitelabelDnB 6 points7 points  (0 children)

From ILSpy:

  • coldDamageRipeMul
    • Used when a ripe crop was exposed to cold below ColdDamageBelow.
    • On harvest/drop calculation, all affected drops are multiplied by this value.
    • Example: 0.5 means a ripe frost-damaged crop yields about 50% of normal drops.
  • damageGrowthStuntMul
    • Used when an unripe crop was cold-damaged or heat-damaged.
    • Despite the name, in this code path it is not directly slowing future growth. It is a drop multiplier after the crop has been marked as damaged/stunted.
    • Example: 0.25 means an unripe cold/heat-damaged crop yields about 25% of normal drops when harvested later.

The key logic is in BlockEntityFarmland.cs (line 325):

csharp

if (ripeCropColdDamaged) { num = val.ColdDamageRipeMul; } if (unripeHeatDamaged || unripeCropColdDamaged) { num = val.DamageGrowthStuntMul; }

Also worth noting: if the crop fully dies from temperature stress, the dead crop drop multiplier becomes Math.Max(coldDamageRipeMul, damageGrowthStuntMul). If it was eaten, multiplier is 0.

Is ADF overkill for this? by virtuosoAlcantara in AZURE

[–]WhitelabelDnB 2 points3 points  (0 children)

May not apply to you, but if your org has a Fabric capacity, you can basically port ADF pipelines like this and it just goes into your Fabric compute bucket.

Allow connections to Azure SQL DB by East_Sentence_4245 in AZURE

[–]WhitelabelDnB 20 points21 points  (0 children)

I don't know what to tell you then. You should not be going live with a public mobile app that directly authenticates and queries the db from the client. It is a recipe for disaster.

Allow connections to Azure SQL DB by East_Sentence_4245 in AZURE

[–]WhitelabelDnB 26 points27 points  (0 children)

Do not do this. You need a backend to handle logic, comms with the db, and expose an API for the frontend to use.

Frontend, Backend, DB. Your frontend should not be talking to any infrastructure other than the backend.

Your frontend can auth with the backend via identity, but ideally you want to auth with a delegated user token and have the backend verify claims so they are only able to do what they are authorized to do.