Saturday, September 5, 2026

AI Learning resouces

 Collection of resources

Software Engineering learning

 Each company share the engineering articles, explaining the architecture of their solutions.

Thursday, November 6, 2025

Engineering Excellence

Engineering Excellence

Having solid engineering process and tools in place help to improve the agility of the system. Here is the high-level flow recommended by our VP.

While building the solution we need to see how we can bring value, MVP instead of build parts which is not adding value initially.




Sunday, September 7, 2025

Sunday, August 24, 2025

Microsoft copilot Agent

 In Copilot Chat https://m365.cloud.microsoft/chat

Click on All Agents on side bar


Copilot Studio


Provide the details and you are agent is ready



Wednesday, January 11, 2023

Teams PowerShell

 The PowerShell helps to get quick meta data around Teams.




Install-Module -Name MicrosoftTeams
Connect-MicrosoftTeams
Get-TeamAllChannel -GroupId   | select DisplayName | clip

Thursday, September 15, 2022

Azure Machine Learning

Azure Machine Learning is the home for Data Scientists to run experiments.  But the language and constructs used in Microsoft Azure ML will be confusing in the first go.  This article helps to clear some fundamentals.

The below words are confusing, and the UI is not that great.

  • Pipeline
    • You can create a pipeline object and execute in an experiment.
    • Pipeline Job
      • Experiment: Pipeline jobs are grouped into experiments to organize job history. You can set the experiment for every pipeline job.
  • Pipeline Endpoint
    • Can have multiple Pipeline but only one could be the default.
  • Published Pipeline


Running a script - Experiment Job Type: Command 


from azureml.core import WorkspaceExperimentEnvironmentScriptRunConfig

ws = Workspace.from_config()
experiment = Experiment(workspace=wsname='day1-experiment-try1')

config = ScriptRunConfig(source_directory='./'script='Hello.py'compute_target='gurupc')

run = experiment.submit(config)

run.log('mymetric'1)
run.wait_for_completion(show_output=Truewait_post_processing=True)
aml_url = run.get_portal_url()
print(aml_url)

Running a Pipeline - Experiment Job Type: Pipeline

https://github.com/guvijaya/TipsAndTricks/blob/master/Azure%20Machine%20Learning/AML%20Pipelines%20Intro.py

AI Learning resouces

 Collection of resources aka.ms/genai-beginners  -  github- generative-ai-for-beginners rasbt/LLMs-from-scratch: Implement a ChatGPT-like LL...