本节核心特性 通过webbrowser渲染界面 c#和webBrowser交互 引入CefSharp造成编译问题 https://stackoverflow.com/questions/9086795/the-outputpath-property-is-not-set-for-this-project
vim方式操作windows的explorer
本节核心特性 获取已经打开的窗口列表 激活某个需要的窗口 下一节核心特性 通过webbrowser渲染界面 c#和webBrowser交互 通过SHDo
Mac上pgsql备忘
pgsql 备忘 1 2 3 4 5 $ which pg_ctl $ brew services list $ brew services restart postgresql $ brew services stop postgresql $ brew services start postgresql pgsql 存储位置 pgsql -D 指定的目录下 base目录是存储的数据库数据
微信小程序支付坑
##微信小程序支付坑: 首先:微信的支付 都是微信的端appid和微信商户号mch_id配对使用才能完成支付的。 今天遇到的问题是:微信小程序支付
保险
程序员猝死,谁为你的过劳买单? 猝死、过劳昏倒、腰椎病、脊椎病……加班过劳谁来买单? 保险。(讲讲怎么买对重疾险,干货!) 社保大家都有,但在大病
https连接提示pkix_path错误
关于java中用httpclient访问https服务报错 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable
antlr备忘
antlr 备忘 enter every rule enter expression exit expression exit every rule
git常用命令
创建新的github仓库 git init git add README.md git commit -m “readme.md” git remote add origin https://github.com/lonelyc/MyRepo.git git push -u origin master 在新的仓库中创建分支 获取远程分支列表 git branch -r 在本地创建新的分支 git branch newbranch 切换到新的分
k8s常用命令
获取namespace为 console 的pod列表 kubectl get po -n console namespace console container 为gateway pod id 为console-deploy-7d9dc9f8c5-2lgtc kubectl
关于后端进度条的实现
关于后端进度条的实现 java代码部分 1 2 3 4 5 6 7 8 9 for (int i =0;i<10;i++) { try { TimeUnit.SECONDS.sleep(1); } catch (InterruptedException e) { e.printStackTrace(); } writer.print(i); writer.flush(); } 重点写一个trunk后要及时flush js部分 得益