摘要:
列出所有用户aws iam list-users 阅读全文
摘要:
Steps to implement sts code.1. create IAM user - IAM2. give few permission to this IAM user - p1, p23. create one role which IAM user can assume it - 阅读全文
摘要:
数据容器/数组/集合Python: 对数据容器的操作 # 对list进行切片,从1开始,4结束,步长1(默认步长为1) my_list = [0, 1, 2, 3, 4, 5, 6] result1 = my_list[1:4] print(f"结果1:{result1}") # 对tuple进行切 阅读全文
摘要:
IDEA报错: 2023-09-25 16:16:56,738 [ 178934] ERROR - nSystem.impl.ActionManagerImpl - [Plugin: com.zhaow.restful.toolkit] com.intellij.diagnostic.PluginE 阅读全文
摘要:
<p><strong>run out of something<br /></strong> - to use all of something - to have nothing left.<br />e.g. <br />The printer has run out of 阅读全文
摘要:
正则表达式问号 ? 的用法1. 最常用的就是放在元字符后面的,表示前面的元字符出现零次或一次,例如"a?"等价于"a{0,1}";2. 另一种情况就是放在量词后面的,与“贪婪型匹配(尽可能多)”相对,表示尽可能少地匹配, 如对于字符串"ab(cd)(ef)",如果用“贪婪”的正则 "\(.*\)" 阅读全文
摘要:
Idea 快捷键Ctrl + (+/-) : 展开当前方法/折叠当前方法Ctrl + Shift + (+/-) : 展开所有方法/折叠所有方法Alt + 上键/下键 : 跳转到前一个方法/跳转到后一个方法 阅读全文
摘要:
run out of something - to use all of something - to have nothing left.e.g. The printer has run out of ink. Can you change the cartridge please? We onl 阅读全文
摘要:
PG控制台常用的命令 设置密码 \password 退出 \q 查看SQL命令的解释,比如 \h select \h 查看psql命令列表 \? 列出所有数据库 \l 连接其他数据库 \c [database_name] 列出当前数据库的所有表格 \d 列出某一张表格的结构 \d [table_na 阅读全文