2026年6月30日
摘要:
提示词工程入门 什么是提示词: 提示词(Prompt)是用户向AI模型输入的具体指令、问题、描述文本或任务说明。 提示词和提示词工程的区别: 提示词(Prompt)是单词交互的”指令代码“,是用户与AI对话时输入的具体内容。仅解决即时的单点问题。 提示词工程(Prompt Engineering)是
阅读全文
posted @ 2026-06-30 16:35
Hanson_Wang
阅读(13)
推荐(0)
2026年6月26日
摘要:
认识大模型 人工智能: AI(Artificial Inteligence,AI)是一个广泛涉及计算机科学、数据分析、统计学、机器工程、语言学神经科学、哲学和心理学等多个学科的领域,旨在研究、涉及、构建具备智能、学习、推理和行动能力的计算机和机器。 GAI(Generative AI),生成式人工智
阅读全文
posted @ 2026-06-26 01:10
Hanson_Wang
阅读(6)
推荐(0)
2023年12月26日
摘要:
废话不多说,直接上代码: import sys import time import random import pyautogui while 1: time.sleep(180) pyautogui.moveTo(x=1000, y=random.randint(100, 300)) 转成exe
阅读全文
posted @ 2023-12-26 21:32
Hanson_Wang
阅读(182)
推荐(0)
2023年9月3日
摘要:
自动化测试工具selenium使用指南 python+selenium环境安装: 直接pip install selenium 安装webdriver 打开/关闭浏览器: import time from selenium import webdriver browser = webdriver.E
阅读全文
posted @ 2023-09-03 11:06
Hanson_Wang
阅读(205)
推荐(0)
2023年4月14日
摘要:
Classic Ports to Know 22 = SSH ( Secure Shell) - log into a Linux instance 21 = FTP (File Transfer Protocol) - upload file into a file share 22 = SFTP
阅读全文
posted @ 2023-04-14 15:37
Hanson_Wang
阅读(44)
推荐(0)
摘要:
AWS组件有哪些: 简单存储服务: S3是存储文件的 aws 服务。它是基于对象的存储,即可以存储图像、word 文件、pdf 文件等。S3 中可以存储的文件大小从 0 Bytes 到 5 TB。它是一种无限的存储介质,即可以随心所欲地存储数据。S3包含一个存储文件的存储桶。存储桶就像存储文件的文件
阅读全文
posted @ 2023-04-14 15:37
Hanson_Wang
阅读(332)
推荐(0)
2023年3月30日
摘要:
敏捷价值观: Individuals and interactions 较之于过程和工具,更注重人及其相互作用的价值 Working software 较之于无所不及的各类文档,更注重可运行的软件的价值 Customer collaboration 较之于合同谈判,更注重与客户合作的价值 Respo
阅读全文
posted @ 2023-03-30 17:42
Hanson_Wang
阅读(56)
推荐(0)
2023年3月4日
摘要:
IAM:Users & Groups IAM = Identity and Access Management, Global service Root account created by default, shouldn`t` be used or shared Users are people
阅读全文
posted @ 2023-03-04 15:00
Hanson_Wang
阅读(44)
推荐(0)
2022年11月28日
摘要:
What is a server composed of? Compute: CPU Memory: RAM Storage: Data Database: Store data in a structured way Network: Routers, switch, DNS server The
阅读全文
posted @ 2022-11-28 10:54
Hanson_Wang
阅读(70)
推荐(0)
2022年6月1日
摘要:
Yaml文件:一种配置文件,类似于xml、json、ini等。 Yaml文件结构简单,写法清晰,举个栗子: network: name: abc type: internal gateway: 10.10.10.111 Yaml文件的写法有个特别要注意的地方: 1. 同一级的字段要对齐 2. 使用缩
阅读全文
posted @ 2022-06-01 14:58
Hanson_Wang
阅读(1930)
推荐(0)