Skip to content

Instantly share code, notes, and snippets.

View hustlijian's full-sized avatar
🎯
Focusing

Li Jian hustlijian

🎯
Focusing
View GitHub Profile
@hustlijian
hustlijian / Makefile
Last active August 23, 2022 05:10
mmap ----------- a short demo for mmap in linux! 一个使用mmap实现进程间通信的例子。
all:
gcc -o master ./master.c
gcc -o slave ./slave.c
clean:
rm -f master slave
@hustlijian
hustlijian / wifi.bat
Last active December 21, 2015 17:18
this is a bat file used to setup WiFi hostednetwork, 自建wifi热点,使用脚本来设置、启动和关闭等。 来源:[随身WiFi](http://blog.idf.cn/archives/1400.html)
:begin
cls
@echo.※※※※※※※※※※※※※※※※※※※※※※※※※
@echo off
echo.
echo.欢迎使用win7双网卡WiFi开关
echo.
echo.※※※※※※※※※※※※※※※※※※※※※※※※※
echo.
@hustlijian
hustlijian / Makefile
Created May 26, 2013 15:36
a lua c api sample
all:
gcc -o capi capi.c -llua5.1
clean:
rm -rvf capi