-
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.
- Loading branch information
1 parent
63d2432
commit fcd73cc
Showing
6 changed files
with
42 additions
and
60 deletions.
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
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,16 +1,19 @@ | ||
# nosrac.me | ||
|
||
https://nosrac.me | ||
|
||
### Running Locally | ||
|
||
tl;dr: | ||
|
||
``` | ||
$ make serve | ||
``` | ||
|
||
There are three main components: | ||
|
||
1. `animation/` contains the rust code that compiles to web assembley and takes care of | ||
the logic for particles and for the particle system | ||
2. `ui/` contains the typescript code that compiles to javascript and takes care of | ||
manipulating the DOM as well as initializing the canvas | ||
the logic for particles and for the particle system | ||
2. `ui/` contains the typescript code that compiles to javascript and takes care of | ||
manipulating the DOM as well as initializing the canvas | ||
3. `www/` is the site's root directory and all generated code is ultimately moved there |
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 |
---|---|---|
@@ -1,20 +1,15 @@ | ||
<html> | ||
<head> | ||
<title>Carson Radtke</title> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
crossorigin="anonymous" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" | ||
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" | ||
crossorigin="anonymous" | ||
/> | ||
<link rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
crossorigin="anonymous" /> | ||
<link rel="stylesheet" | ||
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" | ||
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" | ||
crossorigin="anonymous" /> | ||
<link href="./assets/styles/index.css" rel="stylesheet" /> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<div class="row h-25"></div> | ||
|
@@ -23,33 +18,26 @@ | |
<div class="row h-50"> | ||
<canvas id="my_canvas"></canvas> | ||
</div> | ||
|
||
<div class="row h-50 align-content-center"> | ||
<ul class="list-group w-100 list-group-horizontal"> | ||
<li class="list-group-item border-0 flex-fill text-center"> | ||
<a | ||
title="LinkedIn | carsonRadtke" | ||
class="opaque_hover text-dark" | ||
href="https://www.linkedin.com/in/carsonradtke/" | ||
> | ||
<a title="LinkedIn | carsonRadtke" | ||
class="opaque_hover text-dark" | ||
href="https://www.linkedin.com/in/carsonradtke/"> | ||
<i class="fab fa-linkedin-in fa-9x card-img-top"></i> | ||
</a> | ||
</li> | ||
<li class="list-group-item border-0 flex-fill text-center"> | ||
<a | ||
title="GitHub | carsonRadtke" | ||
class="opaque_hover text-dark" | ||
href="https://github.com/carsonRadtke" | ||
> | ||
<a title="GitHub | carsonRadtke" | ||
class="opaque_hover text-dark" | ||
href="https://github.com/carsonRadtke"> | ||
<i class="fab fa-github fa-9x card-img-top"></i> | ||
</a> | ||
</li> | ||
<li class="list-group-item border-0 flex-fill text-center"> | ||
<a | ||
title="Resume" | ||
class="opaque_hover text-dark" | ||
href="./assets/docs/cradtke_resume.pdf" | ||
> | ||
<a title="Resume" | ||
class="opaque_hover text-dark" | ||
href="./assets/docs/cradtke_resume.pdf"> | ||
<i class="far fa-file fa-9x card-img-top"></i> | ||
</a> | ||
</li> | ||
|
@@ -65,14 +53,9 @@ | |
</div> | ||
</body> | ||
</html> | ||
|
||
<script | ||
src="https://code.jquery.com/jquery-3.6.0.min.js" | ||
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" | ||
crossorigin="anonymous" | ||
></script> | ||
<script | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" | ||
crossorigin="anonymous" | ||
></script> | ||
<script src="https://code.jquery.com/jquery-3.6.0.min.js" | ||
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" | ||
crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" | ||
crossorigin="anonymous"></script> | ||
<script type="module" src="./assets/scripts/index.js"></script> |