V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
V2EX  ›  Need4more  ›  全部回复第 4 页 / 共 14 页
回复总数  271
1  2  3  4  5  6  7  8  9  10 ... 14  
2025 年 11 月 8 日
回复了 Branlice 创建的主题 git 一位高级工程师的 GIT 需要熟悉到什么程度?
一位高级工程师的 Jenkins 需要熟悉到什么程度?
一位高级工程师的 K8s 需要熟悉到什么程度?

除非你是专门做这方面开发的,比如 github 的工程师,才需要了解底层机制,其他知道常用命令+搜索 ai 即可。
2025 年 11 月 7 日
回复了 refsdiary 创建的主题 微信 微信被曝正探索"多台手机登录同一账号"功能!
直接贴链接咋了,什么风气!

https://mp.weixin.qq.com/s/pSGDQqgBvP8uTZBF32LYGQ
2025 年 11 月 7 日
回复了 ainyyy 创建的主题 Java 问一个日志不打印栈信息的问题
#2 、#5 正解
jvm 针对高频异常会复用预分配实例以提升性能。若需完整堆栈,需显式禁用参数-XX:-OmitStackTraceInFastThrow
2025 年 11 月 7 日
回复了 llllliu 创建的主题 深圳 base 深圳远程办公 住在惠州怎么样,有老哥是类似的吗?
这样确实可行,省下大笔房租。op 是怎么找到远程工作的
2025 年 11 月 7 日
回复了 pengtao2001 创建的主题 职场话题 好奇,绩效是不是一种服从性测试?
大家自己想想:团队里是不是谁更听话,谁就拿高绩效。
2025 年 11 月 7 日
回复了 cocong 创建的主题 Java 为何 RestTemplate 无法定制请求
你这太罗嗦了,用 RestTemplateBuilder

@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder) {
return builder
.setConnectTimeout(Duration.ofSeconds(5))
.setReadTimeout(Duration.ofSeconds(5))
.build();
}
严厉斥责:“不想服务回家睡觉去!”
2025 年 11 月 6 日
回复了 sikuu2al 创建的主题 生活 为什么 2025 了还有这么多的苦难教育追崇者?
可以打官方报名电话 0731-8875-0933 ,或者发邮件到 [email protected] ,记得附上孩子照片和简介。也能在新浪微博找 @变形计官方微博报名。
代理开全局模式
2025 年 11 月 4 日
回复了 jingcjie 创建的主题 程序员 字节是会做事的
这个 ide 就是非用不可吗?有那么多替代品啊,他有啥特色其他没有?
关键词:浏览器指纹
2025 年 11 月 3 日
回复了 xtx 创建的主题 分享发现 国内这么多做 ai 的 app,目前来看只有豆包成了。
后续肯定要考虑变现了,可能是回答里参广告
@chunjilikafa1456
// 在 B 站打开任意 page (已登录),在控制台粘贴运行
const uids = [1042653845,
1055149070,
1075400468,
1148923121,
1152997930,
1188004959,
1208114979,
1227735707,
1252039983,
1257852431,
1302669433,
1356882480,
1430439192,
1627242161,
1642531925,
1655279349,
1720634591,
1743345026,
1798118517,
1806922031,
1817661914,
1826766269,
1859459400,
1919627194,
1926952280,
1956866386,
1957313739,
1987938455,
1992873935,
2024349971,
2067273601,
2072500476,
2101682498,
2103756604,
2115931056,
2118239887,
2126699792];

// 从 document.cookie 里尝试提取 csrf token bili_jct
function getCookie(name) {
const m = document.cookie.match(new RegExp('(^|; )' + name + '=([^;]*)'));
return m ? decodeURIComponent(m[2]) : '';
}
const bili_jct = getCookie('bili_jct');
if(!bili_jct) {
console.error('无法找到 bili_jct ,请确保已登录并且 cookie 可用');
}

async function blockUid(uid) {
const url = 'https://api.bilibili.com/x/relation/modify?statistics=%7B%22appId%22:100,%22platform%22:5%7D';
const body = new URLSearchParams({
fid: String(uid),
act: '5',
re_src: '11',
gaia_source: 'web_main',
extend_content: JSON.stringify({ entity: 'user', entity_id: String(uid) }),
csrf: bili_jct
});
const resp = await fetch(url, {
method: 'POST',
headers: {
'content-type': 'application/x-www-form-urlencoded',
'origin': 'https://space.bilibili.com',
'referer': `https://space.bilibili.com/${uid}/dynamic`,
},
body: body.toString(),
credentials: 'include'
});
const j = await resp.json().catch(()=>null);
return { uid, status: resp.status, body: j ?? null };
}

(async () => {
for (const uid of uids) {
// 可选延时:await new Promise(r=>setTimeout(r, 300));
const r = await blockUid(uid);
console.log(r);
}
console.log('finished');
})();
site:bilibili.com intitle:别家素材
1  2  3  4  5  6  7  8  9  10 ... 14  
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3639 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 30ms · UTC 04:25 · PVG 12:25 · LAX 21:25 · JFK 00:25
♥ Do have faith in what you're doing.