Home
Yates Zhang
Cancel

Windows Commandline下设置代理命令行代理proxy

refer to:  https://stackoverflow.com/questions/26992886/set-proxy-through-windows-command-line-including-login-parameters 总之就是 set HTTP_PROXY, HTTPS_PROXY这样的变量,就可以用了。 PS D:\workspace\registe...

Api 注册rapidapi并获得api_key的过程

refer to:   https://rapidapi.com 1. 打开网址  2. 正常注册(会发送个邮件) 3. 创建项目: 4. 打开这个网址: https://rapidapi.com/OSoMe/api/botometer-pro 5. 把它订阅到刚才创建的项目中,如下图: 6. 需要信用卡付费,所以这里需要选择 free版本的。 7....

Rails 一些地方例如order中使用arel_sql

refer to: https://stackoverflow.com/questions/49887593/deprecation-warning-dangerous-query-method-method-whose-arguments-are-used-as Dangerous query method (method whose arguments are used as raw ...

Postgres 排序时对于string类型的列不能简单的order_by_xx_asc会发现null排在首位

refer to: https://stackoverflow.com/questions/7621205/sort-null-values-to-the-end-of-a-table 需要使用语句: order by xx desc nulls last 上面的 nulls  last就表示,把nulls 的值放到最后。 (也可以改成first)

Android 如何保持app不被自动关闭app_run_background

refer to: https://nine-faq.9folders.com/articles/37422-stop-your-huawei-smartphone-from-closing-apps-when-you-lock-the-screen  https://www.shezhan88.com/electr/1229269.html https://www.baidu....

Linux_windows Proxy_sthp_socks5转换为https_http代理

refer to: https://github.com/KaranGauswami/socks-to-http-proxy/ https/http代理是之前的主流。 socks5代理是目前的主流。 目前我的问题是,socks5代理好用,需要一个稳定的http/https代理。 之前用的是 python proxy ( pproxy) 发现该软件的特点是只能跑在8080,而且特别简单,无法...

Vim 多个plugin的比较_vim Plug是目前第一的_vim Plug的用法

refer to: https://vi.stackexchange.com/questions/388/what-are-the-differences-between-the-vim-plugin-managers https://www.makeuseof.com/best-vim-plugin-managers/ 排名前面的是 vim-plugin pathogen vundl...

Vim 使用vim9_command_t_vim_plugin

refer to: vim: https://github.com/vim/vim command-t: https://github.com/wincent/command-t#readme fuzzyfinder: https://github.com/junegunn/fzf.vim/ vim-plug: https://github.com/junegunn/vim-plug ...

Java Springboot急速入门

refer to: https://spring.io/quickstart 创建骨架代码 进入   https://start.spring.io/   会看到这样的页面。 特别神奇,为啥不用cmd 呢? 解压缩: 并确定好你的java 版本,检查 maven版本是否跟pom.xml 中的一致。  不一致的话安装asdf maven...

Java Asdf_install_java_maven_java_home

refer to: https://github.com/halcyon/asdf-java 1. 安装asdf 2. 安装asdf java plugin: asdf plugin-add java https://github.com/halcyon/asdf-java.git 3. JAVA_HOME 直接 which java 然后设置到~/.bashrc中: export JA...