-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
95 lines (65 loc) · 3.58 KB
/
Copy pathcode.html
File metadata and controls
95 lines (65 loc) · 3.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html> <!-- declaring the document type. (required for HTML5) -->
<head>
<title>Code</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="webpage_style.css">
</head>
<body>
<!-- <p style="margin-bottom:1cm;"> </p> -->
<header>
<!-- <h1><img src="imagename.png" alt="Coding Projects" /> -->
<h1>Coding Projects</h1>
<link rel="stylesheet" href="webpage_style.css">
</header>
<nav> <!-- navigation bar start -->
<!-- <a href="hyperlink">Name</a> --><!-- an example of an entry in the navigation bar.
Each entry goes on a new line.
>Name< will be the clickable text in the navigation bar. -->
<!-- the front page basically contains my "elevator pitch" and research interests -->
<a href="index.html">About Me</a>
<!-- my resume / CV gets its own page just because I want it to be VERY obvious and easy to find... -->
<a href="SergeParent_CV.pdf" target="_blank" rel="noopener noreferrer">CV (PDF)</a>
<!-- The "Projects" page will either be a more science-focused version of the "Code" page (with the same sub-sections), or will be combined with that page. -->
<!-- <a href="loc">Projects</a> -->
<!-- having a publications section seems pretty standard for scientists. Depending on my career in the future it may be removed one day. -->
<a href="publications.html">Publications</a>
<!-- <a href="loc">Service Work</a> --><!--For example peer-reviews, etc. Should probably NOT state what the specific paper was though, just journal-->
<!--Maybe the "Code" page should be combined with Projects?-->
<a href="code.html">Code</a>
<!-- This section is for showing pretty pictures/videos, 3D models/z-stacks, or other (maybe semi-raw) data. -->
<a href="gallery.html">Gallery</a>
<!-- <a href="loc">Hobbies</a> --> <!--There's the Life Sciences, and there's the "Real Life" Sciences--> <!-- I think that I actually won't include this section. -->
</nav> <!-- navigation bar end -->
<!-- <header>
<h2>Code used in published articles</h2>
</header> -->
<header>
<h2>Adhesion Kinetics Project</h2>
</header>
<p>
The manuscript for this project is under review as of Oct. 26, 2022. <!-- <br> -->
The Python scripts can be found <a href="https://github.com/SergeEParent/Adhesion_Kinetics_paper" target="_blank" rel="noopener noreferrer">here</a>.
</p>
<header>
<h2>Interstitial Network Project</h2>
</header>
<p>
This work is among the first projects I started coding for.
It was originally written in Python 2, but I have updated the code to work in Python 3.
I also took the liberty of improving the speed and accuracy of the simulations while maintaining the code.
The maintained version along with the environment file can be found <a href="https://github.com/SergeEParent/Intersitital_Gaps_1_paper" target="_blank" rel="noopener noreferrer">here</a>.
The code was part of the following publication: <a href="https://doi.org/10.1016/j.bpj.2017.06.062" target="_blank" rel="noopener noreferrer">Parent <i>et al.</i> 2017. </a>
</p>
<!--
<header>
<h2>Miscellaneous Projects</h2>
</header>
<p>
<ul>
<li>zebrafish dark zone?</li>
<li>CSV file clean and stack?</li>
</ul>
</p>
-->
</body>
</html>