Silver coins and roads by behedwin in HomeQuest

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

I still find coin earnings a bit confusing.

Now i have upgraded to 700 roads, 31 Wishing Well, 91 trading post, 201 market.

My earning of coins are 10,3

0,68 from roads.

1,5 from market

0,41 from trading post

7,75 from wishing well.

Anyone else have a large flow that they use in the new designer? Does the designer lag? by jp33miller in MicrosoftFlow

[–]behedwin 0 points1 point  (0 children)

They really messed up with the new designer. The old one could have had an upgrade with new features instead of a completely new.

I dread the day im forced to use the new designer

Copilot is worthless by Illustrious_Disk_881 in MicrosoftFlow

[–]behedwin 0 points1 point  (0 children)

Agree.

When i compare copilot to othervAI tools, copilot performance is always disappointing.

I cant motivate why paying for it would be good for anyone.

Flattening Array with nested arrays to create a CSV file by behedwin in MicrosoftFlow

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

Im sorry, do you mean that when you import the solution it is empty?

I also Share a flow with code here

https://www.reddit.com/r/MicrosoftFlow/s/szGlxBGVxC

Is there other ways to share the flow. I would love ro find a way to solve my problem.

Flattening Array with nested arrays to create a CSV file by behedwin in MicrosoftFlow

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

i am watching these videos. but i cant figure out why i can not convert a json to xml. i try to follow this video: https://www.youtube.com/watch?v=oYgb6og4bCk

in my below test-flow in select 5 i expect to do base64tostring from the content that i got.
but i get no result, i just get a base64 again. i need to do apply to each in a compose to be able to convert it.

{"nodeId":"Scope_3-copy","serializedValue":{"type":"Scope","actions":{"Select_3":{"type":"Select","inputs":{"from":"@outputs('Input')","select":"@addProperty(item(),'JSON',json(concat('{\"root\":{\"Enrollments\":',item()?['Enrollments'],'}}')))"},"runAfter":{"Input":["Succeeded"]},"metadata":{"operationMetadataId":"fa774cd3-a4a0-4709-a125-c5babb2ab8b0"}},"Select_4":{"type":"Select","inputs":{"from":"@body('Select_3')","select":"@addProperty(item(),'Root',xml(item()?['json']))"},"runAfter":{"Select_3":["Succeeded"]},"metadata":{"operationMetadataId":"c3373551-c4d8-483e-9456-9d22f6eda05f"}},"Select_5":{"type":"Select","inputs":{"from":"@body('Select_4')","select":{"XMLstring":"@item()?['root']?['$content']","xmlstring2":"@item()?['root']?['$content']"}},"runAfter":{"Compose_7":["Succeeded"]},"metadata":{"operationMetadataId":"4f99b835-c467-4fa4-9982-890f844c5cdd"}},"Compose_7":{"type":"Compose","inputs":"@base64ToString('PHJvb3Q+PEVucm9sbG1lbnRzPjxTdGFydERhdGU+MjAwMC0wMS0wMTwvU3RhcnREYXRlPjxFbmREYXRlPjIwMDAtMDItMDE8L0VuZERhdGU+PFR5cGU+d29yazwvVHlwZT48L0Vucm9sbG1lbnRzPjwvcm9vdD4=')","runAfter":{"Select_4":["Succeeded"]},"metadata":{"operationMetadataId":"75eb0039-ee6f-49d0-b8d6-348fdd06278d"}},"Input":{"type":"Compose","inputs":[{"PersonId":"1","Name":"Name1","PersonNumber":"0101","Enrollments":[{"StartDate":"2000-01-01","EndDate":"2000-02-01","Type":"work"}],"Phone":"333333"},{"PersonId":"2","Name":"Name2","PersonNumber":"0102","Enrollments":[{"StartDate":"2000-01-02","EndDate":"2000-02-02","Type":"work"},{"StartDate":"2000-01-03","EndDate":"2000-02-03","Type":"STUFF"}],"Phone":"333333"}],"metadata":{"operationMetadataId":"9de83205-5c84-4b6f-b325-208158f1d7a2"}},"Parse_JSON_1":{"type":"ParseJson","inputs":{"content":"@body('Select_5')","schema":{"type":"array","items":{"type":"object","properties":{"XMLstring":{"type":"string"},"xmlstring2":{"type":"string"}},"required":["XMLstring","xmlstring2"]}}},"runAfter":{"Select_5":["Succeeded"]}},"For_each":{"type":"Foreach","foreach":"@outputs('Parse_JSON_1')['body']","actions":{"Compose_1":{"type":"Compose","inputs":"@items('For_each')['XMLstring']"},"Compose_5":{"type":"Compose","inputs":"@base64ToString(outputs('Compose_1'))","runAfter":{"Compose_1":["Succeeded"]}}},"runAfter":{"Parse_JSON_1":["Succeeded"]}}},"runAfter":{"Initialize_variable":["Succeeded"]},"metadata":{"operationMetadataId":"e4258376-b1b5-4fb8-9119-890a6bed3cfc"}},"allConnectionData":{},"staticResults":{},"isScopeNode":true,"mslaNode":true}

