jekyll-theme-gaeblogx 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (144) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +9 -0
  4. data/_includes/algolia.html +75 -0
  5. data/_includes/backToTop.html +5 -0
  6. data/_includes/category.html +19 -0
  7. data/_includes/comments.html +46 -0
  8. data/_includes/footer.html +33 -0
  9. data/_includes/head.html +58 -0
  10. data/_includes/header.html +34 -0
  11. data/_includes/previousAndNext.html +13 -0
  12. data/_includes/sidebar-search.html +25 -0
  13. data/_includes/tag.html +16 -0
  14. data/_layouts/default.html +26 -0
  15. data/_layouts/demo.html +10 -0
  16. data/_layouts/page.html +31 -0
  17. data/_layouts/post.html +107 -0
  18. data/_sass/_backToTop.scss +49 -0
  19. data/_sass/_demo.scss +65 -0
  20. data/_sass/_footer.scss +63 -0
  21. data/_sass/_header.scss +174 -0
  22. data/_sass/_index.scss +174 -0
  23. data/_sass/_layout.scss +242 -0
  24. data/_sass/_page.scss +238 -0
  25. data/_sass/_post-old.scss +109 -0
  26. data/_sass/_post.scss +83 -0
  27. data/_sass/_reset.scss +119 -0
  28. data/_sass/_scrollbar.scss +35 -0
  29. data/_sass/_syntax-highlighting.scss +99 -0
  30. data/assets/10.jpg +0 -0
  31. data/assets/AWS-Introduction-ec2.png +0 -0
  32. data/assets/Cache-Oblivious-Algorithms-FunnelSort.jpg +0 -0
  33. data/assets/Condition-Variables-fig1.png +0 -0
  34. data/assets/Dynamic-Compilation-adaptJVM.pdf +0 -0
  35. data/assets/Dynamic-Compilation-dyncomp.pdf +0 -0
  36. data/assets/Fibonacci-Heap-Fig3.png +0 -0
  37. data/assets/Fibonacci-Heap-Fig5.png +0 -0
  38. data/assets/Fibonacci-Heap-Fig6.png +0 -0
  39. data/assets/Fibonacci-Heap-Fig7.png +0 -0
  40. data/assets/File-System-bc.jpg +0 -0
  41. data/assets/File-System-filetable.rich.jpg +0 -0
  42. data/assets/GIL-Battle.png +0 -0
  43. data/assets/GIL-CPU.png +0 -0
  44. data/assets/GIL-Check.png +0 -0
  45. data/assets/GIL-IO.png +0 -0
  46. data/assets/GIL-Measure-1.png +0 -0
  47. data/assets/GIL-Measure-2.png +0 -0
  48. data/assets/GIL-Signal.png +0 -0
  49. data/assets/GIL-Tick.png +0 -0
  50. data/assets/Garbage-Collection-Slides-gc.pdf +0 -0
  51. data/assets/Garbage-Collection-copying-1.png +0 -0
  52. data/assets/Garbage-Collection-copying-2.png +0 -0
  53. data/assets/Garbage-Collection-free-list.png +0 -0
  54. data/assets/Garbage-Collection-generation-1.png +0 -0
  55. data/assets/Garbage-Collection-mark-sweep.png +0 -0
  56. data/assets/Garbage-Collection-nursery-1.png +0 -0
  57. data/assets/Garbage-Collection-nursery-2.png +0 -0
  58. data/assets/Garbage-Collection-nursery-3.png +0 -0
  59. data/assets/Garbage-Collection-nursery-4.png +0 -0
  60. data/assets/Garbage-Collection-nursery-5.png +0 -0
  61. data/assets/Garbage-Collection-process.png +0 -0
  62. data/assets/Garbage-Collection-ref-counting.png +0 -0
  63. data/assets/Interpreter-Optimization-interp.pdf +0 -0
  64. data/assets/Memory-Management-fig1.png +0 -0
  65. data/assets/Memory-Management-fig2.png +0 -0
  66. data/assets/Memory-Management-fig3.png +0 -0
  67. data/assets/Memory-Management-fig4.png +0 -0
  68. data/assets/Memory-Management-fig5.png +0 -0
  69. data/assets/Memory-Management-fig6.png +0 -0
  70. data/assets/Memory-Management-fig7.png +0 -0
  71. data/assets/Memory-Management-fig8.png +0 -0
  72. data/assets/Multicore-GIL-1.png +0 -0
  73. data/assets/Multicore-GIL-2.png +0 -0
  74. data/assets/My-Photo.JPG +0 -0
  75. data/assets/Operating-System-Virtualization-ept.png +0 -0
  76. data/assets/Operating-System-Virtualization-guest-page.png +0 -0
  77. data/assets/Operating-System-Virtualization-kvm-arch.png +0 -0
  78. data/assets/Operating-System-Virtualization-kvm-process.png +0 -0
  79. data/assets/Operating-System-Virtualization-kvm-qemu.png +0 -0
  80. data/assets/Operating-System-Virtualization-kvm-state.png +0 -0
  81. data/assets/Operating-System-Virtualization-vtx.png +0 -0
  82. data/assets/Operating-System-Virtualization-xen-arch.png +0 -0
  83. data/assets/Program-Profiling-profiling.pdf +0 -0
  84. data/assets/Programming-Language-Virtual-Machine-vm.pdf +0 -0
  85. data/assets/Remote-Shell-Session-Setup-1.png +0 -0
  86. data/assets/Signals-1.png +0 -0
  87. data/assets/Signals-2.png +0 -0
  88. data/assets/Signals-3.png +0 -0
  89. data/assets/Some-Slides-about-Containers-Kubernetes.pdf +0 -0
  90. data/assets/Some-Slides-about-Containers-UCSB-nurmi.pdf +0 -0
  91. data/assets/Some-Slides-about-PaaS-CS293B_CloudPlatforms.pdf +0 -0
  92. data/assets/avg-1thread.c +172 -0
  93. data/assets/avg-manythread.c +284 -0
  94. data/assets/avg-nothread.c +71 -0
  95. data/assets/file-create1.c +75 -0
  96. data/assets/file-create2.c +120 -0
  97. data/assets/file-fd1.c +56 -0
  98. data/assets/file-fd2.c +25 -0
  99. data/assets/file-fd3.c +23 -0
  100. data/assets/file-read1.c +62 -0
  101. data/assets/file-read2.c +66 -0
  102. data/assets/file-seek1.c +87 -0
  103. data/assets/fork-1.c +35 -0
  104. data/assets/fork-2.c +44 -0
  105. data/assets/fork-3.c +60 -0
  106. data/assets/fork-4.c +64 -0
  107. data/assets/joinall-1.c +163 -0
  108. data/assets/joinall-2.c +162 -0
  109. data/assets/market-kthreads.c +465 -0
  110. data/assets/market-semaphore.c +504 -0
  111. data/assets/market1.c +478 -0
  112. data/assets/market2.c +490 -0
  113. data/assets/market3.c +503 -0
  114. data/assets/market4.c +509 -0
  115. data/assets/my-cat.c +35 -0
  116. data/assets/pipe-1.c +45 -0
  117. data/assets/pipe-2.c +80 -0
  118. data/assets/pipe-3.c +83 -0
  119. data/assets/pipe-4.c +116 -0
  120. data/assets/race1.c +75 -0
  121. data/assets/race2.c +77 -0
  122. data/assets/race3.c +87 -0
  123. data/assets/race_ABC.c +144 -0
  124. data/assets/search-by-algolia.svg +1 -0
  125. data/assets/semaphore.book.ps +8827 -0
  126. data/assets/sys-call1.c +20 -0
  127. data/assets/sys-call2.c +16 -0
  128. data/assets//350/265/253/347/202/2161.PNG +0 -0
  129. data/feed.xml +30 -0
  130. data/index.html +164 -0
  131. data/js/jekyll-search.min.js +1 -0
  132. data/js/lunr.min.js +2977 -0
  133. data/js/main.js +57 -0
  134. data/js/masonry.pkgd.min.js +9 -0
  135. data/js/pageContent.js +166 -0
  136. data/js/search.js +17 -0
  137. data/js/smooth-scroll.min.js +2 -0
  138. data/js/waterfall.js +214 -0
  139. data/page/0archives.html +83 -0
  140. data/page/1category.html +62 -0
  141. data/page/2tags.html +64 -0
  142. data/page/3search.html +112 -0
  143. data/page/4about.md +34 -0
  144. metadata +270 -0
