V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  chingyat  ›  全部回复第 3 页 / 共 4 页
回复总数  76
1  2  3  4  
252 天前
回复了 LeeReamond 创建的主题 程序员 有没有多平台通用的日程记录软件?
outlook
253 天前
回复了 iamyourking 创建的主题 职场话题 园区厕所每时每刻有人抽烟。
楼主好文采
253 天前
回复了 keepRun 创建的主题 程序员 2023 年,你们读了哪些技术书籍,推荐下
《业余无线电通信》
266 天前
回复了 billlee 创建的主题 信息安全 怎么保存双因素认证的 backup codes?
打印下来放家里。
267 天前
回复了 siluplsy 创建的主题 Python 捕获不到网络异常导至程序意外终止
估计是不在一个线程
带她看《孤注一掷》之类的电影,给她转发点反诈的视频.
开启 clash 的 dns fake ip 功能. 用 nftable 的把目标为 fake ip 的网段的 packet 转发到 tproxy 端口.
把 tailnet 的 dns 设为 nuc 的 tailnet ip.
并且在 nuc 上 advertise fake ip 网段的路由.
281 天前
回复了 shanyang88 创建的主题 程序员 IM 私聊应该都是点对点发送消息吧?
@ladypxy 点对点加密和点对点连接又不是一回事
原理应该跟 ssdp 差不多吧
292 天前
回复了 fields 创建的主题 问与答 就这样浑浑僵僵过完自己的一生吗?
雨伞、背包、菜
0
Emacs
VSCode
公司买的 copilot
296 天前
回复了 pantsu 创建的主题 问与答 编辑中大家是如何跳出包围字符的?
C-e
🐮,佩服 op 的探究精神
```c++
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <string>

#include "hello.h"

std::string g_test = "initial value";

__attribute__((constructor))
static void init()
{
g_test = "hello test";
printf("init: %s\n", g_test.c_str());
}

void hello_func(void) {
printf("Hello World: %s\n", g_test.c_str());

return;
}
```

执行结果:

```
init: hello test
Hello World: initial value
```
应该是 init() 在 g_test 初始化之前就被调用了。
op 可以试试各种 immutable 发行版,比如 fedora silverblue/kinoite ,nixos ,guix 之类的.
322 天前
回复了 jichangee 创建的主题 OpenWrt sd 卡刷了 openwrt 后无法格式化
插 linux 上用 gdisk 重新分区试试试试.
1  2  3  4  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1080 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 35ms · UTC 19:00 · PVG 03:00 · LAX 12:00 · JFK 15:00
Developed with CodeLauncher
♥ Do have faith in what you're doing.