Skip to content

Commit be5a627

Browse files
committed
update cv and guide
1 parent feb506a commit be5a627

3 files changed

Lines changed: 16 additions & 293 deletions

File tree

.DS_Store

0 Bytes
Binary file not shown.

_pages/cv.md

Lines changed: 6 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,15 @@ redirect_from:
1111

1212
Education
1313
======
14-
* M.S. in China, Harbin Institute of Technology, 2017
15-
* B.S. in China, Heilongjiang Bayi Agricultural University, 2015
14+
* M.S. in China, [Harbin Institute of Technology](https://baike.baidu.com/item/%E5%93%88%E5%B0%94%E6%BB%A8%E5%B7%A5%E4%B8%9A%E5%A4%A7%E5%AD%A6), 2017
15+
* B.S. in China, [Heilongjiang Bayi Agricultural University](https://baike.baidu.com/item/%E9%BB%91%E9%BE%99%E6%B1%9F%E5%85%AB%E4%B8%80%E5%86%9C%E5%9E%A6%E5%A4%A7%E5%AD%A6), 2015
1616

1717
Work experience
1818
======
19-
* Spring 2024: Academic Pages Collaborator
20-
* Github University
21-
* Duties includes: Updates and improvements to template
22-
* Supervisor: The Users
23-
24-
* Fall 2015: Research Assistant
25-
* Github University
26-
* Duties included: Merging pull requests
27-
* Supervisor: Professor Hub
28-
29-
* Summer 2015: Research Assistant
30-
* Github University
31-
* Duties included: Tagging issues
32-
* Supervisor: Professor Git
19+
* 2022.04.13 ~ today [ByteDance](https://www.bytedance.com/zh/)
20+
* 2021.03.02 ~ 2022.04.07 [DiDi](https://www.didiglobal.com/)
21+
* 2020.03.12 ~ 2021.02.26 [GaoTu](https://www.genshuixue.com/)
22+
* 2016.12.19 ~ 2020.02.14 [YeePay](https://www.yeepay.com/)
3323

3424
Skills
3525
======
@@ -39,25 +29,3 @@ Skills
3929
* Sub-skill 2.2
4030
* Sub-skill 2.3
4131
* Skill 3
42-
43-
Publications
44-
======
45-
<ul>{% for post in site.publications reversed %}
46-
{% include archive-single-cv.html %}
47-
{% endfor %}</ul>
48-
49-
Talks
50-
======
51-
<ul>{% for post in site.talks reversed %}
52-
{% include archive-single-talk-cv.html %}
53-
{% endfor %}</ul>
54-
55-
Teaching
56-
======
57-
<ul>{% for post in site.teaching reversed %}
58-
{% include archive-single-cv.html %}
59-
{% endfor %}</ul>
60-
61-
Service and leadership
62-
======
63-
* Currently signed in to 43 different slack teams

_pages/markdown.md

Lines changed: 10 additions & 255 deletions
Original file line numberDiff line numberDiff line change
@@ -7,258 +7,13 @@ redirect_from:
77
- /markdown.html
88
---
99

10-
## Locations of key files/directories
11-
12-
* Basic config options: _config.yml
13-
* Top navigation bar config: _data/navigation.yml
14-
* Single pages: _pages/
15-
* Collections of pages are .md or .html files in:
16-
* _publications/
17-
* _portfolio/
18-
* _posts/
19-
* _teaching/
20-
* _talks/
21-
* Footer: _includes/footer.html
22-
* Static files (like PDFs): /files/
23-
* Profile image (can set in _config.yml): images/profile.png
24-
25-
## Tips and hints
26-
27-
* Name a file ".md" to have it render in markdown, name it ".html" to render in HTML.
28-
* Go to the [commit list](https://github.com/academicpages/academicpages.github.io/commits/master) (on your repo) to find the last version Github built with Jekyll.
29-
* Green check: successful build
30-
* Orange circle: building
31-
* Red X: error
32-
* No icon: not built
33-
34-
## Resources
35-
* [Liquid syntax guide](https://shopify.github.io/liquid/tags/control-flow/)
36-
* [MathJax Documentation](https://docs.mathjax.org/en/latest/)
37-
38-
## MathJax
39-
40-
Support for MathJax Version 3.0 is included in the template:
41-
42-
$$
43-
\displaylines{
44-
\nabla \cdot E= \frac{\rho}{\epsilon_0} \\\
45-
\nabla \cdot B=0 \\\
46-
\nabla \times E= -\partial_tB \\\
47-
\nabla \times B = \mu_0 \left(J + \varepsilon_0 \partial_t E \right)
48-
}
49-
$$
50-
51-
The default delimiters of `$$...$$` and `\\[...\\]` are supported for displayed mathematics, while `\\(...\\)` should be used for in-line mathematics (ex., \\(a^2 + b^2 = c^2\\))
52-
53-
**Note** that since Academic Pages uses Markdown which cases some interference with MathJax and LaTeX for escaping characters and new lines, although [some workarounds exist](https://math.codidact.com/posts/278763/278772#answer-278772).
54-
55-
## Markdown guide
56-
57-
Academic Pages uses [kramdown](https://kramdown.gettalong.org/index.html) for Markdown rendering, which has some differences from other Markdown implementations such as GitHub's. In addition to this guide, please see the [kramdown Syntax page](https://kramdown.gettalong.org/syntax.html) for full documentation.
58-
59-
### Header three
60-
61-
#### Header four
62-
63-
##### Header five
64-
65-
###### Header six
66-
67-
## Blockquotes
68-
69-
Single line blockquote:
70-
71-
> Quotes are cool.
72-
73-
## Tables
74-
75-
### Table 1
76-
77-
| Entry | Item | |
78-
| -------- | ------ | ------------------------------------------------------------ |
79-
| [John Doe](#) | 2016 | Description of the item in the list |
80-
| [Jane Doe](#) | 2019 | Description of the item in the list |
81-
| [Doe Doe](#) | 2022 | Description of the item in the list |
82-
83-
### Table 2
84-
85-
| Header1 | Header2 | Header3 |
86-
|:--------|:-------:|--------:|
87-
| cell1 | cell2 | cell3 |
88-
| cell4 | ce
89-
ll5 | cell6 |
90-
|-----------------------------|
91-
| cell1 | cell2 | cell3 |
92-
| cell4 | cell5 | cell6 |
93-
|=============================|
94-
| Foot1 | Foot2 | Foot3 |
95-
96-
## Definition Lists
97-
98-
Definition List Title
99-
: Definition list division.
100-
101-
Startup
102-
: A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
103-
104-
#dowork
105-
: Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
106-
107-
Do It Live
108-
: I'll let Bill O'Reilly [explain](https://www.youtube.com/watch?v=O_HyZ5aW76c "We'll Do It Live") this one.
109-
110-
## Unordered Lists (Nested)
111-
112-
* List item one
113-
* List item one
114-
* List item one
115-
* List item two
116-
* List item three
117-
* List item four
118-
* List item two
119-
* List item three
120-
* List item four
121-
* List item two
122-
* List item three
123-
* List item four
124-
125-
## Ordered List (Nested)
126-
127-
1. List item one
128-
1. List item one
129-
1. List item one
130-
2. List item two
131-
3. List item three
132-
4. List item four
133-
2. List item two
134-
3. List item three
135-
4. List item four
136-
2. List item two
137-
3. List item three
138-
4. List item four
139-
140-
## Buttons
141-
142-
Make any link standout more when applying the `.btn` class.
143-
144-
## Notices
145-
146-
Basic notices or call-outs are supported using the following syntax:
147-
148-
```markdown
149-
**Watch out!** You can also add notices by appending `{: .notice}` to the line following paragraph.
150-
{: .notice}
151-
```
152-
153-
which wil render as:
154-
155-
**Watch out!** You can also add notices by appending `{: .notice}` to the line following paragraph.
156-
{: .notice}
157-
158-
### Footnotes
159-
160-
Footnotes can be useful for clarifying points in the text, or citing information.[^1] Markdown support numeric footnotes, as well as text as long as the values are unique.[^note]
161-
162-
```markdown
163-
This is the regular text.[^1] This is more regular text.[^note]
164-
165-
[^1]: This is the footnote itself.
166-
[^note]: This is another footnote.
167-
```
168-
169-
[^1]: Such as this footnote.
170-
[^note]: When using text for footnotes markers, no spaces are permitted in the name.
171-
172-
## HTML Tags
173-
174-
### Address Tag
175-
176-
<address>
177-
1 Infinite Loop<br /> Cupertino, CA 95014<br /> United States
178-
</address>
179-
180-
### Anchor Tag (aka. Link)
181-
182-
This is an example of a [link](http://github.com "Github").
183-
184-
### Abbreviation Tag
185-
186-
The abbreviation CSS stands for "Cascading Style Sheets".
187-
188-
*[CSS]: Cascading Style Sheets
189-
190-
### Cite Tag
191-
192-
"Code is poetry." ---<cite>Automattic</cite>
193-
194-
### Code Tag
195-
196-
You will learn later on in these tests that `word-wrap: break-word;` will be your best friend.
197-
198-
You can also write larger blocks of code with syntax highlighting supported for some languages, such as Python:
199-
200-
```python
201-
print('Hello World!')
202-
```
203-
204-
or R:
205-
206-
```R
207-
print("Hello World!", quote = FALSE)
208-
```
209-
210-
### Strike Tag
211-
212-
This tag will let you <strike>strikeout text</strike>.
213-
214-
### Emphasize Tag
215-
216-
The emphasize tag should _italicize_ text.
217-
218-
### Insert Tag
219-
220-
This tag should denote <ins>inserted</ins> text.
221-
222-
### Keyboard Tag
223-
224-
This scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the `<code>` tag.
225-
226-
### Preformatted Tag
227-
228-
This tag styles large blocks of code.
229-
230-
<pre>
231-
.post-title {
232-
margin: 0 0 5px;
233-
font-weight: bold;
234-
font-size: 38px;
235-
line-height: 1.2;
236-
and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
237-
}
238-
</pre>
239-
240-
### Quote Tag
241-
242-
<q>Developers, developers, developers&#8230;</q> &#8211;Steve Ballmer
243-
244-
### Strong Tag
245-
246-
This tag shows **bold text**.
247-
248-
### Subscript Tag
249-
250-
Getting our science styling on with H<sub>2</sub>O, which should push the "2" down.
251-
252-
### Superscript Tag
253-
254-
Still sticking with science and Isaac Newton's E = MC<sup>2</sup>, which should lift the 2 up.
255-
256-
### Variable Tag
257-
258-
This allows you to denote <var>variables</var>.
259-
260-
***
261-
**Footnotes**
262-
263-
The footnotes in the page will be returned following this line, return to the section on <a href="#footnotes">Markdown Footnotes</a>.
264-
10+
## Practical website
11+
12+
* [Timestamp Transfer Tool](https://www.beijing-time.org/shijianchuo/)
13+
* [Json.cn](https://www.json.cn/)
14+
* [Json Diff](https://jsondiff.com/)
15+
* [C++ Insights](https://cppinsights.io/)
16+
* [Generate UUID](https://www.zxgj.cn/g/uuid)
17+
* [Base64 Encode and Decode](https://base64.us/)
18+
* [Crontab Guru](https://crontab.guru/#5_4_*_*_*)
19+
* [Regular Expressions](https://regex101.com/)

0 commit comments

Comments
 (0)