Advertisement · 728 × 90

Posts by Troy Taylor

Three-prong OAuth?

4 weeks ago 0 1 0 0

Have you looked at Gumroad or Lemon Squeezy?

1 month ago 0 0 1 0

Maybe this is a community opportunity

2 months ago 2 0 0 0

Proton

6 months ago 1 0 0 0
Preview
Fat Bear Week is here early, and the bears are fat and playful The famous bears of Alaska's Katmai National Park are enjoying an abundance of salmon, and even some playtime, as they pack on pounds to prepare for the winter.

The famous bears of Alaska's Katmai National Park are enjoying an abundance of salmon, and even some playtime, as they pack on pounds to prepare for the winter.

6 months ago 641 143 10 47

Better yet, okay is usually pleasant.

8 months ago 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.

8 months ago 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...

9 months ago 1 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.

1 year ago 3127 1140 82 77
Advertisement

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

1 year ago 13 0 1 0

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

1 year ago 0 0 1 0

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

1 year ago 1 0 1 0

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

1 year ago 3 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

1 year ago 3 3 0 0

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

1 year ago 3 0 1 0

I now want animal flags on all meatballs

1 year ago 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?

1 year ago 4 0 1 0
Advertisement

👋

1 year ago 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.

1 year ago 1 0 0 0