😭😭😭

Today is another day.
😭😭😭


1.安装npm
# Download and install nvm:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
# in lieu of restarting the shell
\. "$HOME/.nvm/nvm.sh"
# Download and install Node.js:
nvm install 22
# Verify the Node.js version:
node -v # Should print "v22.17.0".
nvm current # Should print "v22.17.0".
# Verify npm version:
npm -v # Should print "10.9.2".
2.设置terminal环境 使用API模式
# https://aistudio.google.com/app/apikey google账户Gemini api
echo 'export GEMINI_API_KEY="AIzaSyAO0qfzddYCzoPXdRdnXadsDEMP10cOXiw"' >> ~/.zshrc
source ~/.zshrc
3.安装Gemini CLI 并选择API模式
npm install -g @google/gemini-cli
gemini
4.运行
#terminal内之间执行
gemini


在执行某些 iOS 快捷指令(Shortcut)时,手机顶部总是会弹出“轻点以回应”的提示消息,非常烦人,而且在系统设置中的通知设置界面根本找不到快捷指令相关的通知设置(目前使用 iOS 15.7.1),所以无法直接关闭。
在网上反复查找关闭的方法,花了接近 2 小时,终于借助 网上的一篇攻略文章 把这个问题解决了。
sihp1020.dl文件至/etc目录VI /etc/hotplug.d/usb/Printer-HP1020#!/bin/sh set -e # 固件路径 FIRMWARE=/etc/sihp1020.dl # 打印机路径,可以从OpenWRT的USB打印机界面中中查看 DEVICE=/dev/usb/lp0 # Debug Log File LOGFILE=/tmp/hp1020 if [ "$PRODUCT" = "3f0/2b17/100" -a "$ACTION" = "bind" -a "$DEVTYPE" = "usb_device" ]; then echo "$(date): USB printer binded. Trying to upload firmware..." >> $LOGFILE cat $FIRMWARE > $DEVICE echo "$(date): Success. Done." >> $LOGFILE exit fi
加入首次启动 local startup /etc/rc.local
cat /etc/sihp1020.dl >> /dev/usb/lp0
打印机开机后触发USB热插拔事件,HP1020打印机绿灯常亮并立即进行自检,然后红灯绿灯交替闪烁再次自检,随后绿灯常亮
出处: https://www.pizzayy.com/openwrt-实现hp1020打印机网络共享.html?doing_wp_cron=1714973122.5799219608306884765625

Have you encountered the “Package crypto/ecdh is not in GOROOT” error while working with Go in Linux? This error can be frustrating, but it’s typically due to misconfigurations or outdated Go installations. In this quick guide, we’ll walk you through the steps to resolve this issue.
If you suspect that your current Go installation is causing the problem, you can uninstall it before re-installing the latest version. Use the following commands:
$ sudo apt-get remove golang-go
2. Remove the golang-go dependencies:
$ sudo apt-get remove — auto-remove golang-go
3. Uninstall the existing Go package:
$ sudo rm -rvf /usr/local/go
Now, let’s install the latest Go version:
2. Extract the archive file:
$ sudo tar -xvf go1.21.3.linux-amd64.tar.gz
3. Place the extracted Go directory in the desired location (e.g., /usr/local):
$ sudo mv go /usr/local
To configure Go properly, you need to set up environment variables:
$ export GOROOT=/usr/local/go
2. Define GOPATH as your Go workspace directory:
$ export GOPATH=$HOME/go
3. Add Go binary paths to your PATH:
$ export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
4. Reload environment variables:
$ source ~/.profile
Finally, verify your Go installation to ensure it’s working correctly:
$ go version
With these steps, you should have successfully resolved the “Package crypto/ecdh is not in GOROOT” error and updated your Go installation to the latest version. Your Go environment should now be correctly configured and ready for your projects. Happy coding!
Reddit问答版:在你曾经受到的建议里,有哪些是你开始时并不理解但在后来证明非常明智的?
-「爱并不能解决一切问题。」这是一个非常难以学会的事情,尤其是当你如此爱一个人的时候。但有时候,再多的爱也不足以拯救他们免于自我毁灭。他们必须足够爱自己,才会想要改变,而无论你给予他们多少爱,都无法强迫他们这样做。
source:r/AskReddit/comments/1b8sfer/whats_a_piece_of_advice_youve_received_that