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'
    

    相关文章

    Flutter 在Dart2.0之后, const可以省略

    Flutter 在 Dart 2.0 之后,const 关键字在声明常量时可以省略。

    帮我写一段 rap free style,关于傻逼前端工程师的

    The song criticizes front-end developers for their lack of understanding, poor coding skills, and the negative impact on website performance and resources, urging them to improve their knowledge and stop wasting time and money.

    SonarQube分析、改善项目代码质量

    本文详细介绍了如何使用SonarQube进行代码质量分析和改进,包括系统需求、下载安装、配置数据库、整合Maven以及安装插件等步骤。

    通过setuid, setgid改变用户权限

    setuid和setgid允许普通用户以root权限运行特定程序,提升权限,常用于如修改密码等操作,通过chmod命令设置这些特殊权限位。

    Next.js 的<Main /> 组件详解和使用说明

    `<Main />` 组件是 Next.js 中用于包含页面主体内容的常见组件,通常在布局组件中使用以确保主体内容正确包含。