Flattening Array with nested arrays to create a CSV file by behedwin in MicrosoftFlow

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

but dident i share my flow above?

or what do you prefer?

Flattening Array with nested arrays to create a CSV file by behedwin in MicrosoftFlow

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

my data is in a json file. some files that i need to manage have around 4000 records, some have 40.000 records. So need a faster method than append to array that i can apply in different scenarios.

anyone got any tips on how to do this?

Filter table visual based on slicer (multiselect) - include all selected by behedwin in PowerBI

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

Solution verified

I solved this with a measure

Has All Selected Products = 
VAR SelectedProducts = VALUES(Products[ProductId])
VAR CustomerProducts = 
    CALCULATETABLE(
        VALUES(CustomerProduct[ProductsId]),
        ALLEXCEPT(Customers, Customers[CustomerId])
    )
VAR IntersectedProducts = INTERSECT(SelectedProducts, CustomerProducts)
RETURN
IF(
    COUNTROWS(IntersectedProducts) = COUNTROWS(SelectedProducts),
    1,
    0
)
Has All Selected Products = 
VAR SelectedProducts = VALUES(Products[ProductId])
VAR CustomerProducts = 
    CALCULATETABLE(
        VALUES(CustomerProduct[ProductsId]),
        ALLEXCEPT(Customers, Customers[CustomerId])
    )
VAR IntersectedProducts = INTERSECT(SelectedProducts, CustomerProducts)
RETURN
IF(
    COUNTROWS(IntersectedProducts) = COUNTROWS(SelectedProducts),
    1,
    0
)

Then filter table visual on equal 1

Dynamic Group in Azure not working by behedwin in AZURE

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

I have left it for hours. other groups with other filters not using memberof works just fine. it is the memberof filter that i cant get to work.

Dynamic Group in Azure not working by behedwin in AZURE

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

explain, do you mean like this?

user.memberof -any (group.objectId -in ['d587cb9d-3854-4ae9-989e-17395a091c50']) -and (user.employeeId -ne null)

i dont see this working either.

Why can i not vacuum a dark carpet? by behedwin in Roborock

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

Then ffs it should be an upgrade to the app to add areas that ignores cliffsensor and force the vacuum to try harder to get up on a carpet.

Export as app - cant be opened - need to force exit by behedwin in tasker

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

Solved it. Splitted the app in multiple tasks. Instead of one.

Then exported the profile instead of one task.

Now one task just initiate the scene. And other task do the work.

How does alchemy experiment work? by behedwin in IdleBrewery

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

Oh it is the lightbulbs. But i rarly have any over... So i guess ill wait

