-
-
Google Associated Region Modification
This article is machine-translated.
方法一:https://policies.google.com/country-association-form
Method Two: https://www.youtube.com/watch?v=eEUjzbguxDg
-
Bought netcup's .de domain name
This article is machine-translated.
3€ for the first year and 1.3€ for renewal seems like a pretty good deal!
-
Logging ssh connection errors
This article is machine-translated.
本地SSH配置启用了严格的主机密钥检查(strict host key checking)导致报错
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!Someone could be eavesdropping on you right now (man-in-the-middle attack)!It is also possible that a host key has just been changed.The fingerprint for the ED25519 key sent by the remote host isSHA256:2SuSk386vWazmFK17hIpEA+I13mEqzFEug0hiroQJsqKmQ.Please contact your system administrator.Add correct host key in /root/.ssh/known_hosts to get rid of this message.Offending ECDSA key in /root/.ssh/known_hosts:3remove with:ssh-keygen -f "/root/.ssh/known_hosts" -R "1145:7dc0:100:101:101::71b"Host key for 1145:7dc0:100:101:101::71b has changed and you have requested strict checking.Host key verification failed.原因: 本地known_hosts文件中的记录过时 解决方案删除旧的密钥:
ssh-keygen -f "/root/.ssh/known_hosts" -R "1145:7dc0:100:101:101::71b"再次连接即可
-
Modifying the Terminal Agent Environment
This article is machine-translated.
#设置代理export all_proxy="socks5://username:password@IP:PORT"#取消代理unset all_proxy -
astro turn on excessive animation
This article is machine-translated.
Refer to the official documentation: https://docs.astro.build/zh-cn/guides/view-transitions/ Simply modify Base.astro “. +import { ClientRouter } from ‘astro:transitions ’.
My homepage +Welcome to my website! `` -
Modify vps for ipv6 priority
This article is machine-translated.
vim /etc/gai.conf#precedence ::ffff:0:0/96 100取消注释则为ipv4优先 注释则为ipv6优先 直接ping google.com可检查是否开启
-
Nezha Probe Agent Bailout Script
This article is machine-translated.
#!/bin/bash# Nezha Agent Single Instance Background Startup Scripts# Function: Prevent duplicate startups, ensure unique processesAGENT_BIN="/usr/home/xxx/nazha-agent/nezha-agent"PROCESS_NAME="nezha-agent" # Adjust to the actual process name (check with ps)# Check the program fileif [ ! -f "$AGENT_BIN" ]; thenecho "Error: Executable file $AGENT_BIN not found"exit 1exit 1[ ! -x "$AGENT_BIN" ] && chmod +x "$AGENT_BIN"# Key check: determine if the process already existsif pgrep -f "$PROCESS_NAME" > /dev/null; thenecho "Prompt: nezha-agent is already running, no need to restart!"echo "PID list: $(pgrep -f "$PROCESS_NAME" | tr '\n' ' ')"exit 0exit 0# Background startupnohup "$AGENT_BIN" >/dev/null 2>&1 &echo "Nezha Agent started (PID: $!)"`` -
R1 thinking enhancementprompt
This article is machine-translated.
This is a very important issue, and I’d like you to be very strict about it:
-
Be pragmatic. Practicality and feasibility are the highest requirements.
-
Specific, with a clear path of implementation.
-
The program should be easy to understand, without piling up high sounding words.
-
The program is detailed, not afraid of wordy, but afraid of too few words.
-
Comprehensive program, do not miss any influencing factors
-
Deep thinking, it is crucial to think deeply about the essence of the program.
-
Dialectical thinking, not black and white diodes.
-
Flexible approach, if the problem is too big, break it down step by step.
-
Interspersed guidance to help the questioner go deeper.
-
Look at the big picture, analyze the whole picture with structured thinking.
-
Research in advance, fully consider the background of the questioner
-
After answering the question, optimize it according to the feedback from practice.
-
Prior to replying, review each article to see if it meets the requirements.
-
-
Learn about question and answer prompts
This article is machine-translated.
Please think of me as a complete novice, who wants to learn by constantly thinking about and answering the questions you ask. The flow of our conversation goes like this:
- I ask you a question that I want to understand. 2.
- you think about what prior knowledge I need to have in order to understand the question, and ask me a series of questions so that you can understand my knowledge base and make sure that your questions are specific and easy to answer
- based on my answers, you choose the appropriate level of explanation to ensure that I understand your explanation.
- you need to explain to me the basics that I don’t know but are necessary to understand
- answer my questions.
- Finally, you will need to ask a series of questions to check that I have understood you and to make sure that the questions are specific. 4.
- if you think I have fully understood my initial question, end the conversation, if not, repeat 3.