Skip to content

Instantly share code, notes, and snippets.

View jiacai2050's full-sized avatar
:atom:
Focusing

Jiacai Liu jiacai2050

:atom:
Focusing
View GitHub Profile
@jiacai2050
jiacai2050 / find-tcp-last-communiate-time.md
Created June 11, 2023 12:05
如何找出 TCP 连接建立时间与最后一次通讯时间

这个问题是在《形单影只的 Socket》最后留的问题,这里给出一个思路供大家参考,看下那篇文章再来看这个效果可能会更好。

传送门: 测试环境:Ubuntu 14.04 好了,进入正题。首先构造一个 TCP 连接,这里使用形单影只的 socket 来启动一个 echo server

$ nc -vp 11111 localhost 11111
Connection to localhost 11111 port [tcp/*] succeeded!

$ ss -ap | grep 11111
[dependencies]
rand = "0.8.5"
xorfilter-rs = { git = "https://github.com/datafuse-extras/xorfilter", features = [
"cbordata",
], tag = "databend-alpha.4" }
@jiacai2050
jiacai2050 / tree.zig
Last active April 24, 2023 15:10
Tree(1) in Zig
//! Tree(1) in Zig
//! https://linux.die.net/man/1/tree
const std = @import("std");
const process = std.process;
const fs = std.fs;
const mem = std.mem;
const testing = std.testing;
const VisitedEntry = struct {
@jiacai2050
jiacai2050 / async_await_cancellation.md
Created January 13, 2023 12:22 — forked from Matthias247/async_await_cancellation.md
Async/Await - The challenges besides syntax - Cancellation

Async/Await - The challenges besides syntax - Cancellation

This is the second article in a series of articles around Rusts new async/await feature. The first article about interfaces can be found here.

In this part of the series we want to a look at a mechanism which behaves very different in Rust than in all other languages which feature async/await support. This mechanism is Cancellation.

@jiacai2050
jiacai2050 / mu4e-config.el
Created August 29, 2022 13:13
Emacs mu4e config
;; Mail start
(use-package mu4e
:ensure nil
:if (executable-find "mu")
:commands (mu4e)
:bind (:map mu4e-view-mode-map
("f" . mu4e~headers-jump-to-maildir)
("9" . scroll-down-command)
("0" . scroll-up-command)
("&" . my/open-url-in-external)
//! `yes` unix command in Zig, optimized for speed
//! Reference to: https://github.com/cgati/yes
const std = @import("std");
const BUFFER_CAP = 64 * 1024;
fn fill_up_buffer(buf: *[BUFFER_CAP]u8, word: []const u8) []const u8 {
if (word.len > buf.len / 2) {
return word;
@jiacai2050
jiacai2050 / zig-blog-posts.md
Created July 18, 2022 02:41 — forked from LewisGaul/zig-blog-posts.md
Collection of blog posts about the Zig programming language
const std = @import("std");
const fs = std.fs;
const log = std.log;
const os = std.os;
fn walk(dir: fs.Dir) anyerror!void {
var it = dir.iterate();
loop: {
while (it.next()) |entry| {
if (entry) |e| {
@jiacai2050
jiacai2050 / osx-ld.md
Created March 28, 2022 14:29 — forked from loderunner/osx-ld.md
potential blog posts

ld – Wading through Mac OS X linker hell

Intro

Friend: I tried looking at static linking in Mac OS X and it seems nearly impossible. Take a look at this http://stackoverflow.com/a/3801032

Me: I have no idea what that -static flag does, but I'm pretty sure that's not how you link to a library. Let me RTFM a bit.

Minutes later...

Estimated Emacs Memory Usage
62.4 GiB Total Buffer Memory Usage
5.4 GiB Memory Used By Global Variables
4.9 GiB Overall Object Memory Usage
1.8 GiB Memory Used By Symbol Plists
148.2 MiB Reserved (But Unused) Object Memory
0.0 KiB Total Image Cache Size
Object Storage