git代理设置方法解决

设置proxy
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
取消proxy
git config --global --unset http.proxy
git config --global --unset https.proxy
socks5方式
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'

选一个用就可以

PS索引怎么解锁 photoshop取消索引方法

打开“图像”=>“模式”,这个时候,现在“索引颜色”前面打了个对号。
只需要去掉“索引颜色”前面的对勾,选择RGB颜色,或者CMYK颜色,这个时候,图层面板里的就变成背景字样了。
这个时候,索引的解锁就完成了,我们就能用画笔修复工具了。

出处:https://jingyan.baidu.com/article/7f766dafb906f14101e1d00e.html

安卓app检测是否安装微信和支付宝

/**
 * 检测是否安装支付宝
 *
 * @return
 */
public boolean checkAliPayInstalled() {

    Uri uri = Uri.parse("alipays://platformapi/startApp");
    Intent intent = new Intent(Intent.ACTION_VIEW, uri);
    ComponentName componentName = intent.resolveActivity(this.getPackageManager());
    return componentName != null;
}

/**
 * 检测是否安装微信
 * @return
 */
public boolean checkWechatInstalled() {

    Uri uri = Uri.parse("weixin://");
    Intent intent = new Intent(Intent.ACTION_VIEW, uri);
    ComponentName componentName = intent.resolveActivity(this.getPackageManager());
    return componentName != null;
}