├── .gitignore ├── CNAME ├── _config.yml ├── _includes ├── footer.html ├── head.html ├── jplayer.html ├── js.html └── nav.html ├── _layouts ├── about.html ├── default.html ├── post.html └── style.css ├── _posts ├── 2015-10-07-nationalday.md ├── 2015-10-17-regex.md ├── 2015-10-18-Key-Signing-Party.md ├── 2015-10-24-network-basis-with-SNS.md ├── 2015-10-30-SenseTime-deep-learning-1.md ├── 2015-11-01-meta-podcast.md ├── 2015-11-08-mirrors.md ├── 2015-11-09-BGP.md ├── 2015-11-13-SenseTime-deep-learning-2.md ├── 2015-11-14-PKU-BJGUG.md ├── 2015-11-15-black-hat.md ├── 2015-11-23-BGP-DNS.md ├── 2015-11-23-LaTeX.md ├── 2016-02-29-xing-li-Internet-Design.md ├── 2016-03-07-xing-li-internet-architecture.md ├── 2016-03-21-xing-li-internet-protocol.md ├── 2016-03-26-haskell.md ├── 2016-05-07-python.md └── 2016-10-15-nfc-and-rfid.md ├── assets ├── css │ ├── _Lato.scss │ ├── bootstrap.css │ ├── font-awesome.min.css │ ├── hoverex-all.css │ ├── images │ │ └── prettyPhoto │ │ │ ├── dark_rounded │ │ │ ├── btnNext.png │ │ │ ├── btnPrevious.png │ │ │ ├── contentPattern.png │ │ │ ├── loader.gif │ │ │ └── sprite.png │ │ │ ├── dark_square │ │ │ ├── btnNext.png │ │ │ ├── btnPrevious.png │ │ │ ├── loader.gif │ │ │ └── sprite.png │ │ │ ├── default │ │ │ ├── default_thumb.png │ │ │ ├── loader.gif │ │ │ ├── sprite.png │ │ │ ├── sprite_next.png │ │ │ ├── sprite_prev.png │ │ │ ├── sprite_x.png │ │ │ └── sprite_y.png │ │ │ ├── facebook │ │ │ ├── btnNext.png │ │ │ ├── btnPrevious.png │ │ │ ├── contentPatternBottom.png │ │ │ ├── contentPatternLeft.png │ │ │ ├── contentPatternRight.png │ │ │ ├── contentPatternTop.png │ │ │ ├── default_thumbnail.gif │ │ │ ├── loader.gif │ │ │ └── sprite.png │ │ │ ├── light_rounded │ │ │ ├── btnNext.png │ │ │ ├── btnPrevious.png │ │ │ ├── loader.gif │ │ │ └── sprite.png │ │ │ └── light_square │ │ │ ├── btnNext.png │ │ │ ├── btnPrevious.png │ │ │ └── sprite.png │ ├── prettyPhoto.css │ └── style.scss ├── fonts │ ├── FontAwesome.otf │ ├── Lato-Bold.eot │ ├── Lato-Bold.ttf │ ├── Lato-Bold.woff │ ├── Lato-Bold.woff2 │ ├── Lato-Italic.eot │ ├── Lato-Italic.ttf │ ├── Lato-Italic.woff │ ├── Lato-Italic.woff2 │ ├── Lato-Regular.eot │ ├── Lato-Regular.ttf │ ├── Lato-Regular.woff │ ├── Lato-Regular.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ ├── favicon.png │ ├── logo-small.png │ ├── logo-white.png │ ├── logo.png │ ├── podcast │ │ ├── 2015-11-01-tunight.jpg │ │ ├── 2015-11-09-xing-li.jpg │ │ ├── 2015-11-13-sensetime-dl2.jpg │ │ ├── 2015-11-14-PKU-BJGUG.jpg │ │ ├── 2016-02-29-xingli.jpg │ │ ├── 2016-03-07-xingli.jpg │ │ ├── 2016-03-26-haskell.jpg │ │ ├── 2016-05-07-python.jpg │ │ └── 2016-10-15-nfc-and-rfid.jpg │ └── tuna.png └── js │ ├── bootstrap.min.js │ ├── custom.js │ ├── jquery-2.1.1.min.js │ ├── jquery.hoverdir.js │ ├── jquery.hoverex.min.js │ ├── jquery.isotope.min.js │ ├── jquery.prettyPhoto.js │ └── retina-1.1.0.js ├── index.html └── podcast.xml /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | .swp 5 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | podcast.tuna.moe -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | # Welcome to Jekyll! 2 | # 3 | # This config file is meant for settings that affect your whole blog, values 4 | # which you are expected to set up once and rarely need to edit after that. 5 | # For technical reasons, this file is *NOT* reloaded automatically when you use 6 | # 'jekyll serve'. If you change this file, please restart the server process. 7 | 8 | # Site settings 9 | title: Tunight - 金枪鱼之夜 10 | brand: Tunight Podcast 11 | email: scateu@gmail.com 12 | owner: TUNA 13 | author: TUNA 14 | copyright: Tsinghua University TUNA Association 15 | description: 金枪鱼之夜 16 | baseurl: "" # the subpath of your site, e.g. /blog 17 | category: Technology 18 | permalink: "/podcast/:year/:month/:title/" 19 | 20 | url: "https://podcast.tuna.moe" # the base hostname & protocol for your site 21 | default_thumb: "https://podcast.tuna.moe/assets/img/tuna.png" 22 | 23 | # Build settings 24 | markdown: kramdown 25 | 26 | sass: 27 | sass_dir: assets/css 28 | 29 | about: "清华大学 TUNA 协会原名清华大学学生网管会,其前身为清华大学电脑协会,是由清华大学网络技术和开源软件爱好者、技术宅组成的团体。" 30 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 |
44 | -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |通过 Podcast 订阅音频.
12 |本站内容按 CC-BY-NC-SA 协议 发布。
13 | 14 | {% for post in site.posts %} 15 | 16 |Subscribe to this blog via Podcast.
40 |