@@ -0,0 +1,83 @@
1
+ ---
2
+ layout: default
3
+ title: Archives
4
+ permalink: /archive/
5
+ icon: archive
6
+ type: page
7
+ ---
8
+
9
+ <!-- <h1>Archive of posts with {{ page.type }} '{{ page.title }}'</h1> -->
10
+
11
+
12
+ <div class="page clearfix">
13
+ <div class="left">
14
+ <h1>{{page.title}}</h1>
15
+ <hr>
16
+ <div class="well post">
17
+ {% assign postsByYear = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
18
+ {% assign postsByMonth = site.posts | group_by_exp: "post", "post.date | date: '%Y %m'" %}
19
+ {% for year in postsByYear %}
20
+ <h2 id="y{{ post.date | date: '%Y' }}">{{year.name}}年</h2>
21
+ {% for month in postsByMonth %}
22
+ {% assign yearMonthArr = month.name | split: " " %}
23
+ {% if year.name == yearMonthArr[0] %}
24
+ <ul>
25
+ <div class="month">
26
+ <h2 class="month" id="m{{yearMonthArr[0]}}{{yearMonthArr[1]}}">{{yearMonthArr[1]}}月</h2>
27
+ <ul class="table-of-content">
28
+ {% for post in month.items %}
29
+ <li>
30
+ <time>
31
+ {{ post.date | date:"%F" }} {{ post.date | date: "%a" }}.
32
+ </time>
33
+ <a class="title" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
34
+
35
+ {% include category.html %}
36
+ {% include tag.html %}
37
+ </li>
38
+ {% endfor %}
39
+ </ul>
40
+ </div>
41
+ </ul>
42
+ {% endif %}
43
+ {% endfor %}
44
+ {% if forloop.last == false %}
45
+ <hr>
46
+ {% endif %}
47
+ {% endfor %}
48
+ </div>
49
+ </div>
50
+ <button class="anchor"><i class="fa fa-anchor"></i></button>
51
+ <div class="right">
52
+ <div class="wrap">
53
+
54
+ <div class="side content">
55
+ {% include sidebar-search.html %}
56
+ </div>
57
+ <!-- Content -->
58
+ <div class="side content">
59
+ <div>
60
+ Content
61
+ </div>
62
+ <ul class="table-of-content">
63
+ {% assign postsByYear = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
64
+ {% assign postsByMonth = site.posts | group_by_exp: "post", "post.date | date: '%Y %m'" %}
65
+ {% for year in postsByYear %}
66
+ <li><a href="#y{{year.name}}">{{year.name}}年 ({{year.items | size}}篇)</a></li>
67
+ <ul>
68
+ {% for month in postsByMonth %}
69
+ {% assign yearMonthArr = month.name | split: " " %}
70
+ {% if year.name == yearMonthArr[0] %}
71
+ <li><a href="#m{{yearMonthArr[0]}}{{yearMonthArr[1]}}">{{yearMonthArr[1]}}月 ({{month.items | size}}篇)</a></li>
72
+ {% endif %}
73
+ {% endfor %}
74
+ </ul>
75
+ {% endfor %}
76
+ </ul>
77
+ </div>
78
+ <!-- 其他div框放到这里 -->
79
+ <!-- <div class="side">bbbb</div> -->
80
+ </div>
81
+ </div>
82
+ </div>
83
+ <script src="{{ "/js/pageContent.js " | prepend: site.baseurl }}" charset="utf-8"></script>
@@ -0,0 +1,62 @@
1
+ ---
2
+ layout: default
3
+ title: Categories
4
+ permalink: /category/
5
+ icon: th-list
6
+ type: page
7
+ ---
8
+
9
+
10
+ <div class="page clearfix">
11
+ <div class="left">
12
+ <h1>{{page.title}}</h1>
13
+ <hr>
14
+ <ul>
15
+ {% for category in site.categories %}
16
+ <h2 id="{{category | first}}">{{category | first}}</h2>
17
+ {% for posts in category %}
18
+ {% for post in posts %}
19
+ {% if post.url %}
20
+ <li>
21
+ <time>
22
+ {{ post.date | date:"%F" }} {{ post.date | date: "%a" }}.
23
+ </time>
24
+ <a class="title" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
25
+
26
+ {% include category.html %}
27
+ {% include tag.html %}
28
+ </li>
29
+ {% endif %}
30
+ {% endfor %}
31
+ {% endfor %}
32
+ {% endfor %}
33
+ </ul>
34
+ </div>
35
+ <button class="anchor"><i class="fa fa-anchor"></i></button>
36
+ <div class="right">
37
+ <div class="wrap">
38
+
39
+ <div class="side content" id="search-div">
40
+ {% include sidebar-search.html %}
41
+ </div>
42
+ <!-- Content -->
43
+ <div class="side content">
44
+ <div>
45
+ Content
46
+ </div>
47
+ <ul id="content-side" class="content-ul">
48
+ {% for category in site.categories%}
49
+ <li>
50
+ <a data-scroll href="#{{ category | first }}">
51
+ {{ category | first }} ({{ category | last | size }})
52
+ </a>
53
+ </li>
54
+ {% endfor %}
55
+ </ul>
56
+ </div>
57
+ <!-- 其他div框放到这里 -->
58
+ <!-- <div class="side">bbbb</div> -->
59
+ </div>
60
+ </div>
61
+ </div>
62
+ <script src="{{ "/js/pageContent.js " | prepend: site.baseurl }}" charset="utf-8"></script>
data/page/2tags.html ADDED
@@ -0,0 +1,64 @@
1
+ ---
2
+ layout: default
3
+ title: Tags
4
+ permalink: /tag/
5
+ icon: tags
6
+ type: page
7
+ ---
8
+
9
+ <div class="page clearfix">
10
+ <div class="left">
11
+ <h1>{{page.title}}</h1>
12
+ <hr>
13
+ {% assign alltags = '' | split: '' %}
14
+ {% for tag in site.tags %}
15
+ {% assign alltags = alltags | push: tag[0]%}
16
+ {% endfor %}
17
+ {% assign sortedtags = alltags | sort %}
18
+ <ul>
19
+ {% for tag in sortedtags %}
20
+ <h2 id="{{ tag }}">{{ tag }}</h2>
21
+ {% for post in site.tags[tag] %}
22
+ <li>
23
+ <time>
24
+ {{ post.date | date:"%F" }} {{ post.date | date: "%a" }}.
25
+ </time>
26
+ <a class="title" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
27
+
28
+ {% include category.html %}
29
+ {% include tag.html %}
30
+ </li>
31
+ {% endfor %}
32
+ {% endfor %}
33
+ </ul>
34
+
35
+ </div>
36
+ <button class="anchor"><i class="fa fa-anchor"></i></button>
37
+ <div class="right">
38
+ <div class="wrap">
39
+
40
+ <div class="side content" id="search-div">
41
+ {% include sidebar-search.html %}
42
+ </div>
43
+ <!-- Content -->
44
+ <div class="side content">
45
+ <div>
46
+ Content
47
+ </div>
48
+ <ul id="content-side" class="content-ul">
49
+ {% for tag in sortedtags %}
50
+ <li>
51
+ <a data-scroll href="#{{ tag }}">
52
+ {{ tag }} ({{ site.tags[tag].size }})
53
+ </a>
54
+ </li>
55
+ {% endfor %}
56
+
57
+ </ul>
58
+ </div>
59
+ <!-- 其他div框放到这里 -->
60
+ <!-- <div class="side">bbbb</div> -->
61
+ </div>
62
+ </div>
63
+ </div>
64
+ <script src="{{ "/js/pageContent.js " | prepend: site.baseurl }}" charset="utf-8"></script>
data/page/3search.html ADDED
@@ -0,0 +1,112 @@
1
+ ---
2
+ layout: default
3
+ title: Search
4
+ permalink: /search/
5
+ icon: search
6
+ type: page
7
+ ---
8
+ <div class="page clearfix" index>
9
+ <div class="left">
10
+ <img src="/assets/search-by-algolia.svg" style="height:2em;">
11
+ <div id="search-searchbar">
12
+ </div>
13
+ <hr>
14
+
15
+ <div id="search-hits"> </div>
16
+ {% include algolia.html %}
17
+ </div>
18
+ <div class="right">
19
+ <div class="wrap">
20
+
21
+ <div class="side">
22
+ {% include sidebar-search.html %}
23
+ </div>
24
+
25
+ <div class="side">
26
+ <div>
27
+ <i class="fa fa-pencil-square-o" aria-hidden="true"></i>
28
+ Recent Posts
29
+ </div>
30
+ <ul class="content-ul" recent>
31
+ {% for post in site.posts offset: 0 limit: 10 %}
32
+ <li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li>
33
+ {% endfor %}
34
+ </ul>
35
+ </div>
36
+
37
+ <!-- Content -->
38
+ <div class="side ">
39
+ <div>
40
+ <i class="fa fa-th-list"></i>
41
+ Categories
42
+ </div>
43
+ <ul class="content-ul" cate>
44
+ {% for category in site.categories %}
45
+ <li>
46
+ <a href="{{ root_url }}/{{ site.category_dir }}#{{ category | first }}" class="categories-list-item" cate="{{ category | first }}">
47
+ <span class="name">
48
+ {{ category | first }}
49
+ </span>
50
+ <span class="badge">{{ category | last | size }}</span>
51
+ </a>
52
+ </li>
53
+ {% endfor %}
54
+ </ul>
55
+ </div>
56
+ <!-- 其他div框放到这里 -->
57
+ <div class="side">
58
+ <div>
59
+ <i class="fa fa-tags"></i>
60
+ Tags
61
+ </div>
62
+ <div class="tags-cloud">
63
+ {% assign first = site.tags.first %}
64
+ {% assign max = first[1].size %}
65
+ {% assign min = max %}
66
+ {% for tag in site.tags offset:1 %}
67
+ {% if tag[1].size > max %}
68
+ {% assign max = tag[1].size %}
69
+ {% elsif tag[1].size < min %}
70
+ {% assign min = tag[1].size %}
71
+ {% endif %}
72
+ {% endfor %}
73
+
74
+ {% if max == min %}
75
+ {% assign diff = 1 %}
76
+ {% else %}
77
+ {% assign diff = max | minus: min %}
78
+ {% endif %}
79
+
80
+ {% for tag in site.tags %}
81
+ {% assign temp = tag[1].size | minus: min | times: 36 | divided_by: diff %}
82
+ {% assign base = temp | divided_by: 4 %}
83
+ {% assign remain = temp | modulo: 4 %}
84
+ {% if remain == 0 %}
85
+ {% assign size = base | plus: 9 %}
86
+ {% elsif remain == 1 or remain == 2 %}
87
+ {% assign size = base | plus: 9 | append: '.5' %}
88
+ {% else %}
89
+ {% assign size = base | plus: 10 %}
90
+ {% endif %}
91
+ {% if remain == 0 or remain == 1 %}
92
+ {% assign color = 9 | minus: base %}
93
+ {% else %}
94
+ {% assign color = 8 | minus: base %}
95
+ {% endif %}
96
+ <a href="{{ root_url }}/{{ site.tag_dir }}#{{ tag[0] }}" style="font-size: {{ size }}pt; color: #{{ color }}{{ color }}{{ color }};">{{ tag[0] }}</a>
97
+ {% endfor %}
98
+ </div>
99
+ </div>
100
+
101
+ <!-- <div class="side">
102
+ <div>
103
+ <i class="fa fa-external-link"></i>
104
+ Links
105
+ </div>
106
+ <ul class="content-ul">
107
+
108
+ </ul>
109
+ </div> -->
110
+ </div>
111
+ </div>
112
+ </div>
data/page/4about.md ADDED
@@ -0,0 +1,34 @@
1
+ ---
2
+ layout: page
3
+ title: About
4
+ permalink: /about/
5
+ icon: heart
6
+ type: page
7
+ ---
8
+
9
+ * content
10
+ {:toc}
11
+
12
+ <iframe src="https://githubbadge.appspot.com/SeraphRoy" style="border: 0;height: 142px;width: 200px;overflow: hidden;" frameBorder="0"></iframe>
13
+
14
+ ## About Me
15
+
16
+ ![]({{site.url}}/assets/My-Photo.JPG){:height="50%" width="50%"}
17
+
18
+ I am currently working in Arista Networks Inc.. In June 2017, I got the B.S.
19
+ degree of Computer Science from [University of California, Santa Barbara](http://www.ucsb.edu).
20
+
21
+ \#现充,\#死宅,\#中二,\#本命アティ@赫炎
22
+
23
+
24
+ ## Contact Me
25
+ [Github](https://github.com/SeraphRoy)
26
+
27
+ [LinkedIn](https://www.linkedin.com/in/yanxichen/)
28
+
29
+ [Facebook](https://www.facebook.com/SeraphRoy)
30
+
31
+
32
+ ## Comments
33
+
34
+ {% include comments.html %}
metadata ADDED
@@ -0,0 +1,270 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-gaeblogx
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Baby Pepper
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-07-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.16'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.16'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '12.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '12.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-paginate
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.1'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.1'
69
+ - !ruby/object:Gem::Dependency
70
+ name: jekyll-seo-tag
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.4'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.4'
83
+ - !ruby/object:Gem::Dependency
84
+ name: jekyll-algolia
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.1'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.1'
97
+ description:
98
+ email:
99
+ - royxagain@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - LICENSE
105
+ - README.md
106
+ - _includes/algolia.html
107
+ - _includes/backToTop.html
108
+ - _includes/category.html
109
+ - _includes/comments.html
110
+ - _includes/footer.html
111
+ - _includes/head.html
112
+ - _includes/header.html
113
+ - _includes/previousAndNext.html
114
+ - _includes/sidebar-search.html
115
+ - _includes/tag.html
116
+ - _layouts/default.html
117
+ - _layouts/demo.html
118
+ - _layouts/page.html
119
+ - _layouts/post.html
120
+ - _sass/_backToTop.scss
121
+ - _sass/_demo.scss
122
+ - _sass/_footer.scss
123
+ - _sass/_header.scss
124
+ - _sass/_index.scss
125
+ - _sass/_layout.scss
126
+ - _sass/_page.scss
127
+ - _sass/_post-old.scss
128
+ - _sass/_post.scss
129
+ - _sass/_reset.scss
130
+ - _sass/_scrollbar.scss
131
+ - _sass/_syntax-highlighting.scss
132
+ - assets/10.jpg
133
+ - assets/AWS-Introduction-ec2.png
134
+ - assets/Cache-Oblivious-Algorithms-FunnelSort.jpg
135
+ - assets/Condition-Variables-fig1.png
136
+ - assets/Dynamic-Compilation-adaptJVM.pdf
137
+ - assets/Dynamic-Compilation-dyncomp.pdf
138
+ - assets/Fibonacci-Heap-Fig3.png
139
+ - assets/Fibonacci-Heap-Fig5.png
140
+ - assets/Fibonacci-Heap-Fig6.png
141
+ - assets/Fibonacci-Heap-Fig7.png
142
+ - assets/File-System-bc.jpg
143
+ - assets/File-System-filetable.rich.jpg
144
+ - assets/GIL-Battle.png
145
+ - assets/GIL-CPU.png
146
+ - assets/GIL-Check.png
147
+ - assets/GIL-IO.png
148
+ - assets/GIL-Measure-1.png
149
+ - assets/GIL-Measure-2.png
150
+ - assets/GIL-Signal.png
151
+ - assets/GIL-Tick.png
152
+ - assets/Garbage-Collection-Slides-gc.pdf
153
+ - assets/Garbage-Collection-copying-1.png
154
+ - assets/Garbage-Collection-copying-2.png
155
+ - assets/Garbage-Collection-free-list.png
156
+ - assets/Garbage-Collection-generation-1.png
157
+ - assets/Garbage-Collection-mark-sweep.png
158
+ - assets/Garbage-Collection-nursery-1.png
159
+ - assets/Garbage-Collection-nursery-2.png
160
+ - assets/Garbage-Collection-nursery-3.png
161
+ - assets/Garbage-Collection-nursery-4.png
162
+ - assets/Garbage-Collection-nursery-5.png
163
+ - assets/Garbage-Collection-process.png
164
+ - assets/Garbage-Collection-ref-counting.png
165
+ - assets/Interpreter-Optimization-interp.pdf
166
+ - assets/Memory-Management-fig1.png
167
+ - assets/Memory-Management-fig2.png
168
+ - assets/Memory-Management-fig3.png
169
+ - assets/Memory-Management-fig4.png
170
+ - assets/Memory-Management-fig5.png
171
+ - assets/Memory-Management-fig6.png
172
+ - assets/Memory-Management-fig7.png
173
+ - assets/Memory-Management-fig8.png
174
+ - assets/Multicore-GIL-1.png
175
+ - assets/Multicore-GIL-2.png
176
+ - assets/My-Photo.JPG
177
+ - assets/Operating-System-Virtualization-ept.png
178
+ - assets/Operating-System-Virtualization-guest-page.png
179
+ - assets/Operating-System-Virtualization-kvm-arch.png
180
+ - assets/Operating-System-Virtualization-kvm-process.png
181
+ - assets/Operating-System-Virtualization-kvm-qemu.png
182
+ - assets/Operating-System-Virtualization-kvm-state.png
183
+ - assets/Operating-System-Virtualization-vtx.png
184
+ - assets/Operating-System-Virtualization-xen-arch.png
185
+ - assets/Program-Profiling-profiling.pdf
186
+ - assets/Programming-Language-Virtual-Machine-vm.pdf
187
+ - assets/Remote-Shell-Session-Setup-1.png
188
+ - assets/Signals-1.png
189
+ - assets/Signals-2.png
190
+ - assets/Signals-3.png
191
+ - assets/Some-Slides-about-Containers-Kubernetes.pdf
192
+ - assets/Some-Slides-about-Containers-UCSB-nurmi.pdf
193
+ - assets/Some-Slides-about-PaaS-CS293B_CloudPlatforms.pdf
194
+ - assets/avg-1thread.c
195
+ - assets/avg-manythread.c
196
+ - assets/avg-nothread.c
197
+ - assets/file-create1.c
198
+ - assets/file-create2.c
199
+ - assets/file-fd1.c
200
+ - assets/file-fd2.c
201
+ - assets/file-fd3.c
202
+ - assets/file-read1.c
203
+ - assets/file-read2.c
204
+ - assets/file-seek1.c
205
+ - assets/fork-1.c
206
+ - assets/fork-2.c
207
+ - assets/fork-3.c
208
+ - assets/fork-4.c
209
+ - assets/joinall-1.c
210
+ - assets/joinall-2.c
211
+ - assets/market-kthreads.c
212
+ - assets/market-semaphore.c
213
+ - assets/market1.c
214
+ - assets/market2.c
215
+ - assets/market3.c
216
+ - assets/market4.c
217
+ - assets/my-cat.c
218
+ - assets/pipe-1.c
219
+ - assets/pipe-2.c
220
+ - assets/pipe-3.c
221
+ - assets/pipe-4.c
222
+ - assets/race1.c
223
+ - assets/race2.c
224
+ - assets/race3.c
225
+ - assets/race_ABC.c
226
+ - assets/search-by-algolia.svg
227
+ - assets/semaphore.book.ps
228
+ - assets/sys-call1.c
229
+ - assets/sys-call2.c
230
+ - assets/赫炎1.PNG
231
+ - feed.xml
232
+ - index.html
233
+ - js/jekyll-search.min.js
234
+ - js/lunr.min.js
235
+ - js/main.js
236
+ - js/masonry.pkgd.min.js
237
+ - js/pageContent.js
238
+ - js/search.js
239
+ - js/smooth-scroll.min.js
240
+ - js/waterfall.js
241
+ - page/0archives.html
242
+ - page/1category.html
243
+ - page/2tags.html
244
+ - page/3search.html
245
+ - page/4about.md
246
+ homepage: https://github.com/SeraphRoy/GaeBlogx
247
+ licenses:
248
+ - MIT
249
+ metadata: {}
250
+ post_install_message:
251
+ rdoc_options: []
252
+ require_paths:
253
+ - lib
254
+ required_ruby_version: !ruby/object:Gem::Requirement
255
+ requirements:
256
+ - - ">="
257
+ - !ruby/object:Gem::Version
258
+ version: '0'
259
+ required_rubygems_version: !ruby/object:Gem::Requirement
260
+ requirements:
261
+ - - ">="
262
+ - !ruby/object:Gem::Version
263
+ version: '0'
264
+ requirements: []
265
+ rubyforge_project:
266
+ rubygems_version: 2.5.1
267
+ signing_key:
268
+ specification_version: 4
269
+ summary: Simple Jekyll Theme
270
+ test_files: []