ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    HTML APP 宣传展示页

    Oct 6, 20221 min read
    https://github.com/sandoche/Mobile-app-landingpage-template
    

    在线制作用于App 宣传和支持页面的脚手架 ,提供在线编辑页面内容, 可基于 github pages 免费部署

    相关文章

    Error with Permissions-Policy header: Unrecognized feature: 'document-domain'.

    The error message suggests removing the unsupported 'document-domain' feature from the Permissions-Policy header and verifying supported features in the browser documentation.

    浏览器的指纹识别

    本文详细介绍了浏览器指纹的类型、识别方法以及如何通过调整系统配置和使用特殊工具来提高在线匿名性,以防止个人信息被收集。

    每一个数据包都应该有对应的Ack吗?

    在TCP协议中,只有接收方成功收到数据包并校验无误后才会发送Ack确认消息,否则发送方会重新发送数据包,直到收到确认,因此并非每个数据包都有对应的Ack。

    Go Gorm 硬删除

    Go Gorm中的硬删除通过直接从数据库删除记录来实现,示例代码为`db.Where("id = ?", userID).Delete(&User{})`,但通常不推荐使用,以避免数据丢失。

    Vue3 和Vue2 事件监听的变化

    Vue3使用`proxy`重写了响应式系统,相比Vue2的`defineProperty`,提供了更全面的监听能力,包括动态属性添加、属性删除以及数组索引和`length`属性的监听。