摘要: 仅作为记录,核心代码 int timestamp = (hours + t.hours) * 60 * 60 + (minutes+t.minutes) * 60 + (seconds + t.seconds); int hours = timestamp / 3600 % 24; int minu 阅读全文
posted @ 2022-03-27 15:49 Naihe\ 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 1.事件背景 事情起因是因为我想安装xvfb,执行sudo apt-get install xvfb发现安装报错,看报错原因是被墙导致,因为我用的默认源也没有挂代理;然后就百度,发现都是互相抄,什么换阿里源啊,163源、中科源之类,我都试过,并且发现这些源在更新过程会有一些错误或者更新被忽略,导致我 阅读全文
posted @ 2022-02-02 12:21 Naihe\ 阅读(688) 评论(0) 推荐(1) 编辑
摘要: Island – 「绿色守护」作者新作,将不老实的应用 隔离 + 冻结 + 双开 [Android] Island 是一款完全针对国产流氓应用而生的守护应用,基于系统原生功能 Android for Work(工作模式),可以让应用读取独立的系统信息,包括联系人、通话记录等隐私内容,从而让其与用户手 阅读全文
posted @ 2022-01-04 12:34 Naihe\ 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-12-11 15:54 Naihe\ 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 今天有场问卷答题,想在电脑网页上查看题目,但被弹窗阻止 一般逻辑是把弹窗元素去除,但背景文字还是模糊的看不清,所以进阶操作是查看网页js代码 通过查看js代码发现了关键内容 我们紧接着在控制台输入 show_zhezhao_utils(0, 0) 完美实现所有需求,这个js函数功能用于跳过登录 还有 阅读全文
posted @ 2021-11-24 23:01 Naihe\ 阅读(4613) 评论(1) 推荐(1) 编辑
摘要: 444444444 000000000 444444444 4::::::::4 00:::::::::00 4::::::::4 4:::::::::4 00:::::::::::::00 4:::::::::4 4::::44::::4 0:::::::000:::::::0 4::::44:: 阅读全文
posted @ 2021-11-14 19:18 Naihe\ 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 6-1 使用函数输出一个整数的逆序数 (20 分) 本题要求实现一个求整数的逆序数的简单函数。 函数接口定义: int reverse( int number ); 其中函数reverse须返回用户传入的整型number的逆序数。 裁判测试程序样例: #include <stdio.h> int r 阅读全文
posted @ 2021-10-03 13:19 Naihe\ 阅读(1215) 评论(0) 推荐(0) 编辑
摘要: print("{}/{}/{} {}:{}.{}".format(*time.localtime())) 阅读全文
posted @ 2021-09-29 12:54 Naihe\ 阅读(32) 评论(0) 推荐(0) 编辑
摘要: Introduction This tutorial contains screenshots for the English version of Windows 10. Separate instructions for older versions of Windows are also av 阅读全文
posted @ 2021-09-18 19:58 Naihe\ 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 一个python巧妙技巧,分享给大家 我的需求是将一个dict的键都format输出,用到了*对字典解包 data = {a: 1, b: 2...} msg = f"{'{} '*len(data)}".format(*data.keys()) 阅读全文
posted @ 2021-09-11 16:36 Naihe\ 阅读(66) 评论(0) 推荐(0) 编辑
// 音乐播放器