Skip to content

Commit

Permalink
add java_guide page
Browse files Browse the repository at this point in the history
  • Loading branch information
Power-tile committed May 23, 2020
1 parent 2e0d769 commit 14390f5
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 0 deletions.
17 changes: 17 additions & 0 deletions css/table-border.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
table {
border-spacing: 0;
border-top: 1px solid #999;
border-left: 1px solid #999;
}

table td {
border-bottom: 1px solid #999;
border-right: 1px solid #999;
padding: 5px
}

table th {
border-bottom: 1px solid #999;
border-right: 1px solid #999;
padding: 5px
}
2 changes: 2 additions & 0 deletions webpages/ip_climate_mitigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ <h4>Group Work: Brainstorming and splitting everyone into groups; leading discus
<a href='https://shimo.im/sheets/JvC6YK9gq9gpvyrt/MODOC'>Splitting Responsibilities</a> <br>
<a href='https://shimo.im/sheets/JDHPhyxCJDYGqtqd/MODOC'>Feedback on videos</a>

<h2 id="#week-11">Week 11 Sumamry: 20200504-20200508</h2>

<h2 id="#week-12">Week 12 Summary: 20200511-20200515</h2>
<h3>Primary Task: AP Test</h3>
<p>Had four AP tests in one week which is crazy :)</p>
Expand Down
50 changes: 50 additions & 0 deletions webpages/java_guide.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html>
<head>
<title>Java Guide and Links</title>
<meta charset="utf-8">
<link rel="stylesheet" href="../css/table-border.css">
</head>
<body>
<h1>Introduction</h1>
<p>This is a guide & link list for great links I encountered while learning Java.</p>
<h1>Actual Table</h1>
<table>
<tr>
<th><font style="color: blue">Skill Name</font></th>
<th><font style="color: magenta">Links</font></th>
</tr>
<tr>
<th>Java Basics</th>
<td>TBD</td>
</tr>
<tr>
<th>All about Spring</th>
<td><a href="https://my.oschina.net/u/4006362/blog/2414012">https://my.oschina.net/u/4006362/blog/2414012</a></td>
</tr>
<tr>
<th>Integrating Spring</th>
<td><a href="https://my.oschina.net/u/4006362/blog/2414012">https://my.oschina.net/u/4006362/blog/2414012</a></td><
</tr>
<tr>
<th>Spring with Annotation</th>
<td><a href="https://how2j.cn/k/spring/spring-annotation-ioc-di/1067.html">https://how2j.cn/k/spring/spring-annotation-ioc-di/1067.html</a></td>
</tr>
<tr>
<th><code>Lombok</code>: Automatic getter, setter, and more</th>
<td><a href="https://projectlombok.org/setup/maven">https://projectlombok.org/setup/maven</a></td>
</tr>
<tr>
<th>Adding dependency of <code>javax.annotation</code> for <code>@Resources</code> and more</th>
<td><a href="https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api">https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api</a>
<br><em>Corresponding Dependency Information in </em><code>pom.xml</code>:
<code><pre>&ltdependency>
&ltgroupId>javax.annotation&lt/groupId>
&ltartifactId>javax.annotation-api&lt/artifactId>
&ltversion>1.3.1&lt/version>
&lt/dependency></pre></code>
</td>
</tr>
</table>
</body>
</html>

0 comments on commit 14390f5

Please sign in to comment.