josexy's recent timeline updates
josexy's repos on GitHub
C++ · 33 watchers
socnet-cpp
A high performance HTTP server based on linux epoll designed by C++ 20
Go · 16 watchers
godroidcs
C/S system based on gRPC streaming service and implement Android device communication
Go · 9 watchers
cropstun
Cropped for sing-tun library
Go · 7 watchers
netstackgo
An easy-to-use netstack, wrapped by gvisor and wireguard-go, which supports macOS/Linux/Windows.
C++ · 7 watchers
QtScreenShot
QtScreenShot by Qt
Java · 6 watchers
grpc-android-server-demo
Use Android Java to implement grpc server and golang to implement grpc client demo
C++ · 4 watchers
jsontest
This is just a simple C++ JSON parser
Go · 4 watchers
mini-ss
Mini ss server and client(support mitm/tun)
Go · 3 watchers
gopool
very simple goroutine pool
Go · 2 watchers
dstarlite-gosdl
Go implement D*Lite with SDL2
C++ · 2 watchers
FileSplit
split and merge file
Go · 2 watchers
gochip8
simple chip8 emulator written with Go and SDL2
Go · 2 watchers
mitmproxy-go
An easy-use and flexible Man-In-The-Middle (MITM) proxy library for Go that enables transparent interception and inspection of HTTP, HTTPS, HTTP/2, and WebSocket traffic.
C++ · 2 watchers
MyEasyCalculator
easy calculator designed by C++
C++ · 2 watchers
trietree
TrieTree based on STL map/unordered_map/skiplist and used for AC automaton
TypeScript · 1 watchers
codepaste
an online code paste
1 watchers
josexy
C++ · 1 watchers
MyPrettyTable
Similar to MySQL printing data table by C++
Go · 0 watchers
catgo
Simple Go's package manager like Cargo
Rust · 0 watchers
cfg_watcher
Configuration watcher wrapper with tokio async
0 watchers
claude-code-rev
Runnable ClaudeCode source code
Go · 0 watchers
etcdpkg
etcd client package wrapper with register/discovery
Rust · 0 watchers
feather
Image compression tool written in Rust
0 watchers
go-tun2socks
A tun2socks implementation written in Go.
Go · 0 watchers
gsocks5
socks5 server and client
C++ · 0 watchers
HuffmanCode
The huffmancode by C++
Java · 0 watchers
java-pathplanning
Path planning algorithm based on Java
HTML · 0 watchers
josexy.github.io
0 watchers
kcptun
A Stable & Secure Tunnel based on KCP with N:M multiplexing and FEC. Available for ARM, MIPS, 386 and AMD64。KCPプロトコルに基づく安全なトンネル。KCP 프로토콜을 기반으로 하는 보안 터널입니다。
Go · 0 watchers
kubedebug
Go · 0 watchers
logx
simple and colorful golang logger
Rust · 0 watchers
mitmproxy-rs
An easy-use and flexible Man-In-The-Middle (MITM) proxy library for Rust that enables transparent interception and inspection of HTTP, HTTPS, HTTP/2, and WebSocket traffic.
0 watchers
netlink
Simple netlink library for go.
Python · 0 watchers
proxyGet
proxyGet is a spider script which can sniff the website free proxies and store in the local database.
Go · 0 watchers
proxyutil
configure system proxy settings using command line
C++ · 0 watchers
Qtgobang
Go · 0 watchers
simple-chatroom
simple chatroom
0 watchers
sing-tun
Simple transparent proxy library
C++ · 0 watchers
skiplist_c
跳跃表skiplist学习
HTML · 0 watchers
technical-books
😆 国内外互联网技术大牛们都写了哪些书籍:计算机基础、网络、前端、后端、数据库、架构、大数据、深度学习...
Go · 0 watchers
wails
Create beautiful applications using Go
Go · 0 watchers
websocket
Package gorilla/websocket is a fast, well-tested and widely used WebSocket implementation for Go.
0 watchers
wireguard-go
Mirror only. Official repository is at https://git.zx2c4.com/wireguard-go
0 watchers
wireguard-install
WireGuard VPN installer for Linux servers
0 watchers
zap
Blazing fast, structured, leveled logging in Go.
josexy

josexy

