This commit is contained in:
2025-12-27 11:44:50 +08:00
commit ccd43fac1f
1193 changed files with 384161 additions and 0 deletions
@@ -0,0 +1,193 @@
# 整体性思考有多重要
在第五项修炼书中提倡系统性思考
在认知觉醒中提出要提升元认知
在项目管理中让团队成员站在商业价值的角度看得项目工作
在中国诗词中有说不识庐山真面目,只缘身在此山中
,还有盲人摸象的故事。
这些都是在帮我们提升认知,对团队成长的认知,对个人成长的认知,对项目的认知,对周围事物的认知,共性就是提升认知的高度,强调了认知的整体性。
---
接码平台:
https://sms-activate.org/cn
---
奈飞数字花园部署 使用github账号注册的
https://app.netlify.com/teams/kyugao/overview
数字花园的框架 https://dg-docs.ole.dev/
#数字花园 ^bn0fzm
---
[scispace](https://typeset.io/)
[各大视频网站下载](https://youtube.iiilab.com/)
[接码平台](https://sms-activate.org/cn)
[aiChat](https://chat.openai.com/chat)
---
html片段
html分页代码 `<div style='page-break-after: always;'></div>`
网页防复制 `javascript:void($={});`
[网页防复制](https://product.pconline.com.cn/itbk/software/dnyw/1435/14356671.html)
---
在centos中编译c/cpp共享库,在/etc/ld.so.conf配置库目录
把库的路径,添加进去,如:/usr/local/ffmpeg/lib/
配置后,执行ldconfig,更新连接配置
---
本地起一个rtmp服务
docker create --name ai_rtmp_svr -p1936:1935 aler9/rtsp-simple-server
---
编译Nginx,通过configure指定加载生效的组件。
通过nginx -V可以查看当前nginx的configure配置。
---
sudo certbot certonly --text --agree-tos --email 917929050@qq.com --standalone -d ai.cyysvc.com
sudo certbot-auto certonly --manual --preferred-challenge dns -d ai.cyysvc.com
证书存放地址
/etc/letsencrypt/live
---
163 mail: YTENIWKKEGODDSPD
---
gdcyy qcloud:
https://cloud.tencent.com/login/subAccount/100013636448?type=subAccount&username=gaoyu
主账号id100013636448
子账号:gaoyu
密码:GDcyy2022@
---
ghost.taotechip.com
lean cloud token:
eU2KUqUJ2akFkYuOGUgQUmYuGhfGKC4sfrhqBD41mLl72vqp4xT9Xbg2wHYn0RG4-cn-n1
---
通过技能工作
通过学习掌握技能
通过思考判断决择
---
心里辅导
居家养老
阿茨海默症,老年痴呆
居家养老
---
[百度超级链5.1版本文档](https://xuper.baidu.com/n/xuperdoc/index.html)
---
使用xuperIDE可以:
1. 进行合约开发
1. 连接xuperchain服务
1. 账户管理
1. 不过因为不知明的原因,无法连接到链上进行区块查看
---
赵 孟 干 辛 庙 合 争 应 肩 她 巡 造
---
[Helm Chart 中通过 configMap 管理应用程序配置文件](https://blog.csdn.net/m0_48267651/article/details/106452153)
使用configmap动态加载配置文件的思路,如上面链接
---
apache ab工具,模拟并发
布仑过滤器
吴茂星
---
docker run 设置环境变量的问题,源自网址[Docker run设置环境变量不生效的问题](https://www.cnblogs.com/justtear/p/14214064.html)
-e 一定要在run后面,否则不生效,这个是巨坑
---
由共识代码构造的可交互全息世界
---
在命令行中执行mysql语句
mysql -h 192.168.3.223 -uroot -pGDcyy@123 -e 'show databases;'
---
导入mysql脚本
mysql u用户名 p密码 –D数据库<【sql脚本文件路径全名】,示例:
mysql uroot p123456 -Dtest < /home/zj/create_table.sql
---
centos 安装 kubernetes 时,以container为基础镜像运行时,出现podman冲突。
`yum erase podman buildah`
---
通过vscode的remote ssh插件,可以连接到服务器上改远端的配置文件。
---
helm install --dry-run --debug --generate-name .
helm upgrade --namespace ccy-devops ccy-harbor . --set externalURL=https://192.168.3.218
kubectl get pod -n scop-center | grep nacos | awk '{print $1}' | xargs kubectl delete pod -n scop-center
---
nginx@192.168.2.212
cd /usr/local/nginx/sbin/
./nginx
./nginx -s stop
./nginx -s quit
./nginx -s reload
---
[NAME: ccy-harbor
LAST DEPLOYED: Fri Jan 7 10:18:24 2022
NAMESPACE: ccy-devops
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
CHART NAME: harbor
CHART VERSION: 11.2.0
APP VERSION: 2.4.1
** Please be patient while the chart is being deployed **
1. Get the Harbor URL:
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
Watch the status with: 'kubectl get svc --namespace ccy-devops -w ccy-harbor'
export SERVICE_IP=$(kubectl get svc --namespace ccy-devops ccy-harbor --template "{{ range (index .status.loadBalancer.ingress 0) }}{{ . }}{{ end }}")
echo "Harbor URL: http://$SERVICE_IP/"
2. Login with the following credentials to see your Harbor application
echo Username: "admin"
echo Password: $(kubectl get secret --namespace ccy-devops ccy-harbor-core-envvars -o jsonpath="{.data.HARBOR_ADMIN_PASSWORD}" | base64 --decode)
#gdcyy_harbor](name: ccy-harborLAST DEPLOYED: Fri Jan 7 10:18:24 2022NAMESPACE: ccy-devopsSTATUS: deployedREVISION: 1TEST SUITE: NoneNOTES:CHART NAME: harborCHART VERSION: 11.2.0APP VERSION: 2.4.1** Please be patient while the chart is being deployed **1. Get the Harbor URL: NOTE: It may take a few minutes for the LoadBalancer IP to be available. Watch the status with: 'kubectl get svc --namespace ccy-devops -w ccy-harbor' export SERVICE_IP=$(kubectl get svc --namespace ccy-devops ccy-harbor --template "{{ range (index .status.loadBalancer.ingress 0) }}{{ . }}{{ end }}") echo "Harbor URL: http://$SERVICE_IP/"2. Login with the following credentials to see your Harbor application echo Username: "admin" echo Password: $(kubectl get secret --namespace ccy-devops ccy-harbor-core-envvars -o jsonpath="{.data.HARBOR_ADMIN_PASSWORD}" | base64 --decode)#gdcyy_harbor)