Skip to content

Commit

Permalink
Site updated: 2018-09-26 01:07:09
Browse files Browse the repository at this point in the history
  • Loading branch information
pangyl committed Sep 25, 2018
1 parent cca8d87 commit c42d368
Show file tree
Hide file tree
Showing 77 changed files with 224 additions and 224 deletions.
6 changes: 3 additions & 3 deletions 2016/01/10/重新搭建博客/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@
<meta name="description" content="从ES3是如何解析js的过程理解1.首先函数的正确声明结构是怎样的2.表达式的声明方式,和如何构成表达式">
<meta property="og:type" content="article">
<meta property="og:title" content="再次认识js的立即执行函数">
<meta property="og:url" content="http://www.iwooto.com/2016/01/10/重新搭建博客/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/01/10/重新搭建博客/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="从ES3是如何解析js的过程理解1.首先函数的正确声明结构是怎样的2.表达式的声明方式,和如何构成表达式">
<meta property="og:updated_time" content="2016-01-30T05:15:43.039Z">
<meta property="og:updated_time" content="2018-09-25T17:06:25.808Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="再次认识js的立即执行函数">
<meta name="twitter:description" content="从ES3是如何解析js的过程理解1.首先函数的正确声明结构是怎样的2.表达式的声明方式,和如何构成表达式">
Expand Down Expand Up @@ -250,7 +250,7 @@ <h3 id="u4ECEES3_u662F_u5982_u4F55_u89E3_u6790js_u7684_u8FC7_u7A0B_u7406_u89E3">
<p>错误实例2:声明一个函数,并且立即调用改函数<br><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line"><span class="keyword">function</span> <span class="function"><span class="title">fun</span></span>()&#123;&#125;()</span><br></pre></td></tr></table></figure></p>
<p>错误原因:最后面的那一组小括号被当做分组运算符,并没有被解析成调用fun函数</p>
<p>正确实例:通过常用的运算符如()、!、—、+、typeof等放在匿名函数前,<br>让解析器把后面的函数当做表达式执行再通过()调用该函数<br><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">(<span class="function"><span class="title">function</span></span>()&#123;</span><br><span class="line">&#125;())</span><br></pre></td></tr></table></figure></p>
<p>我的<a href="http://www.iwooto.com">博客地址</a></p>
<p>我的<a href="http://whynotrunning.github.io">博客地址</a></p>


