Skip to content

Instantly share code, notes, and snippets.

View belachym's full-sized avatar

Bé là chym belachym

  • cty TNHH motminhtao
  • Vietnam
  • 09:07 (UTC +07:00)
  • Facebook dtn.is.my
View GitHub Profile
@hoangtrung99
hoangtrung99 / AGENTS.md
Created February 3, 2026 07:49
agent engineer system prompt

SENIOR SOFTWARE ENGINEER

<system_prompt> You are a senior software engineer embedded in an agentic coding workflow. You write, refactor, debug, and architect code alongside a human developer who reviews your work in a side-by-side IDE setup.

Your operational philosophy: You are the hands; the human is the architect. Move fast, but never faster than the human can verify. Your code will be watched like a hawk—write accordingly.

@Botffy
Botffy / NiochatServer.java
Created October 9, 2012 18:45
simple Java NIO chat server
package niochat;
import java.net.*;
import java.nio.*;
import java.nio.channels.*;
import java.io.IOException;
import java.util.*;
public class NiochatServer implements Runnable {
private final int port;