forked from alshedivat/al-folio
-
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.
change things in about, and test git
- Loading branch information
李比昂
authored and
李比昂
committed
Jul 23, 2024
1 parent
d494b50
commit 3787fba
Showing
12,768 changed files
with
1,511,507 additions
and
46 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,3 @@ | ||
{ | ||
"git.ignoreLimitWarning": true | ||
} |
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
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
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
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,34 @@ | ||
<div class="skills"> | ||
{% if site.skills != blank %} | ||
{% assign skills_size = site.skills | size %} | ||
<div | ||
class="table-responsive" | ||
{% if include.limit and site.announcements.scrollable and skills_size > 3 %} | ||
style="max-height: 60vw" | ||
{% endif %} | ||
> | ||
<table class="table table-sm table-borderless"> | ||
{% assign skills = site.skills | reverse %} | ||
{% if include.limit and site.announcements.limit %} | ||
{% assign skills_limit = site.announcements.limit %} | ||
{% else %} | ||
{% assign skills_limit = skills_size %} | ||
{% endif %} | ||
{% for item in skills limit: skills_limit %} | ||
<tr> | ||
<th scope="row" style="width: 20%">{{ item.date | date: '%b %d, %Y' }}</th> | ||
<td> | ||
{% if item.inline %} | ||
{{ item.content | remove: '<p>' | remove: '</p>' | emojify }} | ||
{% else %} | ||
<a class="skills-title" href="{{ item.url | relative_url }}">{{ item.title }}</a> | ||
{% endif %} | ||
</td> | ||
</tr> | ||
{% endfor %} | ||
</table> | ||
</div> | ||
{% else %} | ||
<p>No skills so far...</p> | ||
{% endif %} | ||
</div> |
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 |
---|---|---|
|
@@ -128,3 +128,4 @@ | |
</div> | ||
{% include scripts/wechatModal.liquid %} | ||
{% endif %} | ||
|
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
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,25 +1,33 @@ | ||
--- | ||
layout: about | ||
title: about | ||
title: 主页 | ||
permalink: / | ||
subtitle: <a href='#'>Affiliations</a>. Address. Contacts. Moto. Etc. | ||
subtitle: 浙江绍兴人. 先进机械工程硕士. 车辆工程学士 | ||
|
||
profile: | ||
align: right | ||
image: prof_pic.jpg | ||
image_circular: false # crops the image to make it circular | ||
more_info: > | ||
<p>555 your office number</p> | ||
<p>123 your address street</p> | ||
<p>Your City, State 12345</p> | ||
more_info: | ||
<p>邮箱:[email protected]</p> | ||
|
||
<p>浙江绍兴</p> | ||
<p>上虞</p> | ||
|
||
news: true # includes a list of news items | ||
selected_papers: true # includes a list of papers marked as "selected={true}" | ||
social: true # includes social icons at the bottom of the page | ||
--- | ||
|
||
Write your biography here. Tell the world about yourself. Link to your favorite [subreddit](http://reddit.com). You can put a picture in, too. The code is already in, just name your picture `prof_pic.jpg` and put it in the `img/` folder. | ||
欢迎来到我的个人网站。 | ||
|
||
我来自浙江省绍兴市上虞区,2024年毕业于[英国杜伦大学](https://www.durham.ac.uk/)的先进机械工程专业。2021年毕业于江苏理工学院车辆工程专业。 | ||
|
||
在英国硕士期间,我的研究课题是通过控制风电机叶片平面的偏转角度来提升风力发电站的整体功率输出(AEP)。为了完成学习任务,我自学了Python以实现优化过程中的仿真计算。最终以全专业前三,<span title="等效为国内985高校平均分75分以上"> 2:1</span>的总成绩获得硕士学位。 | ||
|
||
|
||
除了毕业课题外,我还通过一些平日的课题学习了多方面的技能。比如[构建个人物联网(IoT)系统](/blog)。这个项目要求我从硬件到软件完全尝试着构建一整套系统,需要的知识包含但不限于:用[HTML](https://baike.baidu.com/item/HTML/97049)写网站并用[CSS](https://baike.baidu.com/item/CSS/5457)视觉美化;[树莓派](https://baike.baidu.com/item/%E6%A0%91%E8%8E%93%E6%B4%BE/80427)搭建服务器;微传感器和控制器通讯;Python爬虫;[Git](https://baike.baidu.com/item/GIT/12647237)实现版本控制;[PyTorch](https://baike.baidu.com/item/PyTorch)实现人脸识别;Linux和命令行等。 | ||
|
||
Put your address / P.O. box / other info right below your picture. You can also disable any of these elements by editing `profile` property of the YAML header of your `_pages/about.md`. Edit `_bibliography/papers.bib` and Jekyll will render your [publications page](/al-folio/publications/) automatically. | ||
在国内的本科期间,我的精力主要集中在[中国大学生方程式大赛](http://www.formulastudent.com.cn/)。为学校的龙城车队设计并优化2018年和2019年的[参赛用车]()的悬架系统。为此,通过自学,学长传授和外派学习的方式学习了[CATIA](https://baike.baidu.com/item/CATIA/382683)、[Adams/Car](https://baike.baidu.com/item/ADAMS?fromModule=lemma_search-box)和[ANSYS](https://baike.baidu.com/item/ansys?fromModule=lemma_search-box)等软件的使用方法。并随队参与了2018年的比赛并进行现场设计答辩,最终获得全国第21名。 | ||
|
||
Link to your social media connections, too. This theme is set up to use [Font Awesome icons](https://fontawesome.com/) and [Academicons](https://jpswalsh.github.io/academicons/), like the ones below. Add your Facebook, Twitter, LinkedIn, Google Scholar, or just disable all of them. | ||
[更多信息](/blog) |
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,7 +1,7 @@ | ||
--- | ||
layout: default | ||
permalink: /blog/ | ||
title: blog | ||
title: 经历 | ||
nav: true | ||
nav_order: 1 | ||
pagination: | ||
|
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
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,7 +1,7 @@ | ||
--- | ||
layout: page | ||
title: submenus | ||
nav: true | ||
nav: false | ||
nav_order: 8 | ||
dropdown: true | ||
children: | ||
|
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,6 +1,6 @@ | ||
--- | ||
layout: page | ||
title: news | ||
title: 最近 | ||
permalink: /news/ | ||
--- | ||
|
||
|
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
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
Oops, something went wrong.