Skip to content

Instantly share code, notes, and snippets.

View wuxianggujun's full-sized avatar
🌴
写代码中

无相孤君 wuxianggujun

🌴
写代码中
  • China
View GitHub Profile
import javax.swing.*;
import java.awt.*;
import java.util.List;
import java.util.ArrayList;
import java.awt.geom.*;
import java.awt.image.BufferedImage;
public class DemoViewer {
public static void main(String[] args) {
@akvadrako
akvadrako / pty-demo.c
Last active March 5, 2024 06:47
Linux pseudo TTY example
/**
* gcc -o pty-demo pty-demo.c
* pty-demo bash
*/
#define _XOPEN_SOURCE 600 /* Single UNIX Specification, Version 3 */
#include <fcntl.h>
#include <errno.h>
#include <stdio.h> /* for convenience */