Skip to content

Commit 9b0c19c

Browse files
committed
NEW
1 parent 7687543 commit 9b0c19c

File tree

2 files changed

+60
-2
lines changed

2 files changed

+60
-2
lines changed

.idea/workspace.xml

Lines changed: 17 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extend/html/what_i_do.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>每周汇报</title>
6+
<style>
7+
.list{
8+
font-size: 18px;
9+
font-weight: bolder;
10+
}
11+
</style>
12+
<script>
13+
document.addEventListener('DOMContentLoaded', function (){
14+
let listLinks = document.body.querySelectorAll('a.link');
15+
listLinks.forEach(function(link) {
16+
link.setAttribute('target', '_blank');
17+
});
18+
})
19+
</script>
20+
</head>
21+
<body>
22+
<div class="block">
23+
<ul>
24+
<li class="list">
25+
第1周(~2024.6.29):<a href="https://www.robot-shadow.cn/extend/html/gaexa.html" class="link">
26+
遗传算法学习与案例</a>
27+
</li>
28+
<li class="list">
29+
第2周(6.29~7.6):<a href="https://www.robot-shadow.cn/extend/html/gaexa.html" class="link">
30+
遗传算法之旅行商问题</a>
31+
</li>
32+
<li class="list">
33+
第3周(7.6~7.20):<a href="https://www.robot-shadow.cn/extend/html/pytorch-learn.html" class="link">
34+
两周的工作——pytorch的学习与工具matply开发汇报</a>
35+
</li>
36+
<li class="list">
37+
第4周(7.20~7.27):<a href="https://www.robot-shadow.cn/extend/flutter/pso/assets/pso.html" class="link">
38+
粒子群算法学习与案例,使用python-numpy与dart-matply两种实现</a>
39+
</li>
40+
</ul>
41+
</div>
42+
</body>
43+
</html>

0 commit comments

Comments
 (0)