Skip to content

Instantly share code, notes, and snippets.

View darkguy2008's full-sized avatar

Alemar darkguy2008

View GitHub Profile
@darkguy2008
darkguy2008 / UDPSocket.cs
Last active December 19, 2025 07:51
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);
@darkguy2008
darkguy2008 / gist:0b27a23ac40d863553f0b01ed7da9cfd
Last active June 7, 2026 03:23
Fix Linux font rendering in Ubuntu / KDE Neon
Ref: https://peter.quantr.hk/2012/12/how-to-change-fedoras-font-rendering-to-get-an-ubuntu-like-result/#page-content
1) xrdb -query | grep -i xft
Make sure it looks like this:
Xft.antialias: 1
Xft.hinting: 1
Xft.hintstyle: hintslight
Xft.lcdfilter: lcddefault