V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  lu5je0  ›  全部回复第 3 页 / 共 6 页
回复总数  102
1  2  3  4  5  6  
2021-09-20 20:18:55 +08:00
回复了 darksheep9527 创建的主题 职场话题 实习,工资按 800 起征 20%进行扣税,在想要不要和公司提
不用管,个人所得税 app 上可以退
2021-08-22 13:56:26 +08:00
回复了 HarryYu 创建的主题 程序员 如何统一管理应用中第三方的 APIs?
配置中心
2021-08-02 14:38:51 +08:00
回复了 fishlium 创建的主题 问与答 这一串编码有人能看出来是撒么?
@0o0o0o0 比较好奇是怎么做到格式化的
2021-07-16 14:15:53 +08:00
回复了 Liang 创建的主题 Apple 2021 Apple 返校优惠开始了
@luckybubble 想多了
2021-05-11 17:18:05 +08:00
回复了 LosLord 创建的主题 Java Java 怎么获得一次调用背后各个 IO 耗费时间
链路追踪
2021-05-10 17:56:22 +08:00
回复了 yitingbai 创建的主题 JetBrains idea 2021.1.1 是不是有大 bug , 导致整个 Mac 系统 UI 卡死
上周升级到 2021.1.1,目前还没遇到过这种情况
2021-05-07 17:28:28 +08:00
回复了 aviator 创建的主题 云计算 [求助] 腾讯轻量云内存占用高。。
可以看下 Huge Pages 的占用
可以参考游戏更新
所以为什么要加班呢
2021-03-30 16:11:46 +08:00
回复了 bthulu 创建的主题 MySQL 西数蓝盘批量写入, 主键 uuid, 无限掉速
innodb 页分裂
steam 有现成的 api 。多看看文档
2021-03-04 21:17:44 +08:00
回复了 0x47 创建的主题 程序员 面试应该怎么出编程题?
打工人何苦为难打工人,写个 kmp 吧
2021-02-22 17:52:29 +08:00
回复了 Ficelle 创建的主题 Java 多模块单应用项目改造 dubbo 遇到的问题求助
dubbo filter
2021-02-02 20:26:11 +08:00
回复了 afirefish 创建的主题 程序员 请教将服务器控制面板映射到公网是否安全?
需要操作的时候,用 ssh 转发端口吧,比较方便
2021-01-31 23:08:46 +08:00
回复了 suueyoung 创建的主题 Go 编程语言 怎么用 golang 搞一个 [多维的笛卡尔积] 呀?
```java
class Demo {

public static void main(String[] args) {
new Demo().func();
}

public void func() {
List<List<Integer>> res = new ArrayList<>();
List<List<Integer>> sourceList = new ArrayList<>();
sourceList.add(Arrays.asList(0, 1, 2));
sourceList.add(Arrays.asList(0, 1));
sourceList.add(Arrays.asList(0, 1, 2, 3, 4));
dfs(sourceList, res, new ArrayList<>(), 0);
System.out.println(res);
}

public void dfs(List<List<Integer>> sourceList, List<List<Integer>> res, List<Integer> curList, int index) {
if (index == sourceList.size()) {
res.add(new ArrayList<>(curList));
} else {
List<Integer> source = sourceList.get(index);
for (Integer i : source) {
curList.add(i);
dfs(sourceList, res, curList, index + 1);
curList.remove(curList.size() - 1);
}

}
}

}
```
2021-01-13 09:03:44 +08:00
回复了 c2000a 创建的主题 Apple 求远程连接在家 mac 命令行的方法
frp
2021-01-08 10:36:59 +08:00
回复了 hahaFck 创建的主题 Apple 你们用的 idea 有这个问题么?
mac 版同样有这个问题
2020-11-30 01:22:51 +08:00
回复了 mashaofeixxx 创建的主题 推广 NUC 黑果套餐 继续开车 有福利!
分子分子
2020-11-18 16:07:06 +08:00
回复了 Sain 创建的主题 Apple 新款 M1 mac 外接 4k 显示器性能和散热如何?
同问,能否支持 4k120
1  2  3  4  5  6  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1264 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 36ms · UTC 18:07 · PVG 02:07 · LAX 11:07 · JFK 14:07
Developed with CodeLauncher
♥ Do have faith in what you're doing.