ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    正则获取JD cookies

    Dec 7, 20214 min read
    var CV = 'JD完整cookie';
    var CookieValue = CV.match(/pt_pin=.+?;/) + CV.match(/pt_key=.+?;/);
    copy(CookieValue);
    

    相关文章

    如何应对与上级领导意见不一致的情况?

    应对与上级领导意见不一致时,应先尊重并理解上级立场,适当提出自己观点并提供支持数据,保持礼貌沟通,若不被接受则遵守决定并寻求合作。

    Trojan的优点

    Trojan通过TLS加密和伪装成真实网站流量,提供更安全、快速且稳定的科学上网体验,尽管搭建需要域名和SSL证书。

    GMS(Google Mobile Services)

    GMS (Google Mobile Services) is a suite of pre-installed Google applications and APIs on Android devices, offering essential services like search, maps, email, and cloud storage, along with integration with Google Play ecosystem for enhanced user experience.

    ISO 8601 string 表示法

    ISO 8601表示法规定年用四或五位数字表示,月、日用两位数字,基本格式仅用数字,扩展格式用短横线分隔,时间前加T,且年份必须四位以防混淆。

    如何使用Golang 实现类似于 ping的命令

    在 Golang 中,可以使用 `net` 和 `time` 库实现一个简单的 ICMP Echo 请求(类似 ping 命令),但需在 root 权限下运行。