摘要: 1.camelCase(驼峰命名法) 命名规则是将多个单词组合在一起,每个单词的首字母小写,而后续单词的首字母大写,形成一个单一的标识符。 示例:firstName 和 lastName 2.PascalCase(帕斯卡命名法) 命名规则是将多个单词组合在一起,每个单词的首字母大写,形成一个单一的标 阅读全文
posted @ 2023-08-31 17:19 洋葱土豆随心匠 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 提问1: EXCEL VLOOKUP 回答1: VLOOKUP是Excel中的一种查找函数,用于在一个表格中查找某个值,并返回该值所在行的指定列的值。其语法如下: ```VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]) 阅读全文
posted @ 2023-05-13 09:32 洋葱土豆随心匠 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 1.安装certbot yum install certbot 2.获取证书 使用certbot certonly命令然后根据提示操作即可 获取完之后可以通过certbot certificates命令查看证书 3. 在nginx增加配置 listen 443 ssl; ssl_certificat 阅读全文
posted @ 2022-03-13 17:16 洋葱土豆随心匠 阅读(145) 评论(0) 推荐(0) 编辑
摘要: Django框架 https://docs.djangoproject.com/zh-hans/2.1/intro/ matplotlib画廊 http://matplotlib.org/ 阅读全文
posted @ 2020-06-04 17:30 洋葱土豆随心匠 阅读(168) 评论(0) 推荐(0) 编辑
摘要: iris框架 https://iris-go.com/ 6 款最棒的 Go 语言 Web 框架简介 https://studygolang.com/articles/11897#reply25 beego框架 https://beego.me/ 阅读全文
posted @ 2020-06-04 17:16 洋葱土豆随心匠 阅读(126) 评论(0) 推荐(0) 编辑
摘要: SELECT 表名 = case when a.colorder=1 then d.name else '' end, 表说明 = case when a.colorder=1 then isnull(f.value,'') else '' end, -- 字段序号 = a.colorder, 字段 阅读全文
posted @ 2020-05-25 08:37 洋葱土豆随心匠 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 通过网上搜索发现主要原因是: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers看里面svn相关项是否在前15个。因为windows最多支持15种角标 把s 阅读全文
posted @ 2020-01-19 08:45 洋葱土豆随心匠 阅读(661) 评论(0) 推荐(0) 编辑
摘要: 执行 "/root/.acme.sh"/acme.sh --cron --home "/root/.acme.sh" 变更网站根目录会出现自动更新失败,此时需要变更acme对应的配置中的网站根目录 /root/.acme.sh/dataanalysis.univ-bio.com/dataanalys 阅读全文
posted @ 2019-11-25 14:56 洋葱土豆随心匠 阅读(592) 评论(0) 推荐(0) 编辑
摘要: 使用where java查看java所在路径,会发现在C:\Windows\System32里还有一个java,把对应的3个java相关的都删掉即可。 阅读全文
posted @ 2019-08-29 09:24 洋葱土豆随心匠 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 第一步:下载acme.sh,以下四种方式都可curl https://get.acme.sh | sh wget -O - https://get.acme.sh | sh curl https://raw.githubusercontent.com/Neilpang/acme.sh/master/ 阅读全文
posted @ 2019-02-02 11:06 洋葱土豆随心匠 阅读(1235) 评论(0) 推荐(0) 编辑