-
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.
Merge pull request #9 from cliff0412/dev
Dev
- Loading branch information
Showing
171 changed files
with
28,062 additions
and
49 deletions.
There are no files selected for viewing
Submodule .deploy_git
updated
from 212709 to 18e00b
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,18 @@ | ||
# mathjax | ||
add below to html | ||
```js | ||
<script | ||
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" | ||
type="text/javascript"> | ||
</script> | ||
``` | ||
|
||
use \\( your equation \\) and \\[ your equation \\] for inline and display style equations, respectively | ||
|
||
quick use | ||
``` | ||
\\( \\) | ||
\\[ \\] | ||
``` | ||
## reference | ||
- https://www.fabriziomusacchio.com/blog/2021-08-10-How_to_use_LaTeX_in_Markdown/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Binary file not shown.
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,262 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
|
||
|
||
<title>rust resource | cliff's personal blog</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="description" content="learning resources the book cargo book the rust performance book rust design patterns the rust RFC book the rustdoc book rustnomicon the rust reference rust by example async programming in rust rust c"> | ||
<meta property="og:type" content="article"> | ||
<meta property="og:title" content="rust resource"> | ||
<meta property="og:url" content="https://cliff0412.github.io/2022/09/27/rust/rust-01-resource/index.html"> | ||
<meta property="og:site_name" content="cliff's personal blog"> | ||
<meta property="og:description" content="learning resources the book cargo book the rust performance book rust design patterns the rust RFC book the rustdoc book rustnomicon the rust reference rust by example async programming in rust rust c"> | ||
<meta property="og:locale" content="en_US"> | ||
<meta property="article:published_time" content="2022-09-27T14:04:38.000Z"> | ||
<meta property="article:modified_time" content="2023-06-29T04:06:05.747Z"> | ||
<meta property="article:author" content="cliff"> | ||
<meta property="article:tag" content="rust"> | ||
<meta name="twitter:card" content="summary"> | ||
|
||
<link rel="alternate" href="/atom.xml" title="cliff's personal blog" type="application/atom+xml"> | ||
|
||
|
||
<link rel="shortcut icon" href="/favicon.png"> | ||
|
||
|
||
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/index.min.css"> | ||
|
||
|
||
|
||
<link rel="stylesheet" href="/css/style.css"> | ||
|
||
|
||
|
||
<link rel="stylesheet" href="/fancybox/jquery.fancybox.min.css"> | ||
|
||
|
||
<meta name="generator" content="Hexo 6.3.0"></head> | ||
|
||
<body> | ||
<div id="container"> | ||
<div id="wrap"> | ||
<header id="header"> | ||
<div id="banner"></div> | ||
<div id="header-outer" class="outer"> | ||
<div id="header-title" class="inner"> | ||
<h1 id="logo-wrap"> | ||
<a href="/" id="logo">cliff's personal blog</a> | ||
</h1> | ||
|
||
</div> | ||
<div id="header-inner" class="inner"> | ||
<nav id="main-nav"> | ||
<a id="main-nav-toggle" class="nav-icon"></a> | ||
|
||
<a class="main-nav-link" href="/">Home</a> | ||
|
||
<a class="main-nav-link" href="/archives">Archives</a> | ||
|
||
</nav> | ||
<nav id="sub-nav"> | ||
|
||
<a id="nav-rss-link" class="nav-icon" href="/atom.xml" title="RSS Feed"></a> | ||
|
||
<a id="nav-search-btn" class="nav-icon" title="Search"></a> | ||
</nav> | ||
<div id="search-form-wrap"> | ||
<form action="//google.com/search" method="get" accept-charset="UTF-8" class="search-form"><input type="search" name="q" class="search-form-input" placeholder="Search"><button type="submit" class="search-form-submit"></button><input type="hidden" name="sitesearch" value="https://cliff0412.github.io"></form> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<div class="outer"> | ||
<section id="main"><article id="post-rust/rust-01-resource" class="h-entry article article-type-post" itemprop="blogPost" itemscope itemtype="https://schema.org/BlogPosting"> | ||
<div class="article-meta"> | ||
<a href="/2022/09/27/rust/rust-01-resource/" class="article-date"> | ||
<time class="dt-published" datetime="2022-09-27T14:04:38.000Z" itemprop="datePublished">2022-09-27</time> | ||
</a> | ||
|
||
</div> | ||
<div class="article-inner"> | ||
|
||
|
||
<header class="article-header"> | ||
|
||
|
||
<h1 class="p-name article-title" itemprop="headline name"> | ||
rust resource | ||
</h1> | ||
|
||
|
||
</header> | ||
|
||
<div class="e-content article-entry" itemprop="articleBody"> | ||
|
||
<h2 id="learning-resources"><a href="#learning-resources" class="headerlink" title="learning resources"></a>learning resources</h2><ul> | ||
<li><a target="_blank" rel="noopener" href="https://doc.rust-lang.org/book/">the book</a></li> | ||
<li><a target="_blank" rel="noopener" href="https://doc.rust-lang.org/cargo/index.html">cargo book</a></li> | ||
<li><a target="_blank" rel="noopener" href="https://nnethercote.github.io/perf-book/title-page.html">the rust performance book</a></li> | ||
<li><a target="_blank" rel="noopener" href="https://rust-unofficial.github.io/patterns/intro.html">rust design patterns</a></li> | ||
<li><a target="_blank" rel="noopener" href="https://rust-lang.github.io/rfcs/">the rust RFC book</a></li> | ||
<li><a target="_blank" rel="noopener" href="https://doc.rust-lang.org/rustdoc/what-is-rustdoc.html">the rustdoc book</a></li> | ||
<li><a target="_blank" rel="noopener" href="https://doc.rust-lang.org/nomicon/intro.html">rustnomicon</a></li> | ||
<li><a target="_blank" rel="noopener" href="https://doc.rust-lang.org/reference/introduction.html">the rust reference</a></li> | ||
<li><a target="_blank" rel="noopener" href="https://doc.rust-lang.org/rust-by-example/index.html">rust by example</a></li> | ||
<li><a target="_blank" rel="noopener" href="https://rust-lang.github.io/async-book/01_getting_started/01_chapter.html">async programming in rust</a></li> | ||
<li><a target="_blank" rel="noopener" href="https://rustc-dev-guide.rust-lang.org/about-this-guide.html">rust compiler development guide</a></li> | ||
<li><a target="_blank" rel="noopener" href="https://veykril.github.io/tlborm/">the little book of rust macros</a></li> | ||
</ul> | ||
<h2 id="video-resources"><a href="#video-resources" class="headerlink" title="video resources"></a>video resources</h2><ul> | ||
<li><a target="_blank" rel="noopener" href="https://www.youtube.com/@jonhoo">youtube channel</a></li> | ||
</ul> | ||
<h2 id="books"><a href="#books" class="headerlink" title="books"></a>books</h2><ul> | ||
<li><a target="_blank" rel="noopener" href="https://marabos.nl/atomics/">atomics and locks</a></li> | ||
<li><a target="_blank" rel="noopener" href="https://github.com/QMHTMY/RustBook/blob/main/books/rust-book-zh-cn-shieber.pdf">data structure & algorithm</a></li> | ||
</ul> | ||
|
||
|
||
</div> | ||
<footer class="article-footer"> | ||
<a data-url="https://cliff0412.github.io/2022/09/27/rust/rust-01-resource/" data-id="clk1e4wpq000a6hsj4hyvg73a" data-title="rust resource" class="article-share-link">Share</a> | ||
|
||
|
||
|
||
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/rust/" rel="tag">rust</a></li></ul> | ||
|
||
</footer> | ||
</div> | ||
|
||
|
||
<nav id="article-nav"> | ||
|
||
<a href="/2022/10/04/rust/rust-02-basics/" id="article-nav-newer" class="article-nav-link-wrap"> | ||
<strong class="article-nav-caption">Newer</strong> | ||
<div class="article-nav-title"> | ||
|
||
rust basics | ||
|
||
</div> | ||
</a> | ||
|
||
|
||
</nav> | ||
|
||
|
||
</article> | ||
|
||
|
||
</section> | ||
|
||
<aside id="sidebar"> | ||
|
||
|
||
|
||
|
||
|
||
<div class="widget-wrap"> | ||
<h3 class="widget-title">Tags</h3> | ||
<div class="widget"> | ||
<ul class="tag-list" itemprop="keywords"><li class="tag-list-item"><a class="tag-list-link" href="/tags/blockchain/" rel="tag">blockchain</a></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/cargo/" rel="tag">cargo</a></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/cryptography/" rel="tag">cryptography</a></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/ecdsa/" rel="tag">ecdsa</a></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/geth/" rel="tag">geth</a></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/golang/" rel="tag">golang</a></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/mpc/" rel="tag">mpc</a></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/rust/" rel="tag">rust</a></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/rust-crate/" rel="tag">rust-crate</a></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/rust-std/" rel="tag">rust-std</a></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/zkp/" rel="tag">zkp</a></li></ul> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
|
||
<div class="widget-wrap"> | ||
<h3 class="widget-title">Tag Cloud</h3> | ||
<div class="widget tagcloud"> | ||
<a href="/tags/blockchain/" style="font-size: 15px;">blockchain</a> <a href="/tags/cargo/" style="font-size: 10px;">cargo</a> <a href="/tags/cryptography/" style="font-size: 16.67px;">cryptography</a> <a href="/tags/ecdsa/" style="font-size: 10px;">ecdsa</a> <a href="/tags/geth/" style="font-size: 18.33px;">geth</a> <a href="/tags/golang/" style="font-size: 11.67px;">golang</a> <a href="/tags/mpc/" style="font-size: 10px;">mpc</a> <a href="/tags/rust/" style="font-size: 20px;">rust</a> <a href="/tags/rust-crate/" style="font-size: 10px;">rust-crate</a> <a href="/tags/rust-std/" style="font-size: 13.33px;">rust-std</a> <a href="/tags/zkp/" style="font-size: 10px;">zkp</a> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
<div class="widget-wrap"> | ||
<h3 class="widget-title">Archives</h3> | ||
<div class="widget"> | ||
<ul class="archive-list"><li class="archive-list-item"><a class="archive-list-link" href="/archives/2023/06/">June 2023</a></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2023/05/">May 2023</a></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2023/04/">April 2023</a></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2023/03/">March 2023</a></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2023/02/">February 2023</a></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2023/01/">January 2023</a></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2022/12/">December 2022</a></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2022/11/">November 2022</a></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2022/10/">October 2022</a></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2022/09/">September 2022</a></li></ul> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
|
||
<div class="widget-wrap"> | ||
<h3 class="widget-title">Recent Posts</h3> | ||
<div class="widget"> | ||
<ul> | ||
|
||
<li> | ||
<a href="/2023/06/20/zkp/zkp-a-brief-understanding/">zkp a brief understanding</a> | ||
</li> | ||
|
||
<li> | ||
<a href="/2023/06/17/cryptography/cryptography-03-rsa/">cryptography (3) RSA cryptosystem</a> | ||
</li> | ||
|
||
<li> | ||
<a href="/2023/06/10/cryptography/cryptography-02-elliptic-curve/">cryptography (2) elliptic curve</a> | ||
</li> | ||
|
||
<li> | ||
<a href="/2023/06/08/rust/rust_std/rust-std-sync/">rust std sync</a> | ||
</li> | ||
|
||
<li> | ||
<a href="/2023/06/03/rust/rust_std/rust-smart-pointer-and-internal-mutibility/">rust std smart pointer & interior mutability</a> | ||
</li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
|
||
|
||
</aside> | ||
|
||
</div> | ||
<footer id="footer"> | ||
|
||
<div class="outer"> | ||
<div id="footer-info" class="inner"> | ||
|
||
© 2023 cliff<br> | ||
Powered by <a href="https://hexo.io/" target="_blank">Hexo</a> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
</div> | ||
<nav id="mobile-nav"> | ||
|
||
<a href="/" class="mobile-nav-link">Home</a> | ||
|
||
<a href="/archives" class="mobile-nav-link">Archives</a> | ||
|
||
</nav> | ||
|
||
|
||
|
||
<script src="/js/jquery-3.4.1.min.js"></script> | ||
|
||
|
||
|
||
|
||
<script src="/fancybox/jquery.fancybox.min.js"></script> | ||
|
||
|
||
|
||
|
||
<script src="/js/script.js"></script> | ||
|
||
|
||
|
||
|
||
|
||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.