Skip to content

Instantly share code, notes, and snippets.

View ThanosPapathanasiou's full-sized avatar
💩
The straw companies think that your face sucks.

Thanos Papathanasiou ThanosPapathanasiou

💩
The straw companies think that your face sucks.
View GitHub Profile
@ThanosPapathanasiou
ThanosPapathanasiou / todo.cs
Last active June 27, 2025 20:16
todo app with dotnet10, htmx and bulma
#:sdk Microsoft.NET.Sdk.Web
using System.IO;
using System.Text;
using System.Text.Json;
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Filters;
@ThanosPapathanasiou
ThanosPapathanasiou / Microsoft.PowerShell_profile.ps1
Last active June 1, 2025 20:07
Microsoft.PowerShell_profile.ps1
if (-not (Get-Command oh-my-posh -ErrorAction SilentlyContinue)) {
winget install --id JanDeDobbeleer.OhMyPosh --silent --accept-package-agreements --accept-source-agreements
}
$posh_theme="kali"
oh-my-posh --init --shell pwsh --config $env:POSH_THEMES_PATH\$posh_theme.omp.json | Invoke-Expression
function profile {
code $PROFILE
}