V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  CodeCodeStudy  ›  全部回复第 7 页 / 共 50 页
回复总数  981
1 ... 3  4  5  6  7  8  9  10  11  12 ... 50  
352 天前
回复了 WhiteSJ 创建的主题 程序员 Java 比 web 前端要更好找工作吗?
@privater #8 你搞反了吧,公司壮大后,后端的工作更多了,从单体架构到微服务,各种日志系统、监控系统、都要搞,而且随着数据增多,数据库的压力也会越来越大。后端跟前端的最大差别是后端是有状态的,也就是之前累积的数据会对系统有影响,10w 的访问量和 1000w 的访问量的架构是不一样的。
353 天前
回复了 echo0x000001 创建的主题 职场话题 应该向父母隐瞒自己的实际工资吗?
你弟上学,你帮一下是应当的,但是他结婚、买房,就不关你事了
353 天前
回复了 hgg12580 创建的主题 计算机 2024 年了,求推荐静音 Win 笔记本
等年中的 x elite 的笔记本吧
354 天前
回复了 baolinliu442k 创建的主题 Java 实际项目中如何使用线程池
底层类库用的,业务中谨慎使用
357 天前
回复了 zhenruyan 创建的主题 Visual Studio Code 做了个 vscode 的下载 mirror 站
357 天前
回复了 zhenruyan 创建的主题 Visual Studio Code 做了个 vscode 的下载 mirror 站
@zhenruyan 你怎么不更新了,现在是 1.85 了,你的镜像站还是 1.79
@rulerstorm #14 怎么会招不到年轻便宜的,只要 IT 岗位的工资比社会平均工资高一些,自然会有很多人涌进来的
358 天前
回复了 OrangeSinglee 创建的主题 问与答 第一次去女朋友家送什么比较好
橘子,香蕉,葡萄,苹果
今年我 35 岁,有 35 岁歧视,10 年后我 45 岁,不再有 35 岁歧视了,但是会有 45 岁歧视
2023-12-28 11:14:18 +08:00
回复了 cndenis 创建的主题 信息安全 除了 VPN,还有什么安全方式在外网访问公司资源?
@loginv2 #29 可以使用两步验证,也就是多一个动态口令,有效期只有 30 秒
2023-12-27 17:33:41 +08:00
回复了 spitfireuptown 创建的主题 程序员 搞开源项目,收费卖文档有搞头吗
你这样子还不如把你的项目分成社区版和商业版,社区版的代码和文档完全免费,商业版付费。
2023-12-27 09:40:58 +08:00
回复了 way2create 创建的主题 程序员 大佬们,生成随机数这样加多个函数有意义吗
@way2create #26 对,旧版本的一样的

https://www.php.net/manual/en/function.rand.php

As of PHP 7.1.0, rand() uses the same random number generator as mt_rand().
2023-12-26 18:36:22 +08:00
回复了 way2create 创建的主题 程序员 大佬们,生成随机数这样加多个函数有意义吗
https://github.com/php/php-src/blob/master/ext/standard/string.c#L5630

```c
PHPAPI bool php_binary_string_shuffle(const php_random_algo *algo, php_random_status *status, char *str, zend_long len) /* {{{ */
{
int64_t n_elems, rnd_idx, n_left;
char temp;

/* The implementation is stolen from array_data_shuffle */
/* Thus the characteristics of the randomization are the same */
n_elems = len;

if (n_elems <= 1) {
return true;
}

n_left = n_elems;

while (--n_left) {
rnd_idx = algo->range(status, 0, n_left);
if (EG(exception)) {
return false;
}
if (rnd_idx != n_left) {
temp = str[n_left];
str[n_left] = str[rnd_idx];
str[rnd_idx] = temp;
}
}

return true;
}
```

https://github.com/php/php-src/blob/master/ext/random/random.c#L423

```c

PHPAPI zend_long php_mt_rand_range(zend_long min, zend_long max)
{
return php_random_algo_mt19937.range(php_random_default_status(), min, max);
}

```


可以看出,都是调用某个算法的 range 函数,所以 str_shuffle 和 mt_rand 的底层都是相似的,差别可能就是算法不一样
2023-12-26 09:18:20 +08:00
回复了 way2create 创建的主题 程序员 大佬们,生成随机数这样加多个函数有意义吗
用 random_int 这个函数

random_int(int $min, int $max): int
2023-12-25 12:14:57 +08:00
回复了 theprimone 创建的主题 React 一次性密码输入(OTP)组件状态管理 React Hook 开发实践
@theprimone #10 大哥看来你不了解 TOTP 的原理啊,TOTP 本来就不依赖于网络的,是网站随机生成密码,然后发给用户(通常密码转成二维码,让用户扫二维码),用户通过密码和时间戳的一系列计算,得到 6 位数字。因为是对时间戳对 30 取余的,所以是每 30 秒变化一次。因为通过这 6 位数字,是反推不出原密码的,所以保证了密码的安全。
VSCode 的 Golang 的自动 import 很难用,有谁介绍一下吗
2023-12-22 11:26:34 +08:00
回复了 linhongye 创建的主题 程序员 在 12 代 intel CPU 上跑程序, 需要关注大小核调度问题吗?
Swoole 可以将进程绑定到特定的 CPU 核上

https://wiki.swoole.com/#/process/process?id=setaffinity
为什么要把 16 寸 mac book 拿来拿去,是公司发不起电脑吗,还是你自己买不起电脑?
2023-12-22 09:32:53 +08:00
回复了 unt 创建的主题 MySQL 为什么还有很多人不愿意放弃 mysql5.7
查询缓存没有了

https://dev.mysql.com/doc/refman/5.7/en/query-cache.html

The query cache is deprecated as of MySQL 5.7.20, and is removed in MySQL 8.0.
1 ... 3  4  5  6  7  8  9  10  11  12 ... 50  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2849 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 35ms · UTC 11:26 · PVG 19:26 · LAX 03:26 · JFK 06:26
Developed with CodeLauncher
♥ Do have faith in what you're doing.