Skip to content

Commit 03d384e

Browse files
committed
SEO updates, new api for tags
1 parent 942a046 commit 03d384e

13 files changed

+80
-22
lines changed

_drafts/back-up-with-borgbase.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: Backing up your server with Borgbase
3+
description:
4+
categories: []
5+
tags: []
6+
---
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: Find your phone with Home Assistant
3+
description: Find your phone with Home Assistant, just like Google's "Find My Phone" but without Google.
4+
categories: [Flows,Home Assistant]
5+
tags: [home-assistant,flow,helpful,tools]
6+
---
7+
8+
My wife is always asking me "have you seen my phone?". Now we both have Google Android phones so I am able to open a incognito window, have her log into her Google account, bring up the "find my phone" page, click on "find my phone", and then walk around listening for it ringing. This whole process can take some time and so it got me thinking, "I bet Home Assistant can help find a lost phone."
9+
10+
Since we both have the [Home Assistant companion app]() installed on our phones, Home Assistant can easily track its location. Even more is it can make it ring just like Google can. So I came up with a automation in Home Assistant that allows me to ask Home Assistant where a phone is at and it will not only make it ring, but also give me it's exact location.
11+
12+
## Overview
13+
14+
This automation make use of the Home Assistant companion app so make sure it is installed on each phone you want to track. Also be sure to give it permissons
15+
16+
## Trigger
17+
18+
## Actions
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "5 Automations I Run That Save Me Time Every Week"
3+
description: "Five simple, real-world automations I personally use at work and at home that quietly save time every week by reducing manual effort and mental overhead."
4+
categories: [Automation, Productivity]
5+
tags: [automation, power-automate, n8n, node-red, productivity, workflows, it admin]
6+
---
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "How to Spot Automation That Will Become Technical Debt"
3+
description: "Learn the warning signs that an automation is quietly becoming technical debt, why it happens, and how to fix it before it turns into a long-term maintenance problem."
4+
categories: [Automation, Architecture]
5+
tags: [automation, technical-debt, power-automate, system-design, it-architecture, maintainability]
6+
---
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Create a Todoist chatbot with n8n using AI and a MCP server
3+
description: Use n8n to create a MCP server for your Todoist tasks and then talk to it with AI Agents
4+
categories: [AI,n8n]
5+
tags: [ai,n8n,todoist,mcp-server,ai-agent]
6+
---
7+
8+
I love using Todoist. It's very much a part of my daily workflow and serves as my second brain when it comes to remembering all my tasks. I even wrote a PowerShell script to sync meetings from Outlook to Todist so I don't schedule tasks for the same time I have meetings. You can check out that PowerShell script in my post [Streamlining Task Management with Todoist and Outlook]({% link _posts/2025-10-11-task-management-with-todoist-and-outlook.md %})
9+
10+

_layouts/custom/tags.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: none
3+
---
4+
[
5+
{% for tag in site.tags %}
6+
"{{ tag[0] }}"{% unless forloop.last %},{% endunless %}
7+
{% endfor %}
8+
]

_posts/2025-06-12-sharepoint-security-groups-vs-microsoft-security-groups.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ date: 2025-06-12
55
image: https://images.unsplash.com/photo-1609770231080-e321deccc34c?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wxMTc3M3wwfDF8c2VhcmNofDEwfHxzZWN1cml0eXxlbnwwfHx8fDE3NDYyMTY3MzF8MA&ixlib=rb-4.0.3&q=80&w=2000
66
description: Understanding the difference between SharePoint Security Groups and Microsoft Security Groups is essential. While both help control who can access what, they serve very different roles.
77
slug: sharepoint-security-groups-vs-microsoft-security-groups
8-
categories: [Microsoft,SharePoint]
9-
tags: [security,groups,permissions]
8+
categories: [Platform Deep Dives,Microsoft 365]
9+
tags: [security,groups,permissions,microsoft-365]
1010
---
1111

1212
## What Are SharePoint Security Groups?
@@ -40,15 +40,15 @@ You can use Microsoft Security Groups to control access to:
4040
## Comparison Table
4141
<!--kg-card-begin: html-->
4242

