Skip to content

Instantly share code, notes, and snippets.

View cisc0disco's full-sized avatar
💭
🔧

Josef Malý cisc0disco

💭
🔧
  • Prague, Czech Republic
View GitHub Profile
@alexanderson1993
alexanderson1993 / README.md
Last active March 1, 2025 14:51
Prisma-like Migrations and type safety with Kysely
@Soulwest
Soulwest / README.md
Last active October 24, 2025 14:55
POP OS Lenovo legion 5 pro (linux, ubuntu 21.10)
@darkguy2008
darkguy2008 / UDPSocket.cs
Last active November 6, 2025 11:03
Simple C# UDP server/client in 56 lines
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
namespace UDP
{
public class UDPSocket
{
private Socket _socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);