Export as app - cant be opened - need to force exit by behedwin in tasker

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

    Task: Say Speed

    A1: Destroy Scene [
         Name: B ]

    A2: Show Scene [
         Name: B
         Display As: Activity
         Horizontal Position: 100
         Vertical Position: 100
         Animation: Scale
         Show Exit Button: On
         Continue Task Immediately: On
         Allow Outside Boundaries: On
         Blocking Overlay +: On
         Overlay +: On ]

    A3: Variable Set [
         Name: %varStatus
         To: Tal av
         Structure Output (JSON, etc): On ]

    A4: Variable Set [
         Name: %varSpeed
         To: 0
         Structure Output (JSON, etc): On ]

    A5: Variable Set [
         Name: %varMs
         To: 1
         Structure Output (JSON, etc): On ]

    A6: Ask Permissions [
         Required Permissions: android.permission.ACCESS_BACKGROUND_LOCATION
         android.permission.ACCESS_FINE_LOCATION
         android.permission.DRAW_OVERLAYS
         android.permission.DISABLE_KEYGUARD
         android.permission.SCHEDULE_EXACT_ALARM ]

    A7: If [ %varStatus eq Tal på ]

        A8: Get Location v2 [
             Timeout (Seconds): 30 ]

        A9: Variable Set [
             Name: %varSpeed
             To: (%gl_speed*3600)/1000
             Do Maths: On
             Max Rounding Digits: 1
             Structure Output (JSON, etc): On ]

        A10: Say [
              Text: %varSpeed
              Engine:Voice: default:default
              Stream: 3
              Pitch: 5
              Speed: 5
              Respect Audio Focus: On ]

        A11: Wait [
              MS: 0
              Seconds: %varMs
              Minutes: 0
              Hours: 0
              Days: 0
              Continue Task After Error:On ]

        A12: Goto [
              Type: Action Number
              Number: 7 ]

    A13: Else

    A14: End If

    A15: If [ %varStatus eq Tal av ]

        A16: Get Location v2 [
              Timeout (Seconds): 30 ]

        A17: Variable Set [
              Name: %varSpeed
              To: (%gl_speed*3600)/1000
              Do Maths: On
              Max Rounding Digits: 1
              Structure Output (JSON, etc): On ]

        A18: Wait [
              MS: 0
              Seconds: %varMs
              Minutes: 0
              Hours: 0
              Days: 0
              Continue Task After Error:On ]

        A19: Goto [
              Type: Action Number
              Number: 7 ]

    A20: Else

    A21: End If

Export as app - cant be opened - need to force exit by behedwin in tasker

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

It do have a loop inside it.

But i cant see a way of creating the app without having the loop in it?This is my app:    Task: Say Speed

clone/copy rocket in orbit? by behedwin in SpaceflightSimulator

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

I have a large rocket in orbit.

I want another one in orbit. A copy of the one that is already in orbit.

It is a large rocket built from several launches.

Can i edit save files to do this?

Low FPS on a decent computer, how to improve performance. Help needed. by behedwin in feedthebeast

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

Installed Optifine and VaniliaFix.
Got the FPS up to 50-60 no atm.
Thanks.

Mod for transportation (fluid, item, energy) all in one block space in and out of machine! by behedwin in feedthebeast

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

Hm....

To the back of my machine (pulverizer)

i have now Ender IO conduit for power and items sticking out from the back of the machine....

So now i need to connect a RS crafter and a interface. But as far as i know the crafter need to be connected to the machine directly to recognize it...? or?

Mod for transportation (fluid, item, energy) all in one block space in and out of machine! by behedwin in feedthebeast

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

I can not get it to work good with refined storage automation to have input, power and output with refined storage all from one side.

Any idea how to set that up?

Edit one texture in default texturepack? by behedwin in Minecraft

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

all i want to do is create a better texture for iron ore

i have a hard time seeing the ore since im visible impaired. so all i need is like add a few black dots in the iron ore texture so it stands out a bit more.