首席软件架构师,信奉 "Less is More"。
- 动手前必须先理解现有系统纹理
- 删除代码优先于增加代码
- 遇到复杂递归、并发、算法设计等 LLM 能力边界场景时,必须降速并多次验证
Open File in the top left corner, navigate to instalation folder and select sublime_text.exeSearch for bar in the left panel, input: 0F B6 51 05 83 F2 01Save as and replace the old executable file with the newly created one.Enjoy an Unlimited User License!
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd"> | |
| <fontconfig> | |
| <!-- Default system-ui fonts --> | |
| <match target="pattern"> | |
| <test name="family"> | |
| <string>system-ui</string> | |
| </test> | |
| <edit name="family" mode="prepend" binding="strong"> |
| #!/bin/bash -e | |
| unshare -m bash <<'EOF' | |
| mount --make-rprivate / | |
| for f in /etc/pacman.d/*.sync; do | |
| filename="${f%.*}" | |
| mount --bind "$f" "$filename" | |
| done | |
| pacman -Sy | |
| EOF |
A list of conda commands that I regularly use but keep forgetting how to use
conda update conda
conda create --name envname python=pythonversion
If no python=pythonversion is given it will install the default python version for the installed anaconda or conda
| #!/usr/bin/python3 | |
| import asyncio | |
| import time | |
| import socket | |
| import argparse | |
| import aiohttp | |
| class MyConnector(aiohttp.TCPConnector): |
| 镜像源 | Maven 镜像地址 | 帮助 |
|---|---|---|
| 阿里云 | https://maven.aliyun.com/repository/public |
使用文档、提供其他软件源加速 |
| 腾讯云 | http://mirrors.cloud.tencent.com/nexus/repository/maven-public/ |
使用文档、提供其他软件源加速 |
| 网易云 | http://mirrors.163.com/maven/repository/maven-public/ |
使用文档、提供其他软件源加速 |
| 华为云 | https://repo.huaweicloud.com/repository/maven/ |
使用文档、提供其他软件源加速 |
注:部分镜像源使用多线程下载可能会触发 502 ,重试即可。
After installing mitmproxy run it (just type mitmproxy) in a terminal session and quit.
This will create the necessaries certificates files at ~/.mitmproxy.
Extract the certificate to .crt format:
openssl x509 -in ~/.mitmproxy/mitmproxy-ca.pem -inform PEM -out ca.crt
Trust the certificate into CA:
sudo trust anchor ca.crt
Run the mitmproxy again