ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    设置http:https proxy及忽略proxy的方法

    Oct 29, 20213 min read

    对那些没有域名解析通过绑定hosts文件来访问的域名,不让其走http/https代理

    在/etc/bashrc或者/etc/profile中添加如下环境变量:

    export no_proxy='a.test.com,127.0.0.1,2.2.2.2'
    

    相关文章

    如何解决 z-index 失效的问题?

    解决z-index失效问题需确保元素定位为absolute、relative或fixed,父元素也需正确设置,且z-index值应为整数并高于其他元素。

    JavaScript中的setTimeout和setInterval有何不同之处?

    JavaScript中的setTimeout函数用于一次性延迟执行,而setInterval函数用于重复执行直到被清除。

    Mycat读写分离与主从切换

    MyCat是一款开源的分布式数据库中间件,支持读写分离和主从切换,分别适用于读多写少和高可用性场景,以提高数据库性能和稳定性。

    Notion 有没有汉化语言包?

    Notion 已支持中文界面,用户可在设置中切换语言至中文。

    Why deep learning? 为什么选择深度学习?

    Deep learning is preferred due to its superior performance, automatic feature extraction, ability to detect complex patterns, scalability, and unsupervised learning capabilities, making it a powerful tool for analyzing intricate relationships in large datasets.