Skip to content

Instantly share code, notes, and snippets.

View janv8000's full-sized avatar
🦔

Jan Verhaeghe janv8000

🦔
View GitHub Profile
const string server = "http://srvoctopus";
const string apiKey = "API-keyhier";
var endpoint = new OctopusServerEndpoint(server, apiKey);
using (var client = await OctopusAsyncClient.Create(endpoint))
{
var repository = client.CreateRepository();
var allProjects = await repository.Projects.GetAll();
@janv8000
janv8000 / adfs_dumper.ps1
Created March 15, 2021 13:59
adfs_dumper.ps1
$huidigTijdstipFilenameSafe = $(get-date -f yyyyMMddTHHmmssZ);
# Output folders aanmaken
New-Item -ItemType "Directory" C:\temp\AdfsConfigDump\"$env:computername" -Force
$stampedFolder = New-Item -ItemType "Directory" "C:\temp\AdfsConfigDump\$env:computername\$huidigTijdstipFilenameSafe" -Force
Remove-Item C:\temp\AdfsConfigDump\"$env:computername"\LATEST -Recurse -Force -ErrorAction Ignore
$latestFolder = New-Item -ItemType "Directory" "C:\temp\AdfsConfigDump\$env:computername\LATEST"
Get-AdfsApplicationGroup | ConvertTo-Json -Depth 10 | Out-File "$stampedFolder\alles.json"
<wpf:ResourceDictionary xml:space="preserve"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="clr-namespace:System;assembly=mscorlib"
xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml"
xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E53EF07BEAF6964C83AD78E1B75E3837/@KeyIndexDefined">True</s:Boolean>
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E53EF07BEAF6964C83AD78E1B75E3837/Shortcut/@EntryValue">moqq</s:String>
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E53EF07BEAF6964C83AD78E1B75E3837/Description/@EntryValue">Moq mock</s:String>
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E53EF07BEAF6964C83AD78E1B75E3837/Text/@EntryValue">Mock&lt;$interfaceToMock$&gt; mock$interfaceToMock$ = new Mock&lt;$interfaceToMoc

The pull request emoji code

  • 👍 I like this. Use this to motivate people. Don’t overuse it, but certainly point out if you like something.
  • ❓ I have a concrete question. There is nothing here to be changed yet.
  • ❌ Here is an actual problem. Please change this according to my suggestion. It might be a bug or a strict code style fix.
  • 🔧 Here is an idea/suggestion. I think it would improve things, but feel free to disagree :)
  • 🙃 This is a nitpick. Feel free to change of leave it.
  • 🤔 This might be wrong. Let’s talk about it, maybe we can come up with a better solution
  • 🤡 Here is a problem independent from your work. It would be nice if we would open up a ticket and discuss about that.
@janv8000
janv8000 / DotNet4Console.csproj
Created August 5, 2024 12:59 — forked from commonsensesoftware/DotNet4Console.csproj
.NET 4.0 Console using VS2022
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net40</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.net40" Version="1.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>