43-
| Feature | SharePoint Security Groups | Microsoft Security Groups |
44-
| --- | --- | --- |
45-
| **Scope** | Single SharePoint site | Microsoft 365-wide |
46-
| **Managed In** | SharePoint UI | Entra ID |
47-
| **Membership Types** | Users, M365 Groups | Users, Devices (Static or Dynamic) |
48-
| **Best For** | Site-specific permissions | Org-wide or multi-site roles |
49-
| **Custom Roles** | Yes (via SharePoint permissions) | No (mapped roles needed in SharePoint) |
50-
| **Supports Nested Groups** | Partial | Yes |
51-
| **Self-Service** | Yes (by site owners) | No (usually IT-managed) |
43+
| Feature | SharePoint Security Groups | Microsoft Security Groups |
44+
| -------------------------- | -------------------------------- | -------------------------------------- |
45+
| **Scope** | Single SharePoint site | Microsoft 365-wide |
46+
| **Managed In** | SharePoint UI | Entra ID |
47+
| **Membership Types** | Users, M365 Groups | Users, Devices (Static or Dynamic) |
48+
| **Best For** | Site-specific permissions | Org-wide or multi-site roles |
49+
| **Custom Roles** | Yes (via SharePoint permissions) | No (mapped roles needed in SharePoint) |
50+
| **Supports Nested Groups** | Partial | Yes |
51+
| **Self-Service** | Yes (by site owners) | No (usually IT-managed) |
5252

5353
<!--kg-card-end: html-->
5454
* * *

_posts/2025-10-11-task-management-with-todoist-and-outlook.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Streamlining Task Management with Todoist and Outlook
33
description: How I use Todoist, Outlook, and a little bit of PowerShell to get all my meetings into Todoist.
44
image: https://images.unsplash.com/photo-1649433391719-2e784576d044?q=80&w=1471&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D
5-
categories: [Automation]
6-
tags: [todoist,powershell,outlook,productivity]
5+
categories: [Tools & Tutorials, PowerShell & Scripts]
6+
tags: [todoist,powershell,outlook,productivity,automation]
77
---
88

99
I have been using Todoist to manage all my day-to-day tasks and meetings. It's an integral part of my routine, and to maximize its utility, I've been incorporating all my calendar events and meetings into it. Like many people, I use a Google calendar for personal and family events and an Outlook calendar for work-related events. While Google calendar easily syncs with Todoist, the challenge arose when I wanted to sync my Outlook calendar with Todoist, as it only allows syncing with one calendar at a time. Some workarounds involve subscribing to different calendars within one platform, but this wasn't an ideal solution for me.

_posts/2025-10-26-microsoft-planner.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: Microsoft Planner
2+
title: Why I Switched to Microsoft Planner for Team Productivity
33
description: If you’ve ever felt overwhelmed keeping track of tasks across multiple projects, Microsoft Planner might just be the tool you didn’t know you needed. Here’s why I’ve started using it and how it keeps my team organized.
44
image: /assets/img/ms-planner-01.png
55
date: 2025-11-09 17:08:54
6-
categories: ["Microsoft","Planner"]
7-
tags: ["productivity"]
6+
categories: [Platform Deep Dives, Microsoft 365]
7+
tags: [microsoft-planner,productivity,microsoft-365]
88
---
99

1010
# How Microsoft Planner Changed the Way I Manage Tasks

_posts/2025-11-11-find-guest-accounts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ layout: post
33
title: "Finding guest accounts in your SharePoint site"
44
date: 2025-11-11 17:03:03
55
permalink: "flows/:title"
6-
categories: [Automation, Power Automate]
7-
tags: [automation, power-automate, flow]
6+
categories: [Automation, Enterprise]
7+
tags: [automation, power-automate, flow,microsoft-365,sharepoint]
88
toc: true
99
cup_level: 2
1010
description: Using Power Automate to quickly find guest accounts that have access to your SharePoint site

0 commit comments

Comments
 (0)