Troy Taylor's Avatar

Troy Taylor

@troystaylor.com.bsky.social

219 Followers  |  95 Following  |  12 Posts  |  Joined: 16.07.2023  |  1.8866

Latest posts by troystaylor.com on Bluesky

Better yet, okay is usually pleasant.

08.08.2025 16:14 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

That’s an old blog post. I would start with the current YAML file (github.com/XeroAPI/Xero...), downgrade it to Swagger with APIMatic’s API Transformer and manually correct what doesn’t work in Swagger. It will take some time to get it working, especially with all the examples and Xero fields.

01.08.2025 00:18 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Preview: PAC CLI ships with local MCP server Β· microsoft powerplatform-build-tools Β· Discussion #1182 Latest PAC CLI tool (1.44 .Net 8 version) ships with local MCP server. Here is how to add it: Adding an MCP server The executable name is pac-mcp.exe and usually located at C:\Users\*user alias*\.d...

Go try out pac CLI as a local MCP server: github.com/microsoft/po...

30.06.2025 02:41 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image Post image Post image Post image

My husband and I run a game store and after all the tariff announcements, he decided to write out kind of a "behind the scenes" of how we spend and spill it out for people who don't understand. He's had so many reactions and shares I wanted to bring it here, too.

04.04.2025 12:07 β€” πŸ‘ 3154    πŸ” 1149    πŸ’¬ 83    πŸ“Œ 78

Put this on a yard sign and I (and thousands others) would buy one

08.03.2025 03:11 β€” πŸ‘ 13    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

You should send an email to the flow DL and CC: Shefaali Patankar

05.03.2025 00:26 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Ooh, who made the certification pins? Those are very nice.

23.12.2024 17:10 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Thanks for having me, Vesa and @davidwarnerii.bsky.social!

20.12.2024 12:20 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

πŸ“† Agenda for the #Microsoft365dev & #PowerPlatform call 17th of December

β€’ The latest news
β€’ Demos this time on #MicrosoftTeams, #Copilot & Connectors
​‒ Presented by John Miller, Eric Scherlinger, Shefaali Patankar & Sabin Nair

πŸ‘‹ Join the call β†’ https://aka.ms/community/ms-speakers-call-invite

15.12.2024 13:15 β€” πŸ‘ 3    πŸ” 3    πŸ’¬ 0    πŸ“Œ 0

Just registered for Microsoft MVP Summit next March in Redmond - which friends am I going to see there? #mvpbuzz

03.12.2024 16:37 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

I now want animal flags on all meatballs

22.11.2024 21:18 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
import json

def count_objects(data):
    count = 0
    if isinstance(data, dict):
        count += 1  # Count the current dictionary
        count += len(data)  # Count the keys in the current dictionary
        for key, value in data.items():
            count += count_objects(value)
    elif isinstance(data, list):
        for item in data:
            count += count_objects(item)
    return count

with open('swagger.json', 'r') as file:
    json_data = json.load(file)

total_objects = count_objects(json_data)

print(f'Total number of objects and keys in paths: {total_objects}')

import json def count_objects(data): count = 0 if isinstance(data, dict): count += 1 # Count the current dictionary count += len(data) # Count the keys in the current dictionary for key, value in data.items(): count += count_objects(value) elif isinstance(data, list): for item in data: count += count_objects(item) return count with open('swagger.json', 'r') as file: json_data = json.load(file) total_objects = count_objects(json_data) print(f'Total number of objects and keys in paths: {total_objects}')

I've been building a Power Platform connector with large response objects (more than the 512-object allowed by Swagger). The easiest way I've found to count the number of objects (object and keys) is to use python with the snippet below. Does anyone have an easier way or a tool they use?

22.11.2024 19:44 β€” πŸ‘ 3    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

πŸ‘‹

21.11.2024 21:35 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Dan has submitted the proposals and is making good progress on them. I have connectors in-progress, too, so let me know if I can help.

14.11.2024 10:21 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

@troystaylor.com is following 20 prominent accounts