Skip to content

Instantly share code, notes, and snippets.

View hypervtechnics's full-sized avatar

hypervtechnics hypervtechnics

  • Düsseldorf, Germany
View GitHub Profile
@davidfowl
davidfowl / MinimalAPIs.md
Last active March 16, 2025 16:47
Minimal APIs at a glance
@jonlabelle
jonlabelle / ConsolePortScanner.cs
Created July 1, 2017 20:09
Simple async C# Open Port Network Scanner
using System;
using System.Threading.Tasks;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Net.Sockets;
namespace ConsolePortScanner
{
class MainClass
@timabell
timabell / xml-doc.tt
Created January 16, 2015 19:46
t4 snippet for adding xml doc from .edmx
// heavily modified version of http://forums.asp.net/t/2011994.aspx
...
WriteLine("");
WriteDocumentation(entity.Documentation);#>
...
WriteDocumentation(edmProperty.Documentation, CurrentIndent);
...
WriteDocumentation(complexProperty.Documentation);
...
@zmilojko
zmilojko / UDPer.cs
Last active December 11, 2024 17:38
C# sends and receives UDP broadcasts
using System;
using System.Net.Sockets;
using System.Net;
using System.Text;
using System.Threading;
namespace UDPer
{
class UDPer
{