new subtopic llm

This commit is contained in:
JamesFlare1212
2023-05-11 21:33:10 +08:00
parent b69b474c08
commit 5aeea89a31
270 changed files with 37165 additions and 7 deletions

View File

@@ -0,0 +1,418 @@
<!DOCTYPE html>
<html lang="zh" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="theme-color" content="#FFFFFF">
<meta name="color-scheme" content="light dark"><meta property="og:title" content="golang" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://academics.jamesflare.com/categories/golang/" />
<title>golang | Academic Resources</title>
<link rel="manifest" href="/manifest.json">
<link rel="icon" href="/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-&#43;N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
<script defer src="/flexsearch.min.js"></script>
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6&#43;k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
<link rel="alternate" type="application/rss+xml" href="https://academics.jamesflare.com/categories/golang/index.xml" title="Academic Resources" />
<!--
Made with Book Theme
https://github.com/alex-shpak/hugo-book
-->
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
<script>pangu.spacingPage();</script>
</head>
<body dir="ltr">
<input type="checkbox" class="hidden toggle" id="menu-control" />
<input type="checkbox" class="hidden toggle" id="toc-control" />
<main class="container flex">
<aside class="book-menu">
<div class="book-menu-content">
<nav>
<h2 class="book-brand">
<a class="flex align-center" href="/"><span>Academic Resources</span>
</a>
</h2>
<div class="book-search">
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
<div class="book-search-spinner hidden"></div>
<ul id="book-search-results"></ul>
</div>
<ul class="book-languages">
<li>
<input type="checkbox" id="languages" class="toggle" />
<label for="languages" class="flex justify-between">
<a role="button" class="flex align-center">
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
English
</a>
</label>
<ul>
<li>
<a href="https://academics.jamesflare.com/zh/">
Chinese
</a>
</li>
</ul>
</li>
</ul>
<ul>
<li>
<a href="/posts/" >
动态
</a>
</li>
</ul>
</nav>
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
</div>
</aside>
<div class="book-page">
<header class="book-header">
<div class="flex align-center justify-between">
<label for="menu-control">
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
</label>
<strong>golang</strong>
<label for="toc-control">
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
</label>
</div>
<aside class="hidden clearfix">
<nav>
<ul>
<li class="book-section-flat">
<strong>Categories</strong>
<ul>
<li class="flex justify-between">
<a href="/categories/development/">Development</a>
<span>2</span>
</li>
<li class="flex justify-between">
<a href="/categories/golang/">golang</a>
<span>2</span>
</li>
</ul>
</li>
<li class="book-section-flat">
<strong>Tags</strong>
<ul>
<li class="flex justify-between">
<a href="/tags/development/">development</a>
<span>2</span>
</li>
<li class="flex justify-between">
<a href="/tags/go/">go</a>
<span>2</span>
</li>
<li class="flex justify-between">
<a href="/tags/golang/">golang</a>
<span>2</span>
</li>
<li class="flex justify-between">
<a href="/tags/hugo/">hugo</a>
<span>1</span>
</li>
<li class="flex justify-between">
<a href="/tags/templates/">templates</a>
<span>1</span>
</li>
<li class="flex justify-between">
<a href="/tags/themes/">themes</a>
<span>1</span>
</li>
</ul>
</li>
</ul>
</nav>
</aside>
</header>
<article class="markdown book-post">
<h2>
<a href="/posts/goisforlovers/">(Hu)go Template Primer</a>
</h2>
<h5>April 2, 2014</h5>
<div>
<a href="/categories/development/">Development</a>,
<a href="/categories/golang/">golang</a>
</div>
<div>
<a href="/tags/go/">go</a>,
<a href="/tags/golang/">golang</a>,
<a href="/tags/templates/">templates</a>,
<a href="/tags/themes/">themes</a>,
<a href="/tags/development/">development</a>
</div>
<p>Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates.
This document is a brief primer on using Go templates.
<a href="/posts/goisforlovers/">...</a>
</p>
</article>
<article class="markdown book-post">
<h2>
<a href="/posts/hugoisforlovers/">Getting Started with Hugo</a>
</h2>
<h5>April 2, 2014</h5>
<div>
<a href="/categories/development/">Development</a>,
<a href="/categories/golang/">golang</a>
</div>
<div>
<a href="/tags/go/">go</a>,
<a href="/tags/golang/">golang</a>,
<a href="/tags/hugo/">hugo</a>,
<a href="/tags/development/">development</a>
</div>
<p>Step 1. Install Hugo # Go to Hugo releases and download the appropriate version for your OS and architecture.
Save it somewhere specific as we will be using it in the next step.
More complete instructions are available at Install Hugo
Step 2. Build the Docs # Hugo has its own example site which happens to also be the documentation site you are reading right now.
Follow the following steps:
<a href="/posts/hugoisforlovers/">...</a>
</p>
</article>
<footer class="book-footer">
<div class="flex flex-wrap justify-between">
</div>
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
</footer>
<label for="menu-control" class="hidden book-menu-overlay"></label>
</div>
<aside class="book-toc">
<div class="book-toc-content">
<nav>
<ul>
<li class="book-section-flat">
<strong>Categories</strong>
<ul>
<li class="flex justify-between">
<a href="/categories/development/">Development</a>
<span>2</span>
</li>
<li class="flex justify-between">
<a href="/categories/golang/">golang</a>
<span>2</span>
</li>
</ul>
</li>
<li class="book-section-flat">
<strong>Tags</strong>
<ul>
<li class="flex justify-between">
<a href="/tags/development/">development</a>
<span>2</span>
</li>
<li class="flex justify-between">
<a href="/tags/go/">go</a>
<span>2</span>
</li>
<li class="flex justify-between">
<a href="/tags/golang/">golang</a>
<span>2</span>
</li>
<li class="flex justify-between">
<a href="/tags/hugo/">hugo</a>
<span>1</span>
</li>
<li class="flex justify-between">
<a href="/tags/templates/">templates</a>
<span>1</span>
</li>
<li class="flex justify-between">
<a href="/tags/themes/">themes</a>
<span>1</span>
</li>
</ul>
</li>
</ul>
</nav>
</div>
</aside>
</main>
<script src="/js/pangu.min.js"></script>
<script>pangu.spacingPage();</script>
</body>
</html>

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>golang on Academic Resources</title>
<link>https://academics.jamesflare.com/categories/golang/</link>
<description>Recent content in golang on Academic Resources</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh</language>
<lastBuildDate>Wed, 02 Apr 2014 00:00:00 +0000</lastBuildDate><atom:link href="https://academics.jamesflare.com/categories/golang/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>(Hu)go Template Primer</title>
<link>https://academics.jamesflare.com/posts/goisforlovers/</link>
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
<guid>https://academics.jamesflare.com/posts/goisforlovers/</guid>
<description>Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates.
This document is a brief primer on using Go templates.</description>
</item>
<item>
<title>Getting Started with Hugo</title>
<link>https://academics.jamesflare.com/posts/hugoisforlovers/</link>
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
<guid>https://academics.jamesflare.com/posts/hugoisforlovers/</guid>
<description>Step 1. Install Hugo # Go to Hugo releases and download the appropriate version for your OS and architecture.
Save it somewhere specific as we will be using it in the next step.
More complete instructions are available at Install Hugo
Step 2. Build the Docs # Hugo has its own example site which happens to also be the documentation site you are reading right now.
Follow the following steps:</description>
</item>
</channel>
</rss>

View File

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="zh">
<head>
<title>https://academics.jamesflare.com/categories/golang/</title>
<link rel="canonical" href="https://academics.jamesflare.com/categories/golang/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://academics.jamesflare.com/categories/golang/">
</head>
</html>