Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiaoheiAh/hugo-theme-pure.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorotis <xiaohei.zyx@gmail.com>2019-11-21 09:52:17 +0300
committerotis <xiaohei.zyx@gmail.com>2019-11-21 09:52:17 +0300
commitfa8aca0e7682f62c925a1fe69e2b795a71b773b3 (patch)
tree4ff844d0f7fbea5fd7b8a11ee6dc90224386dc6d
parenta7fac3f34ad55203b69a4c9a73ee7877019dc68a (diff)
update gh-pages
-rw-r--r--2019/08/001-two-sum/index.html10
-rw-r--r--2019/08/026-remove-duplicates-from-sorted-array/index.html10
-rw-r--r--2019/08/189-rotate-array/index.html10
-rw-r--r--2019/08/rxjava-guide/index.html10
-rw-r--r--2019/08/rxjava-in-hystrix/index.html10
-rw-r--r--2019/09/amqp-0-9-1-model-explained/index.html10
-rw-r--r--2019/09/hugo-theme-dev-note/index.html10
-rw-r--r--2019/09/rabbitmq-guide-and-ha-cluster/index.html10
-rw-r--r--2019/09/rabbitmq-msg-distribution/index.html10
-rw-r--r--2019/10/data-structure/index.html10
-rw-r--r--2019/10/rabbitmq-ack-confirm/index.html10
-rw-r--r--2019/11/aof/index.html10
-rw-r--r--2019/11/db/index.html10
-rw-r--r--2019/11/distributed-lock/index.html10
-rw-r--r--2019/11/event/index.html10
-rw-r--r--2019/11/obj/index.html10
-rw-r--r--2019/11/rdb/index.html10
-rw-r--r--2019/11/replication/index.html10
-rw-r--r--404.html436
-rw-r--r--about/index.html44
-rw-r--r--categories/corejava/index.html8
-rw-r--r--categories/corejava/index.xml2
-rw-r--r--categories/hystrix/index.html8
-rw-r--r--categories/hystrix/index.xml2
-rw-r--r--categories/index.html8
-rw-r--r--categories/index.xml2
-rw-r--r--categories/leetcode/index.html8
-rw-r--r--categories/leetcode/index.xml2
-rw-r--r--categories/redis/index.html8
-rw-r--r--categories/redis/index.xml2
-rw-r--r--categories/消息队列/index.html8
-rw-r--r--categories/消息队列/index.xml2
-rw-r--r--collections/arraylist/index.html10
-rw-r--r--collections/hashmap/index.html10
-rw-r--r--collections/hashset/index.html10
-rw-r--r--collections/index.html8
-rw-r--r--collections/index.xml2
-rw-r--r--collections/linkedhashmap/index.html10
-rw-r--r--collections/linkedlist/index.html10
-rw-r--r--collections/treemap/index.html10
-rw-r--r--collections/treeset/index.html10
-rw-r--r--index.html8
-rw-r--r--index.xml2
-rw-r--r--posts/index.html27
-rw-r--r--posts/index.xml2
-rw-r--r--sitemap.xml8
-rw-r--r--tags/collections/index.html8
-rw-r--r--tags/collections/index.xml2
-rw-r--r--tags/hugo/index.html8
-rw-r--r--tags/hugo/index.xml2
-rw-r--r--tags/hystrix/index.html8
-rw-r--r--tags/hystrix/index.xml2
-rw-r--r--tags/index.html8
-rw-r--r--tags/index.xml2
-rw-r--r--tags/leetcode/index.html8
-rw-r--r--tags/leetcode/index.xml2
-rw-r--r--tags/rabbitmq/index.html8
-rw-r--r--tags/rabbitmq/index.xml2
-rw-r--r--tags/redis/index.html8
-rw-r--r--tags/redis/index.xml2
-rw-r--r--tags/rust/index.html68
-rw-r--r--tags/rust/index.xml2
-rw-r--r--tags/rxjava/index.html8
-rw-r--r--tags/rxjava/index.xml2
-rw-r--r--tags/分布式锁/index.html8
-rw-r--r--tags/分布式锁/index.xml2
-rw-r--r--tags/响应式编程/index.html8
-rw-r--r--tags/响应式编程/index.xml2
-rw-r--r--tags/数据结构/index.html8
-rw-r--r--tags/数据结构/index.xml2
70 files changed, 956 insertions, 71 deletions
diff --git a/2019/08/001-two-sum/index.html b/2019/08/001-two-sum/index.html
index 48f9d70..b12b34c 100644
--- a/2019/08/001-two-sum/index.html
+++ b/2019/08/001-two-sum/index.html
@@ -367,6 +367,8 @@
}
</code></pre>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -468,6 +470,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/08/026-remove-duplicates-from-sorted-array/index.html b/2019/08/026-remove-duplicates-from-sorted-array/index.html
index b69cf0e..6927f6e 100644
--- a/2019/08/026-remove-duplicates-from-sorted-array/index.html
+++ b/2019/08/026-remove-duplicates-from-sorted-array/index.html
@@ -349,6 +349,8 @@
}
</code></pre>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -450,6 +452,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/08/189-rotate-array/index.html b/2019/08/189-rotate-array/index.html
index eb2c1d8..2693f9f 100644
--- a/2019/08/189-rotate-array/index.html
+++ b/2019/08/189-rotate-array/index.html
@@ -429,6 +429,8 @@ pub fn reverse(nums: &amp;mut Vec&lt;i32&gt;, start: usize, end: usize) {
}
</code></pre>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -530,6 +532,14 @@ pub fn reverse(nums: &amp;mut Vec&lt;i32&gt;, start: usize, end: usize) {
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/08/rxjava-guide/index.html b/2019/08/rxjava-guide/index.html
index f5f59c3..ca631af 100644
--- a/2019/08/rxjava-guide/index.html
+++ b/2019/08/rxjava-guide/index.html
@@ -843,6 +843,8 @@ observable.observeOn(Schedulers.newThread())
<p><a href="http://zhangtielei.com/posts/blog-rxjava-backpressure.html">如何形象地描述RxJava中的背压和流控机制?</a></p>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -944,6 +946,14 @@ observable.observeOn(Schedulers.newThread())
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/08/rxjava-in-hystrix/index.html b/2019/08/rxjava-in-hystrix/index.html
index 446b3f3..9f2df21 100644
--- a/2019/08/rxjava-in-hystrix/index.html
+++ b/2019/08/rxjava-in-hystrix/index.html
@@ -959,6 +959,8 @@ final protected Observable&lt;R&gt; getExecutionObservable() {
<li><a href="https://blog.csdn.net/qq_24530405/article/details/66969886">RxJava lift 原理解析</a></li>
</ol>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -1060,6 +1062,14 @@ final protected Observable&lt;R&gt; getExecutionObservable() {
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/09/amqp-0-9-1-model-explained/index.html b/2019/09/amqp-0-9-1-model-explained/index.html
index f968e54..3622422 100644
--- a/2019/09/amqp-0-9-1-model-explained/index.html
+++ b/2019/09/amqp-0-9-1-model-explained/index.html
@@ -661,6 +661,8 @@
<p>因为AMQP的主要目标之一就是实现交互性,所以对于开发者来讲,了解协议的操作方法而不是只停留在弄懂特定客户端的库就显得十分重要。这样一来,开发者使用不同类型的库与协议进行沟通时就会容易的多。</p>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -762,6 +764,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/09/hugo-theme-dev-note/index.html b/2019/09/hugo-theme-dev-note/index.html
index e5f1864..94f75bf 100644
--- a/2019/09/hugo-theme-dev-note/index.html
+++ b/2019/09/hugo-theme-dev-note/index.html
@@ -543,6 +543,8 @@
<li><a href="https://www.qikqiak.com/post/hugo-integrated-algolia-search/">https://www.qikqiak.com/post/hugo-integrated-algolia-search/</a></li>
</ol>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -644,6 +646,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/09/rabbitmq-guide-and-ha-cluster/index.html b/2019/09/rabbitmq-guide-and-ha-cluster/index.html
index 61221a4..16b4e8d 100644
--- a/2019/09/rabbitmq-guide-and-ha-cluster/index.html
+++ b/2019/09/rabbitmq-guide-and-ha-cluster/index.html
@@ -470,6 +470,8 @@ Error:
<li><a href="https://hub.docker.com/_/rabbitmq/">docker hub rabbit mq 镜像</a></li>
</ol>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -571,6 +573,14 @@ Error:
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/09/rabbitmq-msg-distribution/index.html b/2019/09/rabbitmq-msg-distribution/index.html
index ccc3738..91fa23b 100644
--- a/2019/09/rabbitmq-msg-distribution/index.html
+++ b/2019/09/rabbitmq-msg-distribution/index.html
@@ -434,6 +434,8 @@
<p><strong>Topic模式</strong> 利用模式匹配,以及 <code>.</code>的格式来按规则过滤. <code>*</code> 代表只有一个词, <code>#</code>代表 0 或 多个.</p>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -535,6 +537,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/10/data-structure/index.html b/2019/10/data-structure/index.html
index 4b8b225..968d1f1 100644
--- a/2019/10/data-structure/index.html
+++ b/2019/10/data-structure/index.html
@@ -979,6 +979,8 @@ int zslRandomLevel(void) {
<li><a href="https://zsr.github.io/2017/07/03/redis-zset内部实现/">zset内部实现</a></li>
</ol>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -1080,6 +1082,14 @@ int zslRandomLevel(void) {
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/10/rabbitmq-ack-confirm/index.html b/2019/10/rabbitmq-ack-confirm/index.html
index 579085b..df09f44 100644
--- a/2019/10/rabbitmq-ack-confirm/index.html
+++ b/2019/10/rabbitmq-ack-confirm/index.html
@@ -444,6 +444,8 @@
<li><a href="https://www.rabbitmq.com/confirms.html#acknowledgement-modes">https://www.rabbitmq.com/confirms.html#acknowledgement-modes</a></li>
</ol>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -545,6 +547,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/11/aof/index.html b/2019/11/aof/index.html
index 11ea9e8..fe079d9 100644
--- a/2019/11/aof/index.html
+++ b/2019/11/aof/index.html
@@ -469,6 +469,8 @@ while true:
<li><a href="https://youjiali1995.github.io/redis/persistence/">https://youjiali1995.github.io/redis/persistence/</a></li>
</ol>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -570,6 +572,14 @@ while true:
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/11/db/index.html b/2019/11/db/index.html
index 9e66bda..e04a88c 100644
--- a/2019/11/db/index.html
+++ b/2019/11/db/index.html
@@ -569,6 +569,8 @@ void notifyKeyspaceEvent(int type, char *event, robj *key, int dbid) {
}
</code></pre>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -670,6 +672,14 @@ void notifyKeyspaceEvent(int type, char *event, robj *key, int dbid) {
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/11/distributed-lock/index.html b/2019/11/distributed-lock/index.html
index 6815f15..1a38a98 100644
--- a/2019/11/distributed-lock/index.html
+++ b/2019/11/distributed-lock/index.html
@@ -523,6 +523,8 @@ end
<li><a href="https://blog.brickgao.com/2018/05/06/distributed-lock-with-redlock/">RedLock中译</a></li>
</ol>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -624,6 +626,14 @@ end
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/11/event/index.html b/2019/11/event/index.html
index 9950d22..bdd8d42 100644
--- a/2019/11/event/index.html
+++ b/2019/11/event/index.html
@@ -598,6 +598,8 @@ if (te-&gt;id == AE_DELETED_EVENT_ID) {
<li><a href="https://book.douban.com/subject/25900156/">Redis设计与实现</a></li>
</ol>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -699,6 +701,14 @@ if (te-&gt;id == AE_DELETED_EVENT_ID) {
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/11/obj/index.html b/2019/11/obj/index.html
index 8249d11..4c53e12 100644
--- a/2019/11/obj/index.html
+++ b/2019/11/obj/index.html
@@ -523,6 +523,8 @@ OK
(integer) 4023
</code></pre>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -624,6 +626,14 @@ OK
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/11/rdb/index.html b/2019/11/rdb/index.html
index fedc2cb..62d8074 100644
--- a/2019/11/rdb/index.html
+++ b/2019/11/rdb/index.html
@@ -784,6 +784,8 @@ int rdbSaveInfoAuxFields(rio *rdb, int flags, rdbSaveInfo *rsi) {
<li><p><a href="https://juejin.im/post/5d8dc285f265da5b9e0d3089">Redis5.0 RDB文件解析</a></p></li>
</ol>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -885,6 +887,14 @@ int rdbSaveInfoAuxFields(rio *rdb, int flags, rdbSaveInfo *rsi) {
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/2019/11/replication/index.html b/2019/11/replication/index.html
index 2d43b9e..bbb2ddb 100644
--- a/2019/11/replication/index.html
+++ b/2019/11/replication/index.html
@@ -561,6 +561,8 @@ struct redisServer {
<li><p><a href="https://redis.io/topics/replication">https://redis.io/topics/replication</a></p></li>
</ol>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -657,6 +659,14 @@ struct redisServer {
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/404.html b/404.html
new file mode 100644
index 0000000..6ebbbaf
--- /dev/null
+++ b/404.html
@@ -0,0 +1,436 @@
+<!DOCTYPE html>
+<html lang="zh">
+ <head>
+ <meta charset="utf-8" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+ <title>
+ 赵小黑的博客</title>
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <meta name="viewport"
+ content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
+ <meta name="renderer" content="webkit">
+ <meta http-equiv="Cache-Control" content="no-transform" />
+ <meta http-equiv="Cache-Control" content="no-siteapp" />
+ <meta name="apple-mobile-web-app-capable" content="yes">
+ <meta name="apple-mobile-web-app-status-bar-style" content="black">
+ <meta name="format-detection" content="telephone=no,email=no,adress=no">
+
+ <meta name="theme-color" content="#000000" />
+
+ <meta http-equiv="window-target" content="_top" />
+
+
+
+ <meta name="generator" content="Hugo 0.58.0 with theme pure" />
+ <title>赵小黑的博客</title>
+
+
+ <link rel="stylesheet" href="https://xiaohei.im/hugo-theme-pure/css/style.css">
+ <link rel="stylesheet" href="https://cdn.staticfile.org/highlight.js/9.15.10/styles/github.min.css">
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.css">
+ <meta property="og:title" content="404 Page not found" />
+<meta property="og:description" content="" />
+<meta property="og:type" content="website" />
+<meta property="og:url" content="https://xiaohei.im/hugo-theme-pure/404.html" />
+
+<meta itemprop="name" content="404 Page not found">
+<meta itemprop="description" content="">
+
+<meta name="twitter:card" content="summary"/>
+<meta name="twitter:title" content="404 Page not found"/>
+<meta name="twitter:description" content=""/>
+
+ <!--[if lte IE 9]>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/classlist/1.1.20170427/classList.min.js"></script>
+ <![endif]-->
+
+ <!--[if lt IE 9]>
+ <script src="https://cdn.jsdelivr.net/npm/html5shiv@3.7.3/dist/html5shiv.min.js"></script>
+ <script src="https://cdn.jsdelivr.net/npm/respond.js@1.4.2/dest/respond.min.js"></script>
+ <![endif]-->
+
+</head>
+ </head>
+
+
+ <body class="main-center theme-black" itemscope itemtype="http://schema.org/WebPage"><header class="header" itemscope itemtype="http://schema.org/WPHeader">
+ <div class="slimContent">
+ <div class="navbar-header">
+ <div class="profile-block text-center">
+ <a id="avatar" href="https://github.com/xiaoheiAh" target="_blank">
+ <img class="img-circle img-rotate" src="https://xiaohei.im/hugo-theme-pure/avatar.png" width="200" height="200">
+ </a>
+ <h2 id="name" class="hidden-xs hidden-sm">赵小黑</h2>
+ <h3 id="title" class="hidden-xs hidden-sm hidden-md">Java Developer</h3>
+ <small id="location" class="text-muted hidden-xs hidden-sm"><i class="icon icon-map-marker"></i>Shanghai, China</small>
+ </div><div class="search" id="search-form-wrap">
+ <form class="search-form sidebar-form">
+ <div class="input-group">
+ <input type="text" class="search-form-input form-control" placeholder="搜索" />
+ <span class="input-group-btn">
+ <button type="submit" class="search-form-submit btn btn-flat" onclick="return false;"><i
+ class="icon icon-search"></i></button>
+ </span>
+ </div>
+ <div class="ins-search">
+ <div class="ins-search-mask"></div>
+ <div class="ins-search-container">
+ <div class="ins-input-wrapper">
+ <input type="text" class="ins-search-input" placeholder="想要查找什么..."
+ x-webkit-speech />
+ <button type="button" class="close ins-close ins-selectable" data-dismiss="modal"
+ aria-label="Close"><span aria-hidden="true">×</span></button>
+ </div>
+ <div class="ins-section-wrapper">
+ <div class="ins-section-container"></div>
+ </div>
+ </div>
+ </div>
+ </form>
+</div>
+ <button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target="#main-navbar" aria-controls="main-navbar" aria-expanded="false">
+ <span class="sr-only">Toggle navigation</span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ </button>
+ </div>
+ <nav id="main-navbar" class="collapse navbar-collapse" itemscope itemtype="http://schema.org/SiteNavigationElement" role="navigation">
+ <ul class="nav navbar-nav main-nav menu-highlight">
+ <li class="menu-item menu-item-home">
+ <a href="/hugo-theme-pure/">
+ <i class="icon icon-home-fill"></i>
+ <span class="menu-title">主页</span>
+ </a>
+ </li>
+ <li class="menu-item menu-item-archives">
+ <a href="/hugo-theme-pure/posts">
+ <i class="icon icon-archives-fill"></i>
+ <span class="menu-title">归档</span>
+ </a>
+ </li>
+ <li class="menu-item menu-item-categories">
+ <a href="/hugo-theme-pure/categories">
+ <i class="icon icon-folder"></i>
+ <span class="menu-title">分类</span>
+ </a>
+ </li>
+ <li class="menu-item menu-item-tags">
+ <a href="/hugo-theme-pure/tags">
+ <i class="icon icon-tags"></i>
+ <span class="menu-title">标签</span>
+ </a>
+ </li>
+ <li class="menu-item menu-item-about">
+ <a href="/hugo-theme-pure/about">
+ <i class="icon icon-cup-fill"></i>
+ <span class="menu-title">关于</span>
+ </a>
+ </li>
+ </ul>
+ </nav>
+ </div>
+ </header>
+ <aside class="sidebar" itemscope itemtype="http://schema.org/WPSideBar">
+ <div class="slimContent">
+
+ <div class="widget">
+ <h3 class="widget-title">公告</h3>
+ <div class="widget-body">
+ <div id="board">
+ <div class="content"><p>自用科学上网节点推荐(便宜又好用)<a href="https://tianlinzhao.com/aff.php?aff=4969" target="_blank" style="background-color:#FFFF00">点这里跳转</a>
+ </div>
+ </div>
+ </div>
+</div>
+
+ <div class="widget">
+ <h3 class="widget-title"> 分类</h3>
+ <div class="widget-body">
+ <ul class="category-list">
+ <li class="category-list-item"><a href="https://xiaohei.im/hugo-theme-pure/categories/corejava/" class="category-list-link">corejava</a><span class="category-list-count">7</span></li>
+ <li class="category-list-item"><a href="https://xiaohei.im/hugo-theme-pure/categories/hystrix/" class="category-list-link">hystrix</a><span class="category-list-count">2</span></li>
+ <li class="category-list-item"><a href="https://xiaohei.im/hugo-theme-pure/categories/leetcode/" class="category-list-link">leetcode</a><span class="category-list-count">3</span></li>
+ <li class="category-list-item"><a href="https://xiaohei.im/hugo-theme-pure/categories/redis/" class="category-list-link">redis</a><span class="category-list-count">8</span></li>
+ <li class="category-list-item"><a href="https://xiaohei.im/hugo-theme-pure/categories/%E6%B6%88%E6%81%AF%E9%98%9F%E5%88%97/" class="category-list-link">消息队列</a><span class="category-list-count">4</span></li>
+ </ul>
+ </div>
+</div>
+ <div class="widget">
+ <h3 class="widget-title"> 标签</h3>
+ <div class="widget-body">
+ <ul class="tag-list">
+
+
+ <li class="tag-list-item"><a href="https://xiaohei.im/hugo-theme-pure/tags/collections/" class="tag-list-link">collections</a><span
+ class="tag-list-count">7</span></li>
+
+
+ <li class="tag-list-item"><a href="https://xiaohei.im/hugo-theme-pure/tags/hugo/" class="tag-list-link">hugo</a><span
+ class="tag-list-count">1</span></li>
+
+
+ <li class="tag-list-item"><a href="https://xiaohei.im/hugo-theme-pure/tags/hystrix/" class="tag-list-link">hystrix</a><span
+ class="tag-list-count">1</span></li>
+
+
+ <li class="tag-list-item"><a href="https://xiaohei.im/hugo-theme-pure/tags/leetcode/" class="tag-list-link">leetcode</a><span
+ class="tag-list-count">3</span></li>
+
+
+ <li class="tag-list-item"><a href="https://xiaohei.im/hugo-theme-pure/tags/rabbitmq/" class="tag-list-link">rabbitmq</a><span
+ class="tag-list-count">4</span></li>
+
+
+ <li class="tag-list-item"><a href="https://xiaohei.im/hugo-theme-pure/tags/redis/" class="tag-list-link">redis</a><span
+ class="tag-list-count">8</span></li>
+
+
+ <li class="tag-list-item"><a href="https://xiaohei.im/hugo-theme-pure/tags/rust/" class="tag-list-link">rust</a><span
+ class="tag-list-count">3</span></li>
+
+
+ <li class="tag-list-item"><a href="https://xiaohei.im/hugo-theme-pure/tags/rxjava/" class="tag-list-link">rxjava</a><span
+ class="tag-list-count">2</span></li>
+
+
+ <li class="tag-list-item"><a href="https://xiaohei.im/hugo-theme-pure/tags/%E5%88%86%E5%B8%83%E5%BC%8F%E9%94%81/" class="tag-list-link">分布式锁</a><span
+ class="tag-list-count">1</span></li>
+
+
+ <li class="tag-list-item"><a href="https://xiaohei.im/hugo-theme-pure/tags/%E5%93%8D%E5%BA%94%E5%BC%8F%E7%BC%96%E7%A8%8B/" class="tag-list-link">响应式编程</a><span
+ class="tag-list-count">1</span></li>
+
+
+ <li class="tag-list-item"><a href="https://xiaohei.im/hugo-theme-pure/tags/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/" class="tag-list-link">数据结构</a><span
+ class="tag-list-count">1</span></li>
+
+ </ul>
+
+ </div>
+</div>
+
+<div class="widget">
+ <h3 class="widget-title">最新文章</h3>
+ <div class="widget-body">
+ <ul class="recent-post-list list-unstyled no-thumbnail">
+ <li>
+ <div class="item-inner">
+ <p class="item-title">
+ <a href="https://xiaohei.im/hugo-theme-pure/2019/11/replication/" class="title">Redis-复制功能探索</a>
+ </p>
+ <p class="item-date">
+ <time datetime="2019-11-16 14:24:40 &#43;0800 CST" itemprop="datePublished">2019-11-16</time>
+ </p>
+ </div>
+ </li>
+ <li>
+ <div class="item-inner">
+ <p class="item-title">
+ <a href="https://xiaohei.im/hugo-theme-pure/2019/11/event/" class="title">Redis-事件</a>
+ </p>
+ <p class="item-date">
+ <time datetime="2019-11-14 15:01:45 &#43;0800 CST" itemprop="datePublished">2019-11-14</time>
+ </p>
+ </div>
+ </li>
+ <li>
+ <div class="item-inner">
+ <p class="item-title">
+ <a href="https://xiaohei.im/hugo-theme-pure/2019/11/aof/" class="title">Redis-AOF持久化</a>
+ </p>
+ <p class="item-date">
+ <time datetime="2019-11-08 15:18:05 &#43;0800 CST" itemprop="datePublished">2019-11-08</time>
+ </p>
+ </div>
+ </li>
+ <li>
+ <div class="item-inner">
+ <p class="item-title">
+ <a href="https://xiaohei.im/hugo-theme-pure/2019/11/rdb/" class="title">Redis-RDB持久化</a>
+ </p>
+ <p class="item-date">
+ <time datetime="2019-11-06 19:08:56 &#43;0800 CST" itemprop="datePublished">2019-11-06</time>
+ </p>
+ </div>
+ </li>
+ <li>
+ <div class="item-inner">
+ <p class="item-title">
+ <a href="https://xiaohei.im/hugo-theme-pure/2019/11/db/" class="title">Redis-数据库长什么样?</a>
+ </p>
+ <p class="item-date">
+ <time datetime="2019-11-06 11:00:32 &#43;0800 CST" itemprop="datePublished">2019-11-06</time>
+ </p>
+ </div>
+ </li>
+ </ul>
+ </div>
+</div>
+ </div>
+</aside>
+
+
+
+<main class="main" role="main">
+ <div class="content">
+ <article class="article">
+ <div class="article-header">
+ <h1 class="article-title" itemprop="name">
+ <a href="#">404 Not Found</a>
+ </h1>
+ </div>
+ <div class="article-meta">
+ <span class="article-date">
+ <i class="icon icon-calendar-check"></i>
+<a href="https://xiaohei.im/hugo-theme-pure/404.html" class="article-date">
+ <time datetime="0001-01-01 00:00:00 &#43;0000 UTC" itemprop="datePublished">0001-01-01</time>
+</a>
+</span>
+
+ <span class="article-read hidden-xs">
+ <i class="icon icon-eye-fill" aria-hidden="true"></i>
+ <span id="busuanzi_container_page_pv">
+ <span id="busuanzi_value_page_pv">0</span>
+ </span>
+ </span>
+ <span class="post-comment"><i class="icon icon-comment"></i> <a href="/hugo-theme-pure/404.html#comments"
+ class="article-comment-link">评论</a></span>
+ <span class="post-wordcount hidden-xs" itemprop="wordCount">字数统计:0字</span>
+ <span class="post-readcount hidden-xs" itemprop="timeRequired">阅读时长:0分 </span>
+ </div>
+ <div class="article-entry marked-body" itemprop="articleBody">
+ <br>
+ <p>找不到页面啦~请换个姿势( ̄. ̄)</p>
+ <a href="/">返回首页</a>
+ </div>
+ <div class="article-footer">
+ </div>
+ </article>
+<section id="comments">
+</section>
+
+ </div>
+
+<div class="modal modal-center modal-small modal-xs-full fade" id="donateModal" tabindex="-1" role="dialog">
+ <div class="modal-dialog" role="document">
+ <div class="modal-content donate">
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
+ aria-hidden="true">&times;</span></button>
+ <div class="modal-body">
+ <div class="donate-box">
+ <div class="donate-head">
+ <p>感谢您的支持,我会继续努力的!</p>
+ </div>
+ <div class="tab-content">
+ <div role="tabpanel" class="tab-pane fade active in" id="alipay">
+ <div class="donate-payimg">
+ <img src="https://xiaohei.im/hugo-theme-pure/donate/alipayimg.png"
+ alt="扫码支持" title="扫一扫" />
+ </div>
+ <p class="text-muted mv">扫码打赏, 多少你说了算~</p>
+ <p class="text-grey">打开支付宝扫一扫,即可进行扫码打赏哦~</p>
+ </div>
+ <div role="tabpanel" class="tab-pane fade" id="wechatpay">
+ <div class="donate-payimg">
+ <img src="https://xiaohei.im/hugo-theme-pure/donate/wechatpayimg.png"
+ alt="扫码支持" title="扫一扫" />
+ </div>
+ <p class="text-muted mv">扫码打赏, 多少你说了算~</p>
+ <p class="text-grey">打开微信扫一扫,即可进行扫码打赏哦</p>
+ </div>
+ </div>
+ <div class="donate-footer">
+ <ul class="nav nav-tabs nav-justified" role="tablist">
+ <li role="presentation" class="active">
+ <a href="#alipay" id="alipay-tab" role="tab" data-toggle="tab" aria-controls="alipay"
+ aria-expanded="true"><i class="icon icon-alipay"></i> 支付宝</a>
+ </li>
+ <li role="presentation" class="">
+ <a href="#wechatpay" role="tab" id="wechatpay-tab" data-toggle="tab"
+ aria-controls="wechatpay" aria-expanded="false"><i class="icon icon-wepay"></i>
+ 微信支付</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+</div>
+</main><footer class="footer" itemscope itemtype="http://schema.org/WPFooter">
+<ul class="social-links">
+ <li><a href="https://github.com/xiaoheiAh" target="_blank" title="github" data-toggle=tooltip data-placement=top >
+ <i class="icon icon-github"></i></a></li>
+ <li><a href="https://xiaohei.im/index.xml" target="_blank" title="rss" data-toggle=tooltip data-placement=top >
+ <i class="icon icon-rss"></i></a></li>
+</ul>
+ <div class="copyright">
+ &copy;2017 -
+ 2019
+ <div class="publishby">
+ Theme by <a href="https://github.com/xiaoheiAh" target="_blank"> xiaoheiAh </a>base on<a href="https://github.com/xiaoheiAh/hugo-theme-pure" target="_blank"> pure</a>.
+ </div>
+ </div>
+</footer>
+<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
+<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
+<script>
+ window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
+</script>
+<script type="text/javascript" src="https://cdn.staticfile.org/highlight.js/9.15.10/highlight.min.js"></script>
+<script type="text/javascript" src="https://cdn.staticfile.org/highlight.js/9.15.10/languages/rust.min.js"></script>
+<script type="text/javascript"
+ src="https://cdn.staticfile.org/highlight.js/9.15.10/languages/dockerfile.min.js"></script>
+<script>
+hljs.configure({
+ tabReplace: ' ',
+ classPrefix: ''
+
+})
+hljs.initHighlightingOnLoad();
+</script>
+<script type="text/javascript" src="https://xiaohei.im/hugo-theme-pure/js/application.js"></script>
+<script type="text/javascript" src="https://xiaohei.im/hugo-theme-pure/js/plugin.js"></script>
+<script>
+ (function (window) {
+ var INSIGHT_CONFIG = {
+ TRANSLATION: {
+ POSTS: '文章',
+ PAGES: '页面',
+ CATEGORIES: '分类',
+ TAGS: '标签',
+ UNTITLED: '(未命名)',
+ },
+ ROOT_URL: 'https:\/\/xiaohei.im\/hugo-theme-pure',
+ CONTENT_URL: 'https:\/\/xiaohei.im\/hugo-theme-pure\/searchindex.json ',
+ };
+ window.INSIGHT_CONFIG = INSIGHT_CONFIG;
+ })(window);
+ </script>
+<script type="text/javascript" src="https://xiaohei.im/hugo-theme-pure/js/insight.js"></script>
+
+<script type="application/javascript">
+var doNotTrack = false;
+if (!doNotTrack) {
+ window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
+ ga('create', 'UA-98254666-1', 'auto');
+
+ ga('send', 'pageview');
+}
+</script>
+<script async src='https://www.google-analytics.com/analytics.js'></script>
+
+
+ </body>
+</html>
diff --git a/about/index.html b/about/index.html
index eb94efd..1fc4310 100644
--- a/about/index.html
+++ b/about/index.html
@@ -23,7 +23,7 @@
<meta http-equiv="window-target" content="_top" />
- <meta name="description" content="xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪" />
+ <meta name="description" content="xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪" />
<meta name="generator" content="Hugo 0.58.0 with theme pure" />
<title>关于自己 - 赵小黑的博客</title>
@@ -32,13 +32,13 @@
<link rel="stylesheet" href="https://cdn.staticfile.org/highlight.js/9.15.10/styles/github.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.css">
<meta property="og:title" content="关于自己" />
-<meta property="og:description" content="xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪" />
+<meta property="og:description" content="xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://xiaohei.im/hugo-theme-pure/about/" />
<meta property="article:published_time" content="2019-08-15T13:19:18+08:00" />
<meta property="article:modified_time" content="2019-08-15T13:19:18+08:00" />
<meta itemprop="name" content="关于自己">
-<meta itemprop="description" content="xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪">
+<meta itemprop="description" content="xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪">
<meta itemprop="datePublished" content="2019-08-15T13:19:18&#43;08:00" />
@@ -50,7 +50,7 @@
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="关于自己"/>
-<meta name="twitter:description" content="xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪"/>
+<meta name="twitter:description" content="xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪"/>
<!--[if lte IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/classlist/1.1.20170427/classList.min.js"></script>
@@ -288,23 +288,7 @@
<div class="slimContent">
<nav id="toc" class="article-toc">
<h3 class="toc-title">文章目录</h3>
- <div class="toc-content always-active"><nav id="TableOfContents">
-<ul>
-<li>
-<ul>
-<li>
-<ul>
-<li>
-<ul>
-<li><a href="#xiaoheiah">xiaoheiAh~</a></li>
-<li><a href="#联系方式">联系方式</a></li>
-<li><a href="#关注的大佬博客">关注的大佬博客</a></li>
-<li><a href="#githubchart-https-github-com-2016rshah-githubchart-api"><a href="https://github.com/2016rshah/githubchart-api">@githubchart</a></a></li>
-</ul></li>
-</ul></li>
-</ul></li>
-</ul>
-</nav>
+ <div class="toc-content always-active">
</div>
</nav>
</div>
@@ -343,14 +327,12 @@
</div>
</div>
<div class="article-entry marked-body" itemprop="articleBody">
-
-
-<h4 id="xiaoheiah">xiaoheiAh~</h4>
+ <h4 id="xiaoheiah">xiaoheiAh~</h4>
<h4 id="联系方式">联系方式</h4>
<ul>
-<li>github: <a href="https://github.com/xiaoheiAh">@xiaoheiAh</a></li>
+<li>github: <a class="cite" href="#xiaoheiah"></a>(<a href="https://github.com/xiaoheiAh">https://github.com/xiaoheiAh</a>)</li>
<li>gmail: <a href="mailto:xiaohei.zyx@gmail.com">xiaohei.zyx@gmail.com</a></li>
<li>节点推荐 -&gt; <a href="http://1t.click/aCyT">http://1t.click/aCyT</a></li>
</ul>
@@ -362,11 +344,13 @@
<li><a href="http://hongjiang.info/scala/">hongjiang-scala专题</a> 在公司要写 <code>scala</code> ,这个mark一下,质量很高,我要好好看看</li>
</ol>
-<h4 id="githubchart-https-github-com-2016rshah-githubchart-api"><a href="https://github.com/2016rshah/githubchart-api">@githubchart</a></h4>
+<h4 id="githubcharthttpsgithubcom2016rshahgithubchartapi"><a class="cite" href="#githubchart"></a>(<a href="https://github.com/2016rshah/githubchart-api">https://github.com/2016rshah/githubchart-api</a>)</h4>
<p><img src="http://ghchart.rshah.org/xiaoheiAh" alt="xiaoheiAh's Github chart" /></p>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -463,6 +447,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/categories/corejava/index.html b/categories/corejava/index.html
index 1ac7dbc..175c920 100644
--- a/categories/corejava/index.html
+++ b/categories/corejava/index.html
@@ -364,6 +364,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/categories/corejava/index.xml b/categories/corejava/index.xml
index dfd2bc6..4529371 100644
--- a/categories/corejava/index.xml
+++ b/categories/corejava/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/categories/hystrix/index.html b/categories/hystrix/index.html
index a1c9f29..be3aa62 100644
--- a/categories/hystrix/index.html
+++ b/categories/hystrix/index.html
@@ -339,6 +339,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/categories/hystrix/index.xml b/categories/hystrix/index.xml
index 81284df..7c30a09 100644
--- a/categories/hystrix/index.xml
+++ b/categories/hystrix/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/categories/index.html b/categories/index.html
index 86eaf00..7da237d 100644
--- a/categories/index.html
+++ b/categories/index.html
@@ -517,6 +517,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/categories/index.xml b/categories/index.xml
index 7c079f4..fb5b35f 100644
--- a/categories/index.xml
+++ b/categories/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/categories/leetcode/index.html b/categories/leetcode/index.html
index 12936c1..0a5fca5 100644
--- a/categories/leetcode/index.html
+++ b/categories/leetcode/index.html
@@ -344,6 +344,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/categories/leetcode/index.xml b/categories/leetcode/index.xml
index 846b011..836d17e 100644
--- a/categories/leetcode/index.xml
+++ b/categories/leetcode/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/categories/redis/index.html b/categories/redis/index.html
index d97ac84..0787d94 100644
--- a/categories/redis/index.html
+++ b/categories/redis/index.html
@@ -369,6 +369,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/categories/redis/index.xml b/categories/redis/index.xml
index 748a046..ee49c44 100644
--- a/categories/redis/index.xml
+++ b/categories/redis/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/categories/消息队列/index.html b/categories/消息队列/index.html
index 66c4a21..eff8de2 100644
--- a/categories/消息队列/index.html
+++ b/categories/消息队列/index.html
@@ -349,6 +349,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/categories/消息队列/index.xml b/categories/消息队列/index.xml
index bffc082..49d8df8 100644
--- a/categories/消息队列/index.xml
+++ b/categories/消息队列/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/collections/arraylist/index.html b/collections/arraylist/index.html
index d39aea3..f502b88 100644
--- a/collections/arraylist/index.html
+++ b/collections/arraylist/index.html
@@ -481,6 +481,8 @@ private void grow(int minCapacity) {
</ol>
</blockquote>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -582,6 +584,14 @@ private void grow(int minCapacity) {
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/collections/hashmap/index.html b/collections/hashmap/index.html
index e6e07a3..e57afcc 100644
--- a/collections/hashmap/index.html
+++ b/collections/hashmap/index.html
@@ -1060,6 +1060,8 @@ ConcurrentHashMap推出之后官方推荐不要在使用HashTable作为线程安
</code></pre>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -1161,6 +1163,14 @@ ConcurrentHashMap推出之后官方推荐不要在使用HashTable作为线程安
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/collections/hashset/index.html b/collections/hashset/index.html
index 255692c..4f2ae8d 100644
--- a/collections/hashset/index.html
+++ b/collections/hashset/index.html
@@ -418,6 +418,8 @@ public Object clone() {
}
</code></pre>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -519,6 +521,14 @@ public Object clone() {
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/collections/index.html b/collections/index.html
index 4624eb9..55a5156 100644
--- a/collections/index.html
+++ b/collections/index.html
@@ -358,6 +358,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/collections/index.xml b/collections/index.xml
index 5f8c79e..4911a96 100644
--- a/collections/index.xml
+++ b/collections/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/collections/linkedhashmap/index.html b/collections/linkedhashmap/index.html
index 07a4e40..8fc2833 100644
--- a/collections/linkedhashmap/index.html
+++ b/collections/linkedhashmap/index.html
@@ -498,6 +498,8 @@
</code></pre>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -599,6 +601,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/collections/linkedlist/index.html b/collections/linkedlist/index.html
index 5743518..de7778b 100644
--- a/collections/linkedlist/index.html
+++ b/collections/linkedlist/index.html
@@ -730,6 +730,8 @@ public E peek() {
}
</code></pre>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -831,6 +833,14 @@ public E peek() {
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/collections/treemap/index.html b/collections/treemap/index.html
index d404b33..70b8ffd 100644
--- a/collections/treemap/index.html
+++ b/collections/treemap/index.html
@@ -555,6 +555,8 @@ public V put(K key, V value) {
</code></pre>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -656,6 +658,14 @@ public V put(K key, V value) {
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/collections/treeset/index.html b/collections/treeset/index.html
index a76177f..f3638e9 100644
--- a/collections/treeset/index.html
+++ b/collections/treeset/index.html
@@ -464,6 +464,8 @@ public SortedSet&lt;E&gt; subSet(E fromElement, E toElement) {
}
</code></pre>
</div>
+ <div class="article-footer">
+ </div>
</article>
<section id="comments">
</section>
@@ -565,6 +567,14 @@ public SortedSet&lt;E&gt; subSet(E fromElement, E toElement) {
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/index.html b/index.html
index 9155164..8c3afd6 100644
--- a/index.html
+++ b/index.html
@@ -933,6 +933,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/index.xml b/index.xml
index b4f4ea8..c5f9267 100644
--- a/index.xml
+++ b/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/posts/index.html b/posts/index.html
index 3ec8a21..a154244 100644
--- a/posts/index.html
+++ b/posts/index.html
@@ -298,11 +298,20 @@
aria-labelledby="heading2019">
<div class="panel-body">
<div class="collection">
-<a href="https://xiaohei.im/hugo-theme-pure/2019/11/replication/" class="collection-item" itemprop="url" target="_blank" >
- <time datetime="2019-11-16 14:24:40 &#43;0800 CST"
- itemprop="datePublished">2019-11-16</time>
- <span>&nbsp;&nbsp;&nbsp;</span>Redis-复制功能探索
-</a>
+<article class="panel panel-default hover-shadow hover-grow" itemscope itemtype="http://schema.org/BlogPosting">
+ <div class="panel-body">
+ <div class="article-meta">
+ <time datetime="2019-11-16 14:24:40 &#43;0800 CST"
+ itemprop="datePublished">2019-11-16</time>
+ </div>
+ <h3 class="article-title" itemprop="name">
+ <a class="article-link" href="https://xiaohei.im/hugo-theme-pure/2019/11/replication/">Redis-复制功能探索</a>
+ </h3>
+ </div>
+ <div class="panel-footer">
+ <a href="https://xiaohei.im/hugo-theme-pure/tags/redis" class="label label-default mb">redis</a>
+ </div>
+</article>
<a href="https://xiaohei.im/hugo-theme-pure/2019/11/event/" class="collection-item" itemprop="url" target="_blank" >
<time datetime="2019-11-14 15:01:45 &#43;0800 CST"
@@ -424,6 +433,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/posts/index.xml b/posts/index.xml
index 5dbb220..cfbcb36 100644
--- a/posts/index.xml
+++ b/posts/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/sitemap.xml b/sitemap.xml
index 82ae78d..af8a3ff 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -17,14 +17,14 @@
</url>
<url>
- <loc>https://xiaohei.im/hugo-theme-pure/categories/redis/</loc>
+ <loc>https://xiaohei.im/hugo-theme-pure/tags/redis/</loc>
<lastmod>2019-11-16T14:24:40+08:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
- <loc>https://xiaohei.im/hugo-theme-pure/tags/redis/</loc>
+ <loc>https://xiaohei.im/hugo-theme-pure/categories/redis/</loc>
<lastmod>2019-11-16T14:24:40+08:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
@@ -220,14 +220,14 @@
</url>
<url>
- <loc>https://xiaohei.im/hugo-theme-pure/tags/leetcode/</loc>
+ <loc>https://xiaohei.im/hugo-theme-pure/categories/leetcode/</loc>
<lastmod>2019-08-21T15:29:34+08:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
- <loc>https://xiaohei.im/hugo-theme-pure/categories/leetcode/</loc>
+ <loc>https://xiaohei.im/hugo-theme-pure/tags/leetcode/</loc>
<lastmod>2019-08-21T15:29:34+08:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
diff --git a/tags/collections/index.html b/tags/collections/index.html
index 7a2bd81..55f8c3e 100644
--- a/tags/collections/index.html
+++ b/tags/collections/index.html
@@ -430,6 +430,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/tags/collections/index.xml b/tags/collections/index.xml
index c78bc54..78722b6 100644
--- a/tags/collections/index.xml
+++ b/tags/collections/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/tags/hugo/index.html b/tags/hugo/index.html
index 8a18188..6d233fe 100644
--- a/tags/hugo/index.html
+++ b/tags/hugo/index.html
@@ -334,6 +334,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/tags/hugo/index.xml b/tags/hugo/index.xml
index b091fba..10488d0 100644
--- a/tags/hugo/index.xml
+++ b/tags/hugo/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/tags/hystrix/index.html b/tags/hystrix/index.html
index 918186e..5951dc8 100644
--- a/tags/hystrix/index.html
+++ b/tags/hystrix/index.html
@@ -335,6 +335,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/tags/hystrix/index.xml b/tags/hystrix/index.xml
index d4ba42d..ceeb41b 100644
--- a/tags/hystrix/index.xml
+++ b/tags/hystrix/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/tags/index.html b/tags/index.html
index 477483f..b1464dd 100644
--- a/tags/index.html
+++ b/tags/index.html
@@ -942,6 +942,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/tags/index.xml b/tags/index.xml
index 6b2044b..221e092 100644
--- a/tags/index.xml
+++ b/tags/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/tags/leetcode/index.html b/tags/leetcode/index.html
index 493ab12..7b8d590 100644
--- a/tags/leetcode/index.html
+++ b/tags/leetcode/index.html
@@ -369,6 +369,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/tags/leetcode/index.xml b/tags/leetcode/index.xml
index 2120608..635afa2 100644
--- a/tags/leetcode/index.xml
+++ b/tags/leetcode/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/tags/rabbitmq/index.html b/tags/rabbitmq/index.html
index 9349a27..c6c21b4 100644
--- a/tags/rabbitmq/index.html
+++ b/tags/rabbitmq/index.html
@@ -382,6 +382,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/tags/rabbitmq/index.xml b/tags/rabbitmq/index.xml
index 0735e05..22c0e37 100644
--- a/tags/rabbitmq/index.xml
+++ b/tags/rabbitmq/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/tags/redis/index.html b/tags/redis/index.html
index 13c2eac..70a5c2d 100644
--- a/tags/redis/index.html
+++ b/tags/redis/index.html
@@ -448,6 +448,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/tags/redis/index.xml b/tags/redis/index.xml
index 5f4d56b..f854709 100644
--- a/tags/redis/index.xml
+++ b/tags/redis/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/tags/rust/index.html b/tags/rust/index.html
index 5922b52..1669c5f 100644
--- a/tags/rust/index.html
+++ b/tags/rust/index.html
@@ -301,25 +301,55 @@
<div class="article-body">
<div class="col-md-6">
-<a href="https://xiaohei.im/hugo-theme-pure/2019/08/189-rotate-array/" class="collection-item" itemprop="url" target="_blank" >
- <time datetime="2019-08-21 15:29:34 &#43;0800 CST"
- itemprop="datePublished">2019-08-21</time>
- <span>&nbsp;&nbsp;&nbsp;</span>[LeetCode In Rust]189-Rotate Array
-</a>
+<article class="panel panel-default hover-shadow hover-grow" itemscope itemtype="http://schema.org/BlogPosting">
+ <div class="panel-body">
+ <div class="article-meta">
+ <time datetime="2019-08-21 15:29:34 &#43;0800 CST"
+ itemprop="datePublished">2019-08-21</time>
+ </div>
+ <h3 class="article-title" itemprop="name">
+ <a class="article-link" href="https://xiaohei.im/hugo-theme-pure/2019/08/189-rotate-array/">[LeetCode In Rust]189-Rotate Array</a>
+ </h3>
+ </div>
+ <div class="panel-footer">
+ <a href="https://xiaohei.im/hugo-theme-pure/tags/leetcode" class="label label-default mb">leetcode</a>
+ <a href="https://xiaohei.im/hugo-theme-pure/tags/rust" class="label label-default mb">rust</a>
+ </div>
+</article>
</div>
<div class="col-md-6">
-<a href="https://xiaohei.im/hugo-theme-pure/2019/08/026-remove-duplicates-from-sorted-array/" class="collection-item" itemprop="url" target="_blank" >
- <time datetime="2019-08-20 15:54:47 &#43;0800 CST"
- itemprop="datePublished">2019-08-20</time>
- <span>&nbsp;&nbsp;&nbsp;</span>[LeetCode In Rust]026-Remove Duplicates From Sorted Array
-</a>
+<article class="panel panel-default hover-shadow hover-grow" itemscope itemtype="http://schema.org/BlogPosting">
+ <div class="panel-body">
+ <div class="article-meta">
+ <time datetime="2019-08-20 15:54:47 &#43;0800 CST"
+ itemprop="datePublished">2019-08-20</time>
+ </div>
+ <h3 class="article-title" itemprop="name">
+ <a class="article-link" href="https://xiaohei.im/hugo-theme-pure/2019/08/026-remove-duplicates-from-sorted-array/">[LeetCode In Rust]026-Remove Duplicates From Sorted Array</a>
+ </h3>
+ </div>
+ <div class="panel-footer">
+ <a href="https://xiaohei.im/hugo-theme-pure/tags/leetcode" class="label label-default mb">leetcode</a>
+ <a href="https://xiaohei.im/hugo-theme-pure/tags/rust" class="label label-default mb">rust</a>
+ </div>
+</article>
</div>
<div class="col-md-6">
-<a href="https://xiaohei.im/hugo-theme-pure/2019/08/001-two-sum/" class="collection-item" itemprop="url" target="_blank" >
- <time datetime="2019-08-16 18:22:05 &#43;0800 CST"
- itemprop="datePublished">2019-08-16</time>
- <span>&nbsp;&nbsp;&nbsp;</span>[LeetCode In Rust]001-Two Sum
-</a>
+<article class="panel panel-default hover-shadow hover-grow" itemscope itemtype="http://schema.org/BlogPosting">
+ <div class="panel-body">
+ <div class="article-meta">
+ <time datetime="2019-08-16 18:22:05 &#43;0800 CST"
+ itemprop="datePublished">2019-08-16</time>
+ </div>
+ <h3 class="article-title" itemprop="name">
+ <a class="article-link" href="https://xiaohei.im/hugo-theme-pure/2019/08/001-two-sum/">[LeetCode In Rust]001-Two Sum</a>
+ </h3>
+ </div>
+ <div class="panel-footer">
+ <a href="https://xiaohei.im/hugo-theme-pure/tags/leetcode" class="label label-default mb">leetcode</a>
+ <a href="https://xiaohei.im/hugo-theme-pure/tags/rust" class="label label-default mb">rust</a>
+ </div>
+</article>
</div>
</div>
</article>
@@ -339,6 +369,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/tags/rust/index.xml b/tags/rust/index.xml
index 876e2ef..76ff531 100644
--- a/tags/rust/index.xml
+++ b/tags/rust/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/tags/rxjava/index.html b/tags/rxjava/index.html
index 1a0e98b..0cff48e 100644
--- a/tags/rxjava/index.html
+++ b/tags/rxjava/index.html
@@ -352,6 +352,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/tags/rxjava/index.xml b/tags/rxjava/index.xml
index 07ab366..44b0701 100644
--- a/tags/rxjava/index.xml
+++ b/tags/rxjava/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/tags/分布式锁/index.html b/tags/分布式锁/index.html
index d0e20eb..af5ae16 100644
--- a/tags/分布式锁/index.html
+++ b/tags/分布式锁/index.html
@@ -335,6 +335,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/tags/分布式锁/index.xml b/tags/分布式锁/index.xml
index af115cc..b153f26 100644
--- a/tags/分布式锁/index.xml
+++ b/tags/分布式锁/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/tags/响应式编程/index.html b/tags/响应式编程/index.html
index 41d5773..21d51a1 100644
--- a/tags/响应式编程/index.html
+++ b/tags/响应式编程/index.html
@@ -335,6 +335,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/tags/响应式编程/index.xml b/tags/响应式编程/index.xml
index 2a2f9ee..7bac030 100644
--- a/tags/响应式编程/index.xml
+++ b/tags/响应式编程/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>
diff --git a/tags/数据结构/index.html b/tags/数据结构/index.html
index e106039..9af13bf 100644
--- a/tags/数据结构/index.html
+++ b/tags/数据结构/index.html
@@ -335,6 +335,14 @@
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_SVG"></script>
+<script type="text/x-mathjax-config">
+ MathJax.Hub.Config({
+ showMathMenu: false, //disables context menu
+ tex2jax: {
+ inlineMath: [ ['$','$'], ['\\(','\\)'] ]
+ }
+ });
+</script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')
diff --git a/tags/数据结构/index.xml b/tags/数据结构/index.xml
index 0f7c235..8809c4a 100644
--- a/tags/数据结构/index.xml
+++ b/tags/数据结构/index.xml
@@ -249,7 +249,7 @@
<pubDate>Thu, 15 Aug 2019 13:19:18 +0800</pubDate>
<guid>https://xiaohei.im/hugo-theme-pure/about/</guid>
- <description>xiaoheiAh~ 联系方式 github: @xiaoheiAh gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
+ <description>xiaoheiAh~ 联系方式 github: (https://github.com/xiaoheiAh) gmail: xiaohei.zyx@gmail.com 节点推荐 -&amp;gt; http://1t.click/aCyT 关注的大佬博客 面向信仰编程 真·面向信仰,硬核,主 go ,其他技术也很在行, kubernetes 贡献者.翻了翻他博客,就比我大一届,跪</description>
</item>
</channel>