Loading

摘要: trpc.msg.register_proxy.RegisterProxy.SsoInfoSync 08 // 1 varint sync_flag DF 0D // 1759 10 // 2 varint req_random F2 BE 85 C7 05 // 1491165042 20 // 阅读全文
posted @ 2026-03-05 09:20 xtyuns 阅读(1) 评论(0) 推荐(0)
摘要: def build_tars_req_packet(servant_name, func_name, req): req_buffer = dumps(JceDict({ 7: dumps(JceDict({ 0: { 'req': dumps(req) } })) })) req_packet_h 阅读全文
posted @ 2026-02-27 16:48 xtyuns 阅读(2) 评论(0) 推荐(0)
摘要: 0F607264FC6318A92B9E13C65DB7CD3C: md5("02:00:00:00:00:00") 阅读全文
posted @ 2026-02-23 15:35 xtyuns 阅读(3) 评论(0) 推荐(0)
摘要: import hashlib import zlib import xxtea from jce import loads key = hashlib.md5(bytes.fromhex('4446472324255e2325245247485228262a4d3c3e3c')).hexdigest 阅读全文
posted @ 2026-01-21 21:55 xtyuns 阅读(9) 评论(0) 推荐(0)
摘要: gamelet: 腾讯游戏小应用平台 https://www.gamelet.qq.com/ quickjs: JS 引擎 https://github.com/quickjs-ng/quickjs turingfd: 腾讯云图灵盾 https://cloud.tencent.com/documen 阅读全文
posted @ 2026-01-14 17:43 xtyuns 阅读(7) 评论(0) 推荐(0)
摘要: pfbs is pixui fbs file converter pxui 是一种精简过的 html5 技术,它不依赖现有开源浏览器代码, 仅实现了界面开发需要的能力,删除了多余的、繁杂的、ui开发几乎用不到的能力。 阅读全文
posted @ 2025-12-19 15:06 xtyuns 阅读(5) 评论(0) 推荐(0)
摘要: object SuShell { private const val SU_CMD = "su" fun exec(cmd: String): Result<String> { val process = Runtime.getRuntime().exec(SU_CMD) val writer = 阅读全文
posted @ 2025-11-20 20:52 xtyuns 阅读(8) 评论(0) 推荐(0)
摘要: iptables 和 nftables iptables 是 Linux 中最常用的防火墙管理软件,它通过 Linux 内核中的 netfilter 模块提供的 Hook 来管理网络数据包的处理和转发。 nftables 是 iptables 的代替品,在 Debian 10、Ubuntu 22、C 阅读全文
posted @ 2024-08-03 20:11 xtyuns 阅读(285) 评论(0) 推荐(0)
摘要: LLMQuestion 你是一个 kotlin 编程语言算法题的评判老师,请根据题目描述和答题者作答内容从正确性、运行效率和优化空间等方面进行评判。 题目描述: 给定一个大小为 n 的数组 nums ,返回其中的多数元素。多数元素是指在数组中出现次数 大于 ⌊ n/2 ⌋ 的元素。 你可以假设数组是 阅读全文
posted @ 2024-06-30 17:14 xtyuns 阅读(38) 评论(0) 推荐(0)
摘要: Debian 系 Linux 发行版中使用 deb 格式的软件安装包,这些软件都安装包通过 dpkg 进行安装,而 apt 是一个基于 dpkg 的软件管理器,它提供了在线安装和自动管理软件依赖的功能。 安装软件 使用 dpkg 安装本地软件包 dpkg -i <deb 软件包文件> 使用 apt 阅读全文
posted @ 2024-06-02 15:22 xtyuns 阅读(172) 评论(0) 推荐(0)
摘要: WebClient WebClient 是 Spring Framework 5.0 中引入的响应式 HTTP 客户端,它提供了一种非阻塞、反应式的方法来处理 I/O,这可以在高流量应用程序中实现更好的可扩展性和更高的性能。 RestClient RestClient 是 Spring Framew 阅读全文
posted @ 2024-05-31 01:20 xtyuns 阅读(325) 评论(0) 推荐(0)
摘要: Project Loom 的主要目的是改善 Java 中的线程和异步技术,贡献的核心技术包括协程和结构化并发。 现状 线程:Thread 异步:Future、CompletableFuture JEP Virtual Threads、Structured Concurrency、Scoped Val 阅读全文
posted @ 2024-05-25 07:25 xtyuns 阅读(64) 评论(0) 推荐(0)
摘要: Java 既可以表示 Java 语言,又可以表示为整个 Java 生态。在 Java 生态中存在两份主要的技术规范:Java 语言规范和 JVM 规范:Java Language and Virtual Machine Specifications JLS Java 语法规范(Java Langua 阅读全文
posted @ 2024-05-25 07:05 xtyuns 阅读(91) 评论(0) 推荐(0)
摘要: 在 kotlin 1.8.0 之前,kotlin 的标准库 kotlin-stdlib 的 jvmTarget 是 Java 1.6,但是如果程序的 jvmTarget 是 1.7 或 1.8,则可以手动添加 kotlin-stdlib-jdk7 或 kotlin-stdlib-jdk8 来使用 k 阅读全文
posted @ 2024-05-15 22:15 xtyuns 阅读(1653) 评论(0) 推荐(0)
摘要: 原因:IDE crashes due to "chrome-sandbox is owned by root and has mode" error when IDE is launching the JCEF in a sandbox 解决方案:关闭 ide.browser.jcef.sandbo 阅读全文
posted @ 2024-05-11 22:07 xtyuns 阅读(610) 评论(0) 推荐(0)