Skip to content

Instantly share code, notes, and snippets.

View chakibchemso's full-sized avatar
🖥️
星に願いをかけて 💫

チャキブ・チャムス chakibchemso

🖥️
星に願いをかけて 💫
View GitHub Profile
@darkguy2008
darkguy2008 / UDPSocket.cs
Last active August 27, 2025 22:24
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);
@FullStackForger
FullStackForger / .gitignore
Last active June 25, 2025 19:00
.gitignore for Unity3d project
###
# Unity folders and files
###
[Aa]ssets/AssetStoreTools*
[Bb]uild/
[Ll]ibrary/
[Ll]ocal[Cc]ache/
[Oo]bj/
[Tt]emp/
[Uu]nityGenerated/