-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
100 changed files
with
23,435 additions
and
1,829 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
|
||
# Created by https://www.gitignore.io/api/macos | ||
|
||
### macOS ### | ||
*.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Icon must end with two \r | ||
Icon | ||
|
||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear in the root of a volume | ||
.DocumentRevisions-V100 | ||
.fseventsd | ||
.Spotlight-V100 | ||
.TemporaryItems | ||
.Trashes | ||
.VolumeIcon.icns | ||
.com.apple.timemachine.donotpresent | ||
|
||
# Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
|
||
# End of https://www.gitignore.io/api/macos | ||
|
||
# debug file | ||
_site | ||
|
||
.jekyll-cache/ | ||
Gemfile | ||
Gemfile.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
language: ruby | ||
env: | ||
global: | ||
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true | ||
install: | ||
- gem install jekyll | ||
- gem install jekyll-paginate | ||
script: | ||
- jekyll build | ||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
layout: default | ||
description: "你来到了没有知识的荒原 🙊" | ||
header-img: "img/404-bg.jpg" | ||
permalink: /404.html | ||
--- | ||
|
||
|
||
<!-- Page Header --> | ||
<header class="intro-header" style="background-image: url('{{ site.baseurl }}/{% if page.header-img %}{{ page.header-img }}{% else %}{{ site.header-img }}{% endif %}')"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> | ||
<div class="site-heading" id="tag-heading"> | ||
<h1>404</h1> | ||
<span class="subheading">{{ page.description }}</span> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<script> | ||
document.body.classList.add('page-fullscreen'); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
liumh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
module.exports = function(grunt) { | ||
|
||
// Project configuration. | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON('package.json'), | ||
uglify: { | ||
main: { | ||
src: 'js/<%= pkg.name %>.js', | ||
dest: 'js/<%= pkg.name %>.min.js' | ||
} | ||
}, | ||
less: { | ||
expanded: { | ||
options: { | ||
paths: ["css"] | ||
}, | ||
files: { | ||
"css/<%= pkg.name %>.css": "less/<%= pkg.name %>.less" | ||
} | ||
}, | ||
minified: { | ||
options: { | ||
paths: ["css"], | ||
cleancss: true | ||
}, | ||
files: { | ||
"css/<%= pkg.name %>.min.css": "less/<%= pkg.name %>.less" | ||
} | ||
} | ||
}, | ||
banner: '/*!\n' + | ||
' * <%= pkg.title %> v<%= pkg.version %> (<%= pkg.homepage %>)\n' + | ||
' * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' + | ||
' */\n', | ||
usebanner: { | ||
dist: { | ||
options: { | ||
position: 'top', | ||
banner: '<%= banner %>' | ||
}, | ||
files: { | ||
src: ['css/<%= pkg.name %>.css', 'css/<%= pkg.name %>.min.css', 'js/<%= pkg.name %>.min.js'] | ||
} | ||
} | ||
}, | ||
watch: { | ||
scripts: { | ||
files: ['js/<%= pkg.name %>.js'], | ||
tasks: ['uglify'], | ||
options: { | ||
spawn: false, | ||
}, | ||
}, | ||
less: { | ||
files: ['less/*.less'], | ||
tasks: ['less'], | ||
options: { | ||
spawn: false, | ||
} | ||
}, | ||
}, | ||
}); | ||
|
||
// Load the plugins. | ||
grunt.loadNpmTasks('grunt-contrib-uglify'); | ||
grunt.loadNpmTasks('grunt-contrib-less'); | ||
grunt.loadNpmTasks('grunt-banner'); | ||
grunt.loadNpmTasks('grunt-contrib-watch'); | ||
|
||
// Default task(s). | ||
grunt.registerTask('default', ['uglify', 'less', 'usebanner']); | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2017 BY | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# hello | ||
# 个人博客 | ||
|
||
[五子棋](https://HugueLiu.github.io/gobang.html) | ||
[blog](https://HugueLiu.github.io/blog/2018-11-15/ubuntu16.04_recovering_journal.html) | ||
> forked from qiubaiying/qiubaiying.github.io | ||
https://github.com/HugueLiu/HugueLiu3.github.io |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,105 @@ | ||
theme: jekyll-theme-minimal | ||
# Site settings | ||
title: LIUMH BLOG | ||
SEOTitle: LIUMH的博客 | ||
header-img: img/post-bg-desk.jpg | ||
email: | ||
description: "Every failure is leading towards success." | ||
keyword: "Blog, SLAM, robot" | ||
url: "http://HugueLiu.github.io" # your host, for absolute URL | ||
baseurl: "" # for example, '/blog' if your blog hosted on 'host/blog' | ||
github_repo: "https://github.com/HugueLiu/HugueLiu.github.io.git" # you code repository | ||
|
||
# Sidebar settings | ||
sidebar: false # whether or not using Sidebar. | ||
sidebar-about-description: "" | ||
sidebar-avatar: # use absolute URL, seeing it's used in both `/` and `/about/` | ||
|
||
|
||
|
||
# SNS settings | ||
RSS: false | ||
# weibo_username: qiubaiying | ||
# zhihu_username: qiubaiying | ||
# github_username: qiubaiying | ||
# facebook_username: baiying.qiu.7 | ||
# jianshu_username: e71990ada2fd | ||
# twitter_username: qiubaiying | ||
|
||
|
||
|
||
|
||
# Build settings | ||
# from 2016, 'pygments' is unsupported on GitHub Pages. Use 'rouge' for highlighting instead. | ||
permalink: pretty | ||
paginate: 10 | ||
exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"] | ||
anchorjs: true # if you want to customize anchor. check out line:181 of `post.html` | ||
|
||
|
||
|
||
# Gems | ||
# from PR#40, to support local preview for Jekyll 3.0 | ||
gems: [jekyll-paginate] | ||
|
||
|
||
|
||
|
||
# Markdown settings | ||
# replace redcarpet to kramdown, | ||
# although redcarpet can auto highlight code, the lack of header-id make the catalog impossible, so I switch to kramdown | ||
# document: http://jekyllrb.com/docs/configuration/#kramdown | ||
markdown: kramdown | ||
highlighter: rouge | ||
kramdown: | ||
input: GFM # use Github Flavored Markdown !important | ||
|
||
|
||
|
||
# 评论系统 | ||
# Disqus(https://disqus.com/) | ||
# disqus_username: qiubaiying | ||
|
||
# Gitalk | ||
gitalk: | ||
enable: false #是否开启Gitalk评论 | ||
clientID: f2c84e7629bb1446c1a4 #生成的clientID | ||
clientSecret: ca6d6139d1e1b8c43f8b2e19492ddcac8b322d0d #生成的clientSecret | ||
repo: qiubaiying.github.io #仓库名称 | ||
owner: qiubaiying #github用户名 | ||
admin: qiubaiying | ||
distractionFreeMode: true #是否启用类似FB的阴影遮罩 | ||
|
||
|
||
# 统计 | ||
|
||
# Analytics settings | ||
# Baidu Analytics | ||
ba_track_id: b50bf2b12b5338a1845e33832976fd68 | ||
|
||
# Google Analytics | ||
ga_track_id: 'UA-90855596-1' # Format: UA-xxxxxx-xx | ||
ga_domain: auto # 默认的是 auto, 这里我是自定义了的域名,你如果没有自己的域名,需要改成auto | ||
|
||
|
||
|
||
|
||
|
||
# Featured Tags | ||
featured-tags: true # 是否使用首页标签 | ||
featured-condition-size: 1 # 相同标签数量大于这个数,才会出现在首页 | ||
|
||
|
||
|
||
# Progressive Web Apps | ||
chrome-tab-theme-color: "#000000" | ||
service-worker: true | ||
|
||
|
||
|
||
# Friends | ||
# friends: [ | ||
# { | ||
# title: "WY", | ||
# href: "http://zhengwuyang.com" | ||
# } | ||
# ] |
Oops, something went wrong.