Skip to content

Instantly share code, notes, and snippets.

View tonylrosa's full-sized avatar
🏠
Working from home

Tony Rosa tonylrosa

🏠
Working from home
View GitHub Profile
@tonylrosa
tonylrosa / AI_Learning_pattern_Claude.md
Last active May 12, 2026 13:11
AI Learning path pattern

AI Learning for Technical Roles: Claude & Applied GenAI For architects, engineers, and developers working with AI solutions, the following resources provide practical, hands-on learning to accelerate real-world implementation:

Core Foundations (Start Here) Establish a baseline in LLM concepts and AI fluency:

Claude 101 https://anthropic.skilljar.com/claude-101 AI Fluency: Framework & Foundations

@tonylrosa
tonylrosa / Microsoft-SQL-Log-shipping.md
Last active March 15, 2024 23:10
MS SQL Log shipping - Moving a standby/read only MS SQL replica database to a new server

Moving the log ship secondary database

I had a challenge recently to move a very large log shipping replica to a new sql server, Without a access to a backup/diff set and only the shipped transaction logs, here is how I did it. Tested on SQL Server versions 2017, 2019. Ingredients - source secondary database, new/existing destination secondary server for the replica database

  1. Create an empty database which mimics the file names and paths for the database you are trying to deploy
  2. Post a small transaction log commit; table add, etc
  3. Set the new database to "Standby/read only" by capturing a backup and then restoring the backup, to standby no recovery tail the trans log to a backup file
@tonylrosa
tonylrosa / powershell_commands.md
Last active December 6, 2022 00:05 — forked from Celoxocis/powershell_commands.md
Collection of useful PowerShell commands/snippets

PowerShell Commands

Sanity check (i.e., change term window size)

mode con:cols=150 lines=50

Set execution policy

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned

Unset execution policy

Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Undefined