Resumos de Estudo criados com IA
-
Building a 360° Video WebPart in SharePoint Online with A-Frame
Interactive 360° videos are increasingly popular for training, product demos, and immersive experiences. In this article, we will create a SharePoint Framework (SPFx) WebPart that uses A-Frame — a powerful WebXR framework — to embed 360° video playback directly inside… Continue reading
-
Building a Simple Analog Audio Amplifier
Building a Simple Analog Audio Amplifier Designing and building a simple analog audio amplifier is one of the best entry-level projects in electronics. The goal is to take a weak signal, such as from a microphone, a guitar pickup, or… Continue reading
-
Understanding ATX Power Supply Pinout and Specifications
The ATX (Advanced Technology eXtended) power supply standard, introduced by Intel in 1995, defines both the physical layout of power supplies and the electrical specifications required for personal computers. One of its most important aspects is the connector pinout, which… Continue reading
-
Understanding ATX Power Supply Pinout and Specifications
The ATX (Advanced Technology eXtended) power supply standard, originally developed by Intel in 1995, defines not only the form factor of PC power supplies but also the electrical characteristics and connector pinouts used to deliver stable power to computer components.… Continue reading
-
Using Calculated Fields with the SharePoint REST API
Calculated columns in SharePoint are extremely useful for deriving values from other fields (e.g., [StartDate] + 7 or concatenating text).When building custom integrations with the SharePoint REST API, developers often ask: can I query, filter, or update calculated fields?This article… Continue reading
-
Exporting Directory and File Listings to CSV in C#
When dealing with large directory structures, printing results to the console is not enough. Exporting the file tree to a CSV file allows you to analyze it in Excel, Power BI, or any reporting tool. Exporting Directory and File Listings… Continue reading
-
Recursive Directory and File Listing in C#
Sometimes you need more than just listing files and folders from a single directory. You may want to scan all subdirectories recursively and show the complete structure. In .NET, this can be done easily with the System.IO namespace. Recursive Directory… Continue reading
-
Listing Directories in C# Using System.IO
When working with file systems in .NET, one of the most common tasks is to list directories inside a given folder. The System.IO namespace provides everything you need to achieve this in a simple and reliable way. Listing Directories in… Continue reading
-
Part 5: Accessing Modular PnP Templates in Blob Storage via Power Automate
Great 👍 let’s continue the series with Part 5: using Power Automate to connect directly to Azure Blob Storage, so you can fetch, list, or download your modular PnP XML templates without involving the Function. So far: Now let’s integrate… Continue reading
-
Part 4: Using Managed Identity for SharePoint and Blob Storage in Azure Functions
So far in this series: Now let’s take the final step toward a cloud-native and secure architecture by replacing client secrets and hardcoded credentials with Managed Identity. Part 4: Using Managed Identity for SharePoint and Blob Storage in Azure Functions… Continue reading
-
Part 3: Storing SharePoint PnP Templates in Azure Blob Storage
In Part 1 we modularized PnP templates into multiple XML files.In Part 2 we wrapped the process in an Azure Function for automation. Now we’ll make the system cloud-native by replacing local storage (c:\pnp) with Azure Blob Storage. Part 3:… Continue reading
-
Automating Modular SharePoint Provisioning with Azure Functions
In the first part we saw how to export and import a SharePoint site template in a modular way using PnP Framework, splitting it into multiple XML files (Fields.xml, List_*.xml, Navigation.xml etc.). Now let’s see how to wrap this process… Continue reading
-
Modular Export and Import of SharePoint Templates with PnP
When working with SharePoint provisioning, exporting a site template often results in a large, monolithic XML file containing everything: lists, fields, navigation, pages, features, etc. Modular Export and Import of SharePoint Templates with PnP When working with SharePoint provisioning, exporting… Continue reading
-
Applying a PnP Provisioning Template from Local Disk to SharePoint Online (C#)
Provisioning templates are a powerful way to replicate SharePoint site structures. With the PnP Framework, you can capture a template from one site and reapply it to others. Applying a PnP Provisioning Template from Local Disk to SharePoint Online (C#)… Continue reading
-
Exporting SharePoint Templates with PnP Framework and MSAL (C# Console App)
In SharePoint Online projects, provisioning templates are a powerful way to capture site structures (lists, fields, content types, navigation, etc.) and reapply them to new sites. Exporting SharePoint Templates with PnP Framework and MSAL (C# Console App) In SharePoint Online… Continue reading
-
How to Create an Azure Function and Call It from Power Automate
When you need to integrate SharePoint, Power Automate, or other systems with small pieces of custom logic, Azure Functions are a perfect fit. They allow you to run lightweight code in the cloud, triggered by events such as HTTP requests.… Continue reading
-
From Console App to Azure Function: How to Expose Your Code to Power Automate
When you already have a C# console application that solves a problem, but you need to expose it to automation platforms like Power Automate, the best solution is to transform it into an Azure Function. With this approach, your existing… Continue reading
-
Accessing the TP-Link Tapo C40 Camera via RTSP with Authentication
Network cameras such as the TP-Link Tapo C40 are increasingly used for home surveillance, IoT integration, and edge AI processing. While the Tapo ecosystem provides a cloud-based mobile app, professionals and system integrators often need direct access to the video… Continue reading
-
Semiotics and Umberto Eco: Understanding the Science of Signs
Semiotics is the study of signs, symbols, and their role in communication. It provides a theoretical framework to analyze how meaning is produced, transmitted, and interpreted in different contexts—from literature and media to advertising, architecture, and digital technologies Semiotics and… Continue reading
-
Basic Statistics to Bayes: a really simple step-by-step (with SVG formulas)
Basic Statistics to Bayes: a really simple step-by-step (with SVG formulas) All mathematical expressions below are rendered as SVG images (via CodeCogs) so they work in any WordPress without plugins. Step 1 — Population, sample, and variable Population: the full… Continue reading
-
Estatística Básica até Bayes: um passo a passo realmente simples (com fórmulas em SVG)
Estatística Básica até Bayes: um passo a passo realmente simples (com fórmulas em SVG) Todas as expressões matemáticas abaixo são renderizadas como imagens SVG (via CodeCogs) para funcionar em qualquer WordPress sem plugins. Passo 1 — População, amostra e variável… Continue reading
-
Simple Bayesian Analysis — Technical Guide (SVG Equations)
Simple Bayesian Analysis — Technical Guide (SVG Equations) All mathematical expressions below are rendered as SVG images for perfect rendering in WordPress without plugins. The Core Idea Bayesian analysis updates a prior belief using new evidence to produce a posterior… Continue reading
-
📎 C# Console App: Attach a File to a SharePoint List Item via REST + MSAL (No SDK)
📎 C# Console App: Attach a File to a SharePoint List Item via REST + MSAL (No SDK) This guide walks you through building a .NET Console App that connects to SharePoint Online using MSAL (interactive authentication) and uploads a… Continue reading
-
C# Console App: Connect to SharePoint Online and Fetch List Item by Title Using MSAL + REST (No SDKs)
🔐 C# Console App: Connect to SharePoint Online and Fetch List Item by Title Using MSAL + REST (No SDKs) This guide walks you through building a .NET console app that: ✅ Authenticates with Azure AD (Entra ID) using MSAL… Continue reading
-
Connect & Query SharePoint Online from C# (.NET) with Interactive Login
Connect & Query SharePoint Online from C# (.NET) with Interactive Login — Get List Item by Title This post shows how to build a fresh, minimal .NET console app that: No SDK lock-in, no tenant names hardcoded. The scope is… Continue reading
-
Building a Minimal C# .NET Console App to Connect to SharePoint Online (Interactive Login + REST)
This article is your reusable base to start any SharePoint Online automation in C# with interactive MSAL authentication. It does one thing: sign you in and prove the connection by reading the site title via the SharePoint REST API. From… Continue reading
-
Authenticating to SharePoint Online Using MSAL and PnP.Core with Custom Token Injection
A complete guide on using Microsoft.Identity.Client (MSAL) with the PnP Core SDK, manually injecting tokens into SharePoint Online connections — all using clean dependency injection and external configurati 🔐 Authenticating to SharePoint Online Using MSAL and PnP.Core with Custom Token… Continue reading
-
Reading SharePoint Authentication Parameters from a JSON File in .NET with PnP Core SDK
📁 Reading SharePoint Authentication Parameters from a JSON File in .NET with PnP Core SDK Author: Edvaldo Guimarães\ Category: Microsoft 365 Development / C# / SharePoint\ Tags: .NET 6, PnP Core SDK, MSAL, SharePoint Online, Configuration 🧠 Introduction In this… Continue reading
-
🔧 Authenticating to SharePoint Online with PnP Core SDK and MSAL in .NET 6+
🔧 Authenticating to SharePoint Online with PnP Core SDK and MSAL in .NET 6+ Author: Edvaldo Guimarães\ Category: Microsoft 365 Development / C# / SharePoint\ Tags: .NET 6, PnP Core SDK, MSAL, SharePoint Online, Authentication 🧠 Introduction In this article,… Continue reading
-
🔐 Connecting to SharePoint Online Using PnP Core SDK and Interactive Login in .NET
🔐 Connecting to SharePoint Online Using PnP Core SDK and Interactive Login in .NET Author: Edvaldo Guimarães\ Category: Microsoft 365 Development / C# / SharePoint\ Tags: .NET 6, PnP Core SDK, MSAL, SharePoint Online, Authentication 🧠 Introduction In this article,… Continue reading
-
Building a Simple .NET Console App to List Recently Modified Files
In this article, we’ll walk through the creation of a simple yet practical .NET console application that lists all files modified in the last hour within a specified directory. This is a great starting point for developers who want to… Continue reading
-
Building a Simple C# CLI App to List Recently Updated Files
Introduction When you work with logs, documents, or any fast-changing directory, it’s often useful to quickly identify which files were updated in the last hour.Instead of manually sorting in Explorer, we can build a lightweight command-line app in C# that… Continue reading
-
How to Build an SPFx Web Part for 360° Image Viewing Using Photo Sphere Viewer v5
🌀 How to Build an SPFx Web Part for 360° Image Viewing Using Photo Sphere Viewer v5 In this tutorial, you’ll learn how to create a React-based SPFx Web Part that displays equirectangular 360° images in SharePoint Online using the… Continue reading
-
Como Criar uma Web Part SPFx para Visualização de Imagens 360° com Photo Sphere Viewer v5
Neste artigo, você aprenderá como criar uma Web Part SPFx com React para exibir imagens 360° equirectangulares em SharePoint Online, utilizando a biblioteca Photo Sphere Viewer (PSV) na versão v5+. 🌀 Como Criar uma Web Part SPFx para Visualização de… Continue reading
-
Hands-on: SPFx Web Part com Photo Sphere Viewer
1) Hands-on: SPFx Web Part com Photo Sphere Viewer Aqui vai um esqueleto mínimo de Web Part SPFx que integra o Photo Sphere Viewer (PSV) com o adaptador equiretangular e o plugin de marcadores. Passo 1 – Instalação No projeto… Continue reading
-
Photo Sphere Viewer (PSV) Deep-Dive: Building Production-Grade 360° Experiences on the Web
Photo Sphere Viewer (PSV) Deep-Dive: Building Production-Grade 360° Experiences on the Web Photo Sphere Viewer (PSV) is a modern JavaScript library for rendering 360°/VR panoramas and videos directly in the browser. It is powered by Three.js/WebGL, offers a clean plugin… Continue reading
-
Creating and Validating an Equirectangular 360° JPG/PNG
While the concept of equirectangular images is mathematical, in engineering and visualization projects the challenge is how to actually create, validate, and deploy them. Below is a structured workflow. Creating and Validating an Equirectangular 360° JPG/PNG While the concept of… Continue reading
-
Understanding Equirectangular 360° Images (JPG/PNG) in Engineering and Visualization
Understanding Equirectangular 360° Images (JPG/PNG) in Engineering and Visualization The rapid growth of immersive technologies has increased the demand for standardized image formats that allow 360° visualization in virtual environments. One of the most widely used formats is the equirectangular… Continue reading
-
The Future of PLM: Sustainability-Native, Cloud-Delivered, and Gen-AI Augmented
The Future of PLM: Sustainability-Native, Cloud-Delivered, and Gen-AI Augmented Product Lifecycle Management (PLM) is evolving from a CAD-centric data vault into a sustainability-aware, cloud-delivered, and AI-augmented orchestration layer that spans design, engineering, manufacturing, service, and end-of-life. Three shifts dominate roadmaps… Continue reading
-
Technical Comparison: ENOVIA vs Siemens Teamcenter vs PTC Windchill in PLM
Technical Comparison: ENOVIA vs Siemens Teamcenter vs PTC Windchill in PLM The PLM (Product Lifecycle Management) ecosystem is dominated by three major players: Dassault Systèmes ENOVIA, Siemens Teamcenter, and PTC Windchill. Each solution offers a different architectural approach, integration strategy,… Continue reading




