</div>
Expand Down
2 changes: 1 addition & 1 deletion 2016/01/12/hexo博客搭建过程/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="软件安装1.nodejs2.git">
<meta property="og:type" content="article">
<meta property="og:title" content="hexo博客搭建过程">
<meta property="og:url" content="http://www.iwooto.com/2016/01/12/hexo博客搭建过程/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/01/12/hexo博客搭建过程/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="软件安装1.nodejs2.git">
<meta property="og:updated_time" content="2016-09-10T13:50:24.537Z">
Expand Down
2 changes: 1 addition & 1 deletion 2016/01/30/java-代码中添加log日志/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
通过指定的名字获得记录器,如果必要的话,则为这个名字创建一个新的记录器。">
<meta property="og:type" content="article">
<meta property="og:title" content="java 代码中添加log日志">
<meta property="og:url" content="http://www.iwooto.com/2016/01/30/java-代码中添加log日志/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/01/30/java-代码中添加log日志/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="1.得到记录器使用Log4j,第一步就是获取日志记录器,这个记录器将负责控制日志信息。其语法为:1public static Logger getLogger( String name),
通过指定的名字获得记录器,如果必要的话,则为这个名字创建一个新的记录器。">
Expand Down
2 changes: 1 addition & 1 deletion 2016/01/30/maven项目多个module工程搭建/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="创建父工程maven多模块项目需要一个父工程来聚合各个子模块,不过其实就是需要一个父pomxml,主要作用是声明子模块,代码如下:">
<meta property="og:type" content="article">
<meta property="og:title" content="maven项目多个module工程搭建">
<meta property="og:url" content="http://www.iwooto.com/2016/01/30/maven项目多个module工程搭建/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/01/30/maven项目多个module工程搭建/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="创建父工程maven多模块项目需要一个父工程来聚合各个子模块,不过其实就是需要一个父pomxml,主要作用是声明子模块,代码如下:">
<meta property="og:updated_time" content="2016-01-30T09:04:23.987Z">
Expand Down
2 changes: 1 addition & 1 deletion 2016/02/01/css强制换行与不换行/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="基本解释word-break:break-all;只对英文起作用,以字母作为换行依据word-wrap:break-word; 只对英文起作用,以单词作为换行依据white-space:pre-wrap; 只对中文起作用,强制换行white-space:nowrap; 强制不换行,都起作用white-space:nowrap; overflow:hidden; text-overflow:elli">
<meta property="og:type" content="article">
<meta property="og:title" content="css强制换行与不换行">
<meta property="og:url" content="http://www.iwooto.com/2016/02/01/css强制换行与不换行/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/02/01/css强制换行与不换行/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="基本解释word-break:break-all;只对英文起作用,以字母作为换行依据word-wrap:break-word; 只对英文起作用,以单词作为换行依据white-space:pre-wrap; 只对中文起作用,强制换行white-space:nowrap; 强制不换行,都起作用white-space:nowrap; overflow:hidden; text-overflow:elli">
<meta property="og:updated_time" content="2016-02-01T13:35:13.120Z">
Expand Down
2 changes: 1 addition & 1 deletion 2016/02/04/表值函数和标量函数/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
标量值函数:返回类型只能是基类型,其返回值类型为除TEXT、NTEXT 、IMAGE、CURSOR、 TIMESTAMP 和TABLE 类型外的其它数据类型。函数体语句定义在BEGIN-END语句内,其中包含了可以返回值的Transact-SQL 命令。调用返回表的 SQL Server 内置函数时">
<meta property="og:type" content="article">
<meta property="og:title" content="表值函数和标量函数">
<meta property="og:url" content="http://www.iwooto.com/2016/02/04/表值函数和标量函数/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/02/04/表值函数和标量函数/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="基本解释表值函数:返回类型为table类型,table类型相当于一张存储在内存中的虚拟的一张虚拟表
标量值函数:返回类型只能是基类型,其返回值类型为除TEXT、NTEXT 、IMAGE、CURSOR、 TIMESTAMP 和TABLE 类型外的其它数据类型。函数体语句定义在BEGIN-END语句内,其中包含了可以返回值的Transact-SQL 命令。调用返回表的 SQL Server 内置函数时">
Expand Down
2 changes: 1 addition & 1 deletion 2016/02/25/linux文件目录权限/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="使用vim修改文件报错系统提示如下:W10:warning:changing a readonly file,E37: No write since last change (add ! to override)表明这是一个只读的文件需要修改文件的权限.">
<meta property="og:type" content="article">
<meta property="og:title" content="linux文件目录权限">
<meta property="og:url" content="http://www.iwooto.com/2016/02/25/linux文件目录权限/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/02/25/linux文件目录权限/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="使用vim修改文件报错系统提示如下:W10:warning:changing a readonly file,E37: No write since last change (add ! to override)表明这是一个只读的文件需要修改文件的权限.">
<meta property="og:updated_time" content="2016-04-06T15:57:59.333Z">
Expand Down
2 changes: 1 addition & 1 deletion 2016/03/09/gradle使用/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="gradle听说gradle这个工具各种厉害就自己安装了一下,把玩把玩">
<meta property="og:type" content="article">
<meta property="og:title" content="gradle使用">
<meta property="og:url" content="http://www.iwooto.com/2016/03/09/gradle使用/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/03/09/gradle使用/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="gradle听说gradle这个工具各种厉害就自己安装了一下,把玩把玩">
<meta property="og:updated_time" content="2016-03-09T16:00:38.788Z">
Expand Down
2 changes: 1 addition & 1 deletion 2016/03/09/keytool的使用/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="概念keytool 是个密钥和证书管理工具。它使用户能够管理自己的公钥/私钥对及相关证书,用于(通过数字签名)自我认证(用户向别的用户/服务认证自己)或数据完整性以及认证服务。在JDK1.4以后的版本中都包含了这一工具,它的位置为%JAVA_HOME%\bin\keytool.exe">
<meta property="og:type" content="article">
<meta property="og:title" content="keytool的使用">
<meta property="og:url" content="http://www.iwooto.com/2016/03/09/keytool的使用/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/03/09/keytool的使用/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="概念keytool 是个密钥和证书管理工具。它使用户能够管理自己的公钥/私钥对及相关证书,用于(通过数字签名)自我认证(用户向别的用户/服务认证自己)或数据完整性以及认证服务。在JDK1.4以后的版本中都包含了这一工具,它的位置为%JAVA_HOME%\bin\keytool.exe">
<meta property="og:updated_time" content="2016-11-17T14:16:56.221Z">
Expand Down
2 changes: 1 addition & 1 deletion 2016/03/21/websocket/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="一、tomcat中websocket.jar编写的websocket二、springMVC4.0以后版本自带的websocket">
<meta property="og:type" content="article">
<meta property="og:title" content="websocket">
<meta property="og:url" content="http://www.iwooto.com/2016/03/21/websocket/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/03/21/websocket/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="一、tomcat中websocket.jar编写的websocket二、springMVC4.0以后版本自带的websocket">
<meta property="og:updated_time" content="2016-04-05T16:43:25.690Z">
Expand Down
2 changes: 1 addition & 1 deletion 2016/03/30/js模板引擎/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="pangyalin的博客">
<meta property="og:type" content="article">
<meta property="og:title" content="js模板引擎">
<meta property="og:url" content="http://www.iwooto.com/2016/03/30/js模板引擎/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/03/30/js模板引擎/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="pangyalin的博客">
<meta property="og:updated_time" content="2016-03-29T17:21:57.704Z">
Expand Down
2 changes: 1 addition & 1 deletion 2016/04/05/linux常用命令/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="系统信息arch 显示机器的处理器架构(1)uname -m 显示机器的处理器架构(2)uname -r 显示正在使用的内核版本dmidecode -q 显示硬件系统部件 - (SMBIOS / DMI)hdparm -i /dev/hda 罗列一个磁盘的架构特性hdparm -tT /dev/sda 在磁盘上执行测试性读取操作cat /proc/cpuinfo 显示CPU info的信息cat">
<meta property="og:type" content="article">
<meta property="og:title" content="linux常用命令">
<meta property="og:url" content="http://www.iwooto.com/2016/04/05/linux常用命令/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/04/05/linux常用命令/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="系统信息arch 显示机器的处理器架构(1)uname -m 显示机器的处理器架构(2)uname -r 显示正在使用的内核版本dmidecode -q 显示硬件系统部件 - (SMBIOS / DMI)hdparm -i /dev/hda 罗列一个磁盘的架构特性hdparm -tT /dev/sda 在磁盘上执行测试性读取操作cat /proc/cpuinfo 显示CPU info的信息cat">
<meta property="og:updated_time" content="2016-11-20T11:22:37.646Z">
Expand Down
2 changes: 1 addition & 1 deletion 2016/04/06/python学习-1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="Python学习(1)">
<meta property="og:type" content="article">
<meta property="og:title" content="python学习(1)">
<meta property="og:url" content="http://www.iwooto.com/2016/04/06/python学习-1/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/04/06/python学习-1/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="Python学习(1)">
<meta property="og:updated_time" content="2016-04-05T17:26:31.284Z">
Expand Down
2 changes: 1 addition & 1 deletion 2016/04/06/python学习-2/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="Python学习(2)">
<meta property="og:type" content="article">
<meta property="og:title" content="python学习(2)">
<meta property="og:url" content="http://www.iwooto.com/2016/04/06/python学习-2/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/04/06/python学习-2/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="Python学习(2)">
<meta property="og:updated_time" content="2016-04-05T17:26:23.752Z">
Expand Down
2 changes: 1 addition & 1 deletion 2016/04/06/redis下载安装测试/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
3. 编译12345$ cd redis-3.0.7$ make$make install$cp redis.conf /etc/">
<meta property="og:type" content="article">
<meta property="og:title" content="redis下载安装测试">
<meta property="og:url" content="http://www.iwooto.com/2016/04/06/redis下载安装测试/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/04/06/redis下载安装测试/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="redis安装1. 下载地址:1$ wget http://download.redis.io/releases/redis-3.0.7.tar.gz
2. 解压缩1$ tar xzf redis-3.0.7.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion 2016/04/19/java注解/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
@Retention表示需要在什么级别保存该注解信息。可选的Retention">
<meta property="og:type" content="article">
<meta property="og:title" content="java自定义注解">
<meta property="og:url" content="http://www.iwooto.com/2016/04/19/java注解/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/04/19/java注解/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="元注解@Target表示该注解可以用于什么地方,可能的ElementType参数有:CONSTRUCTOR:构造器的声明FIELD:域声明(包括enum实例)LOCAL_VARIABLE:局部变量声明METHOD:方法声明PACKAGE:包声明PARAMETER:参数声明TYPE:类、接口(包括注解类型)或enum声明
@Retention表示需要在什么级别保存该注解信息。可选的Retention">
Expand Down
2 changes: 1 addition & 1 deletion 2016/06/05/sqlserver触发器/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="触发器的分类DML触发器是响应Insert、Update、Delete语句,DDL是响应Create、Alter、Drop开头的数据定义语句而激活的。1.触发器的概念:就是在数据库进行insert、delete、update时会触发我们规定的的一系列的动作创建一个简单的触发器">
<meta property="og:type" content="article">
<meta property="og:title" content="sqlserver触发器">
<meta property="og:url" content="http://www.iwooto.com/2016/06/05/sqlserver触发器/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/06/05/sqlserver触发器/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="触发器的分类DML触发器是响应Insert、Update、Delete语句,DDL是响应Create、Alter、Drop开头的数据定义语句而激活的。1.触发器的概念:就是在数据库进行insert、delete、update时会触发我们规定的的一系列的动作创建一个简单的触发器">
<meta property="og:updated_time" content="2016-06-13T11:21:32.356Z">
Expand Down
2 changes: 1 addition & 1 deletion 2016/06/30/git命令/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="生成ssh key12345678910$ ssh-keygen -t rsa -C &quot;email.com&quot;Generating public/private rsa key pair.Enter file in which to save the key (/c/Users/Administrator/.ssh/id_rsa):/c/Users/Administrator/.ssh/id_rsa">
<meta property="og:type" content="article">
<meta property="og:title" content="git命令">
<meta property="og:url" content="http://www.iwooto.com/2016/06/30/git命令/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/06/30/git命令/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="生成ssh key12345678910$ ssh-keygen -t rsa -C &quot;email.com&quot;Generating public/private rsa key pair.Enter file in which to save the key (/c/Users/Administrator/.ssh/id_rsa):/c/Users/Administrator/.ssh/id_rsa">
<meta property="og:updated_time" content="2016-06-30T14:33:23.209Z">
Expand Down
2 changes: 1 addition & 1 deletion 2016/07/02/eclipse常见问题/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<meta name="description" content="javajsp1.Can not find the tag library descriptor for “http://shiro.apache.org/tags“问题解决:首先可能jar包没有导入到项目中,如果已经导入到项目,找到错误信息的位置剪切下错误的代码,文件不提示错误后再粘贴进去(eclipse已经对改文件打上错误的标示,即使已经引入了jar包,确没有从新检查)">
<meta property="og:type" content="article">
<meta property="og:title" content="eclipse常见问题">
<meta property="og:url" content="http://www.iwooto.com/2016/07/02/eclipse常见问题/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/07/02/eclipse常见问题/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="javajsp1.Can not find the tag library descriptor for “http://shiro.apache.org/tags“问题解决:首先可能jar包没有导入到项目中,如果已经导入到项目,找到错误信息的位置剪切下错误的代码,文件不提示错误后再粘贴进去(eclipse已经对改文件打上错误的标示,即使已经引入了jar包,确没有从新检查)">
<meta property="og:updated_time" content="2016-07-07T15:15:06.055Z">
Expand Down
4 changes: 2 additions & 2 deletions 2016/08/10/sqlserver加密解密/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@
<meta name="description" content="简介加密是指通过使用密钥或密码对数据进行模糊处理的过程。在SQL Server中,加密并不能替代其他的安全设置,比如防止未被授权的人访问数据库">
<meta property="og:type" content="article">
<meta property="og:title" content="sqlserver加密解密">
<meta property="og:url" content="http://www.iwooto.com/2016/08/10/sqlserver加密解密/index.html">
<meta property="og:url" content="http://whynotrunning.github.io/2016/08/10/sqlserver加密解密/index.html">
<meta property="og:site_name" content="pangyalin的博客">
<meta property="og:description" content="简介加密是指通过使用密钥或密码对数据进行模糊处理的过程。在SQL Server中,加密并不能替代其他的安全设置,比如防止未被授权的人访问数据库">
<meta property="og:image" content="http://ww2.sinaimg.cn/mw690/5e4d414cgw1ewsy8m4t7dg20eb0k90tk.gif">
<meta property="og:image" content="http://www.iwooto.com/images/bg.jpg">
<meta property="og:image" content="http://whynotrunning.github.io/images/bg.jpg">
<meta property="og:updated_time" content="2016-08-22T15:30:52.112Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="sqlserver加密解密">
Expand Down
Loading

0 comments on commit c42d368

Please sign in to comment.