<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Posts on slm的研发笔记</title>
    <link>https://007slm.github.io/post/</link>
    <description>Recent content in Posts on slm的研发笔记</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>zh-cn</language>
    <lastBuildDate>Fri, 01 Feb 2019 15:50:51 +0800</lastBuildDate>
    
	<atom:link href="https://007slm.github.io/post/index.xml" rel="self" type="application/rss+xml" />
    
    
    <item>
      <title>Vimexplorer02</title>
      <link>https://007slm.github.io/post/vimexplorer/vimexplorer02/</link>
      <pubDate>Fri, 01 Feb 2019 15:50:51 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/vimexplorer/vimexplorer02/</guid>
      <description>本节核心特性 通过webbrowser渲染界面 c#和webBrowser交互 引入CefSharp造成编译问题 https://stackoverflow.com/questions/9086795/the-outputpath-property-is-not-set-for-this-project</description>
    </item>
    
    <item>
      <title>vim方式操作windows的explorer</title>
      <link>https://007slm.github.io/post/vimexplorer/vimexplorer01/</link>
      <pubDate>Fri, 01 Feb 2019 15:49:09 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/vimexplorer/vimexplorer01/</guid>
      <description>本节核心特性 获取已经打开的窗口列表 激活某个需要的窗口 下一节核心特性 通过webbrowser渲染界面 c#和webBrowser交互 通过SHDo</description>
    </item>
    
    <item>
      <title>Mac上pgsql备忘</title>
      <link>https://007slm.github.io/post/mac%E4%B8%8Apgsql%E5%A4%87%E5%BF%98/</link>
      <pubDate>Fri, 18 Jan 2019 10:11:55 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/mac%E4%B8%8Apgsql%E5%A4%87%E5%BF%98/</guid>
      <description>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目录是存储的数据库数据</description>
    </item>
    
    <item>
      <title>微信小程序支付坑</title>
      <link>https://007slm.github.io/post/%E5%BE%AE%E4%BF%A1%E6%94%AF%E4%BB%98%E5%9D%91/</link>
      <pubDate>Wed, 16 Jan 2019 11:30:16 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/%E5%BE%AE%E4%BF%A1%E6%94%AF%E4%BB%98%E5%9D%91/</guid>
      <description>##微信小程序支付坑： 首先：微信的支付 都是微信的端appid和微信商户号mch_id配对使用才能完成支付的。 今天遇到的问题是：微信小程序支付</description>
    </item>
    
    <item>
      <title>保险</title>
      <link>https://007slm.github.io/post/baoxian/</link>
      <pubDate>Tue, 15 Jan 2019 21:30:16 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/baoxian/</guid>
      <description>程序员猝死，谁为你的过劳买单？ 猝死、过劳昏倒、腰椎病、脊椎病……加班过劳谁来买单？ 保险。（讲讲怎么买对重疾险，干货！） 社保大家都有，但在大病</description>
    </item>
    
    <item>
      <title>https连接提示pkix_path错误</title>
      <link>https://007slm.github.io/post/java%E8%BF%9E%E6%8E%A5https%E6%9C%8D%E5%8A%A1pkix-path%E9%94%99%E8%AF%AF/</link>
      <pubDate>Tue, 08 Jan 2019 11:30:16 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/java%E8%BF%9E%E6%8E%A5https%E6%9C%8D%E5%8A%A1pkix-path%E9%94%99%E8%AF%AF/</guid>
      <description>关于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</description>
    </item>
    
    <item>
      <title>antlr备忘</title>
      <link>https://007slm.github.io/post/antlr/</link>
      <pubDate>Fri, 26 Oct 2018 11:30:16 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/antlr/</guid>
      <description>antlr 备忘 enter every rule enter expression exit expression exit every rule</description>
    </item>
    
    <item>
      <title>git常用命令</title>
      <link>https://007slm.github.io/post/git%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4/</link>
      <pubDate>Thu, 18 Oct 2018 11:30:16 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/git%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4/</guid>
      <description>创建新的github仓库 git init git add README.md git commit -m &amp;ldquo;readme.md&amp;rdquo; git remote add origin https://github.com/lonelyc/MyRepo.git git push -u origin master 在新的仓库中创建分支 获取远程分支列表 git branch -r 在本地创建新的分支 git branch newbranch 切换到新的分</description>
    </item>
    
    <item>
      <title>k8s常用命令</title>
      <link>https://007slm.github.io/post/k8s%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4/</link>
      <pubDate>Thu, 18 Oct 2018 11:30:16 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/k8s%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4/</guid>
      <description>获取namespace为 console 的pod列表 kubectl get po -n console namespace console container 为gateway pod id 为console-deploy-7d9dc9f8c5-2lgtc kubectl</description>
    </item>
    
    <item>
      <title>关于后端进度条的实现</title>
      <link>https://007slm.github.io/post/%E5%90%8E%E7%AB%AF%E5%88%86%E7%89%87%E6%95%B0%E6%8D%AE%E4%BC%A0%E8%BE%93%E5%AE%9E%E7%8E%B0%E8%BF%9B%E5%BA%A6%E6%9D%A1%E8%83%BD%E5%8A%9B/</link>
      <pubDate>Tue, 09 Oct 2018 11:30:16 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/%E5%90%8E%E7%AB%AF%E5%88%86%E7%89%87%E6%95%B0%E6%8D%AE%E4%BC%A0%E8%BE%93%E5%AE%9E%E7%8E%B0%E8%BF%9B%E5%BA%A6%E6%9D%A1%E8%83%BD%E5%8A%9B/</guid>
      <description>关于后端进度条的实现 java代码部分 1 2 3 4 5 6 7 8 9 for (int i =0;i&amp;lt;10;i++) { try { TimeUnit.SECONDS.sleep(1); } catch (InterruptedException e) { e.printStackTrace(); } writer.print(i); writer.flush(); } 重点写一个trunk后要及时flush js部分 得益</description>
    </item>
    
    <item>
      <title>nginx日志重新挂载</title>
      <link>https://007slm.github.io/post/nginx%E6%97%A5%E5%BF%97/</link>
      <pubDate>Fri, 14 Sep 2018 11:30:16 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/nginx%E6%97%A5%E5%BF%97/</guid>
      <description>先移动日志文件 mv /usr/local/openresty/nginx/logs/access.log /usr/local/openresty/nginx/logs/access.log.20161024 发送信号重新打开日志文件 kill -USR1 $(cat /usr/local/openresty/nginx/logs/nginx.pid) 简单说明一下： 1、在没有执行kill -USR1 cat ${pid_path}之前，即便已经对文件执行了</description>
    </item>
    
    <item>
      <title>ngxin日志数据查询</title>
      <link>https://007slm.github.io/post/nginx%E6%97%A5%E5%BF%97%E5%88%86%E6%9E%90/</link>
      <pubDate>Fri, 14 Sep 2018 11:30:16 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/nginx%E6%97%A5%E5%BF%97%E5%88%86%E6%9E%90/</guid>
      <description>查看时间最长的前300个请求 sed -e &amp;rsquo;s/&amp;ldquo;//g&amp;rsquo; -e &amp;rsquo;s/?.*$//g&amp;rsquo; access.log | awk &amp;lsquo;{print $6,$1,$2,$3,$4,$5,$6,$10,$11,$12,$13,$14,$15,$16,$20}&amp;rsquo; | sort -rn |grep -v websocket|grep -v qrcodeLogin|grep -v wxEvent|grep -v wxevent| head -n 300 最后30000条记录 请求时间排序 tail -n 30000 access.log | sed -e &amp;rsquo;s/&amp;ldquo;//g&amp;rsquo; -e &amp;rsquo;s/?.*$//g&amp;rsquo; | grep 20/Nov/2018 | awk</description>
    </item>
    
    <item>
      <title>博客发文流程</title>
      <link>https://007slm.github.io/post/%E5%8D%9A%E5%AE%A2%E5%8F%91%E6%96%87%E6%B5%81%E7%A8%8B/</link>
      <pubDate>Fri, 14 Sep 2018 11:30:16 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/%E5%8D%9A%E5%AE%A2%E5%8F%91%E6%96%87%E6%B5%81%E7%A8%8B/</guid>
      <description>cd g:\hugo\blog 本地查看效果 hugo server &amp;ndash;buildDrafts 编译发布 hugo &amp;ndash;baseUrl=&amp;ldquo;https://007slm.github.io/ git 提交</description>
    </item>
    
    <item>
      <title>微信体系梳理</title>
      <link>https://007slm.github.io/post/%E5%BE%AE%E4%BF%A1%E4%BD%93%E7%B3%BB%E6%A2%B3%E7%90%86/</link>
      <pubDate>Fri, 14 Sep 2018 10:43:33 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/%E5%BE%AE%E4%BF%A1%E4%BD%93%E7%B3%BB%E6%A2%B3%E7%90%86/</guid>
      <description>微信体系梳理 微信开放平台是微信体系的总称 open.weixin.com 下面包含 - 网站应用 web - 移动应用 app - 公众账号 对应公众平台（也就是公众号） - 第三方平台 一般来说是帮助用</description>
    </item>
    
    <item>
      <title>nginx &#43; openresty 备忘</title>
      <link>https://007slm.github.io/post/openresty%E7%9B%B8%E5%85%B3/</link>
      <pubDate>Sun, 09 Sep 2018 11:30:16 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/openresty%E7%9B%B8%E5%85%B3/</guid>
      <description>nginx + openresty 备忘 nginx的开发者提供了一种简单、粗暴的方式来实现日志文件的切换。来自官网的一篇文章Log Rotation介绍了这种方法，核心脚本</description>
    </item>
    
    <item>
      <title>多线程</title>
      <link>https://007slm.github.io/post/%E5%A4%9A%E7%BA%BF%E7%A8%8B/</link>
      <pubDate>Sun, 19 Nov 2017 11:30:16 +0800</pubDate>
      
      <guid>https://007slm.github.io/post/%E5%A4%9A%E7%BA%BF%E7%A8%8B/</guid>
      <description>一个对象一把锁 static上加sync 代表类锁 脏读问题 （数据库一致性） volatile 是变量在多个线程间可见</description>
    </item>
    
  </channel>
</rss>