Skip to content

Instantly share code, notes, and snippets.

View kurtanr's full-sized avatar

Robert kurtanr

  • Zagreb, Croatia
  • 09:29 (UTC +02:00)
View GitHub Profile
@kurtanr
kurtanr / semantic-commit-messages.md
Created February 9, 2026 21:13 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@kurtanr
kurtanr / Setting up Oh My Posh in Windows Terminal.md
Last active August 26, 2025 03:05
Step-by-step guide for setting up Oh My Posh in Windows Terminal
@kurtanr
kurtanr / kurtanr.omp.json
Last active April 21, 2025 13:51
Custom theme for 'Oh My Posh'
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"palette": {
"black": "#262B44",
"blue": "#4B95E9",
"green": "#59C9A5",
"orange": "#F07623",
"red": "#D81E5B",
"white": "#E0DEF4",
"yellow": "#F3AE35"
@kurtanr
kurtanr / RunMsiWithParametersAndLogging.ps1
Created September 4, 2021 14:41
Helper PowerShell script to run MSI with parameters and logging
# For more details related to Msi and MsiExec, see:
# https://docs.microsoft.com/en-us/windows/desktop/Msi/error-codes
# https://docs.microsoft.com/en-us/windows/desktop/msi/windows-installer-error-messages
# https://docs.microsoft.com/en-us/windows/desktop/msi/command-line-options
param
(
[Parameter(Mandatory=$true)][string]$SOME_PARAMETER = "some value",
[Parameter(Mandatory=$false)][string]$INSTALLDIR = "C:\SomeFolder"
)