This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Nerd Fonts GUI Installer (Windows) — installs ALL faces in one shot. | |
| Changes from previous version: | |
| - Ensures ALL .ttf/.otf files (including those in subfolders) are staged into a | |
| flat temp folder, then performs a SINGLE PowerShell Fonts CopyHere call: | |
| $fonts.CopyHere($srcNS.Items(), 16) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| install-dev-tools.ps1 | |
| - Installs a .NET + Python + DevOps workstation via Chocolatey | |
| - Continues on errors (per-package) | |
| - Logs & summarizes results | |
| - Skips packages already installed | |
| - Provides an easy one-liner to retry failures | |
| #> | |
| # --------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Import-Module -Name Terminal-Icons | |
| Set-PSReadLineOption -PredictionSource History | |
| Set-PSReadLineOption -PredictionViewStyle ListView | |
| oh-my-posh init pwsh --config 'C:\Users\Arsalan Shahid\AppData\Local\Programs\oh-my-posh\themes\montys.omp.json' | Invoke-Expression |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker volume create pc1_postgres_data | |
| docker run --name pc1_postgres -e POSTGRES_PASSWORD=admin -d -p 5432:5432 -v pc1_postgres_data:/var/lib/postgresql/data postgres | |
| postgres/admin | |
| docker run --name pgadmin -p 8080:80 -e "PGADMIN_DEFAULT_EMAIL=your_email@example.com" -e "PGADMIN_DEFAULT_PASSWORD=your_secure_password" -d dpage/pgadmin4 |