V2EX member #559327, joined on 2021-10-22 13:46:23 +08:00
josexy's recent replies
Oct 15, 2024
Replied to a topic by tangshuier 软件 大家一般用什么笔记软件
Typora+GitHub
Jun 28, 2024
Replied to a topic by jeesk macOS macos 普通用户如何不使用密码修改代理设置?
参考 sing-box: https://github.com/SagerNet/sing-box/blob/dev-next/common/settings/proxy_darwin.go

networksetup -setwebproxy
networksetup -setsecurewebproxy
networksetup -setsocksfirewallproxy
Nov 26, 2023
Replied to a topic by Jony4Fun macOS 墙裂推荐大家用 orbstack 代替 docker desktop
好像 k8s 不能直接 containerd 容器?
Jul 6, 2023
Replied to a topic by rrubick 游戏 求推荐手机上的游戏
这里我要点名一款二字游戏(🐶)
Apr 8, 2023
Replied to a topic by zeep macOS macOS 有沒有快捷修改 socks 代理的小工具
把下面的 shell 脚本保存到一个文件:set_proxy.sh

```shell

#!/bin/bash

function scutil_query {
key=$1
scutil <<EOT
open
get $key
d.show
close
EOT
}

SERVICE_GUID=$(scutil_query State:/Network/Global/IPv4 | grep "PrimaryService" | awk '{print $3}')
currentservice=$(scutil_query Setup:/Network/Service/$SERVICE_GUID | grep "UserDefinedName" | awk -F': ' '{print $2}')

set_proxy() {
http=$1
socks=$2
if [[ -z $http ]] && [[ -z $socks ]]; then
return 0
fi

# http 代理
if [[ ! -z $http ]]; then
networksetup -setwebproxystate "$currentservice" on
networksetup -setsecurewebproxystate "$currentservice" on
hostname=$(echo "$http" | awk -F ':' '{print $1}')
port=$(echo "$http" | awk -F ':' '{print $2}')
networksetup -setwebproxy "$currentservice" $hostname $port
networksetup -setsecurewebproxy "$currentservice" $hostname $port
fi

# socks 代理
if [[ ! -z $socks ]]; then
networksetup -setsocksfirewallproxystate "$currentservice" on
hostname=$(echo "$socks" | awk -F ':' '{print $1}')
port=$(echo "$socks" | awk -F ':' '{print $2}')
networksetup -setsocksfirewallproxy "$currentservice" $hostname $port
networksetup -setsocksfirewallproxy "$currentservice" $hostname $port
fi

# 设置代理绕过的域名
networksetup -setproxybypassdomains "$currentservice" 192.168.0.0/16 10.0.0.0/8 172.16.0.0/12 127.0.0.1 localhost "*.local" timestamp.apple.com
}

# 取消代理设置
unset_proxy() {
networksetup -setwebproxy "$currentservice" "" "" off "" ""
networksetup -setsecurewebproxy "$currentservice" "" "" off "" ""
networksetup -setsocksfirewallproxy "$currentservice" "" "" off "" ""

networksetup -setwebproxystate "$currentservice" off
networksetup -setsecurewebproxystate "$currentservice" off
networksetup -setsocksfirewallproxystate "$currentservice" off

networksetup -setproxybypassdomains "$currentservice" Empty
}

if [[ $1 == "http" ]]; then
set_proxy $2 ""
elif [[ $1 == "socks" ]]; then
set_proxy "" $2
else
unset_proxy
fi

```

使用:
```shell
bash set_proxy.sh http 127.0.0.1:10086 # 设置 http 和 https 代理
bash set_proxy.sh socks 127.0.0.1:10086 # 设置 socks5 代理
bash set_proxy.sh # 恢复
```
Mar 29, 2023
Replied to a topic by voidmnwzp 程序员 前端现在这么恶心的吗
给个 github 链接,我去看看写的如何👀
Mar 29, 2023
Replied to a topic by wwxxx MacBook Pro 大家的 mac 一般用什么键盘
keychron k3
Mar 29, 2023
Replied to a topic by dunhanson 程序员 Typora 怎么像 VS Code 那样多标签显示?
macos 可以通过⌘+T 打开多个标签页,其他不知道。typora 版本:1.3.6
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   5704 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 187ms · UTC 07:45 · PVG 15:45 · LAX 00:45 · JFK 03:45
♥ Do have faith in what you're doing.