Skip to content

Instantly share code, notes, and snippets.

View maythamfahmi's full-sized avatar
:octocat:
Continuous Delivery

Maytham Fahmi maythamfahmi

:octocat:
Continuous Delivery
View GitHub Profile
@NSWG
NSWG / VMware Workstation 16 Pro and Player keys
Last active May 2, 2024 03:41
VMware Workstation 16 Pro and Player keys
VMware Workstation Pro 16.x Serials
YA7RA-F6Y46-H889Z-LZMXZ-WF8UA
ZV7HR-4YX17-M80EP-JDMQG-PF0RF
UC3XK-8DD1J-089NP-MYPXT-QGU80
GV100-84W16-M85JP-WXZ7E-ZP2R6
YF5X2-8MW91-4888Y-DNWGC-W68TF
AY1XK-0NG5P-0855Y-K6ZXG-YK0T4
VMware Workstation Player 16.x Serials
@niclaslindstedt
niclaslindstedt / Replace-Tokens.ps1
Last active October 11, 2023 08:12
PowerShell script to replace tokens in a file. Useful for DevOps when you have a template config file that you wish to insert real values into.
<#
.SYNOPSIS
Replace tokens in a file with values.
.DESCRIPTION
Finds tokens in a given file and replace them with values. It is best used to replace configuration values in a release pipeline.
.PARAMETER InputFile
The file containing the tokens.
@jonlabelle
jonlabelle / docker_compose_cheatsheet.md
Last active May 3, 2024 10:18
Docker Compose Cheatsheet
@DanielSWolf
DanielSWolf / Program.cs
Last active May 2, 2024 18:33
Console progress bar. Code is under the MIT License: http://opensource.org/licenses/MIT
using System;
using System.Threading;
static class Program {
static void Main() {
Console.Write("Performing some task... ");
using (var progress = new ProgressBar()) {
for (int i = 0; i <= 100; i++) {
progress.Report((double) i / 100);