会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
ascertain
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
25
26
27
28
29
30
31
32
33
···
55
下一页
2021年5月7日
cmd 脚本修改网卡dns
摘要: @echo off cls color 0A chcp 65001 Echo ******************************************************************************* Echo Collect fault information…
阅读全文
posted @ 2021-05-07 08:27 ascertain
阅读(380)
评论(0)
推荐(0)
2021年5月6日
Spring MVC
摘要: package com.example.demo.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; impo
阅读全文
posted @ 2021-05-06 19:01 ascertain
阅读(51)
评论(0)
推荐(0)
thymeleaf springboot
摘要: 上面这个会造成如上错误 引入如下依赖 TestController.java package com.example.demo.controller; import org.springframework.stereotype.Controller; import org.springframewo
阅读全文
posted @ 2021-05-06 18:32 ascertain
阅读(37)
评论(0)
推荐(0)
SpringBoot 静态资源导入
摘要: public resources static 下的文件可直接访问, 优先级 resources > static > public index.html favicon.ico
阅读全文
posted @ 2021-05-06 17:31 ascertain
阅读(77)
评论(0)
推荐(0)
SpringBoot
摘要: 跟踪 application.properties 最后生效 将端口改为9000 实体类 无参构造 有参构造 Getter Setter @Override Dog package com.example.demo.pojo; import org.springframework.beans.fac
阅读全文
posted @ 2021-05-06 16:27 ascertain
阅读(62)
评论(0)
推荐(0)
SpringBoot 简单项目
摘要: https://start.spring.io/ import this project 打包 "C:\Program Files\Java\jdk1.8.0_291\bin\java.exe" -Dmaven.multiModuleProjectDirectory=F:\demo "-Dmaven
阅读全文
posted @ 2021-05-06 13:11 ascertain
阅读(77)
评论(0)
推荐(0)
2021年5月5日
Instrument: BIND
摘要: BIND 9 Documentation (isc.org) Downloads - ISC https://downloads.isc.org/isc/bind9/9.16.28/BIND9.16.28.x64.zip named: 查看构建信息 named -V named.conf acl i
阅读全文
posted @ 2021-05-05 11:41 ascertain
阅读(150)
评论(0)
推荐(0)
2021年5月4日
浏览器插件
摘要: whatruns octotree
阅读全文
posted @ 2021-05-04 16:23 ascertain
阅读(29)
评论(0)
推荐(0)
2021年5月2日
更改powershell执行脚本权限
摘要: 本地创建的脚本都是可以运行的,从网络下载的必须要有数字签名才能够执行。实际使用过程中,用户可能会遇到脚本执行不了的现象。 查看当前权限 Get-ExecutionPolicy 查看运行 权限类别 Get-help Set-ExecutionPolicy 设置为 Unrestricted
阅读全文
posted @ 2021-05-02 17:53 ascertain
阅读(479)
评论(0)
推荐(0)
node.js mysql cheerio superagent 小爬虫 nodemailer
摘要: const mysql=require('mysql') const link=mysql.createConnection({ host:'localhost', port:3306, user:'root', password:'cruces', database:'abate', }) //
阅读全文
posted @ 2021-05-02 15:01 ascertain
阅读(46)
评论(0)
推荐(0)
2021年4月30日
浏览器插件
摘要: whatruns
阅读全文
posted @ 2021-04-30 07:51 ascertain
阅读(32)
评论(0)
推荐(0)
2021年4月29日
PowerShell: cmdlet
摘要: Service: get-service start-service start-service -name spooler -v stop-service restart-service get-service -name spooler | restart-service get-service
阅读全文
posted @ 2021-04-29 09:09 ascertain
阅读(92)
评论(0)
推荐(0)
2021年4月26日
策略模式
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi
阅读全文
posted @ 2021-04-26 08:01 ascertain
阅读(32)
评论(0)
推荐(0)
2021年4月25日
弹出层 单例模式
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi
阅读全文
posted @ 2021-04-25 09:48 ascertain
阅读(44)
评论(0)
推荐(0)
2021年4月23日
python 健康脚本
摘要: import sys, threading, tkinter,time def stop(window): # window.destroy() window.quit() sys.exit(0) window = tkinter.Tk() window.title('invariant!') wi
阅读全文
posted @ 2021-04-23 19:21 ascertain
阅读(131)
评论(0)
推荐(0)
MySQL exercise 文档
摘要: show status like 'innodb_row_lock%';select table_name,table_rows from information_schema.tables where table_schema='courier' order by table_rows desc;
阅读全文
posted @ 2021-04-23 18:46 ascertain
阅读(71)
评论(0)
推荐(0)
exercise
摘要: json.dumps(data,ensure_ascii=False,indent=4,sort_keys=True,skipkeys=True,separators=(',',': ')) try: b(1,0) except Exception as e: logging.exception(s
阅读全文
posted @ 2021-04-23 18:30 ascertain
阅读(115)
评论(0)
推荐(0)
2021年4月22日
python zipfile
摘要: import os, zipfile def deflate(paths, zip_path): z = zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED, allowZip64=True, compresslevel=9) for path i
阅读全文
posted @ 2021-04-22 17:10 ascertain
阅读(62)
评论(0)
推荐(0)
正则Regular Expression
摘要: js 正向肯定预查 正向否定预查 反向肯定预查 反向否定预查 (?=) (?!) (?<=) (?<!)python
阅读全文
posted @ 2021-04-22 08:39 ascertain
阅读(99)
评论(0)
推荐(0)
2021年4月21日
Source Code Pro ( Windows)
摘要: 下载 https://github.com/adobe-fonts/source-code-pro/releases 将ttf后缀的字体文件copy到Windows字体文件夹 重启IDE
阅读全文
posted @ 2021-04-21 19:17 ascertain
阅读(350)
评论(0)
推荐(0)
上一页
1
···
25
26
27
28
29
30
31
32
33
···
55
下一页
公告