Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Milestone 3A, 3B, and (some of) 4 #221

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions milestone1/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
File renamed without changes.
Binary file not shown.
Binary file added milestone1/about.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions milestone1/blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<title>
Sammy's Blog!
</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Sammy Paykel</a>
</h1>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="socials.html">Socials</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">
My Blog
</h1>
<div class="blogContain">

</div>
</main>
<footer class="footer">
© 2023 Sammy Paykel | All Rights Reserved
</footer>
</body>

<script src="./src/blog.js"></script>

</html>
46 changes: 46 additions & 0 deletions milestone1/blogs/blog1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html>
<head>
<title>
Sammy's Blog!
</title>
<link rel="stylesheet" href="../styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="../index.html">Sammy Paykel</a>
</h1>
<ul class="nav-list">
<li><a href="../index.html">Home</a></li>
<li><a href="../blog.html">Blog</a></li>
<li><a href="../portfolio.html">Portfolio</a></li>
<li><a href="../resume.html">Resume</a></li>
<li><a href="../contact.html">Contact</a></li>
<li><a href="../socials.html">Socials</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">
Joe Mama
</h1>
<div class="blogContent">
<div class="blogDate">
<h3>10-23-2023</h3>
</div>
<div class="blogDescription">
<p>Joe Mama is Nacho Dada</p>
</div>
<div>
<img src="../images/joemama.jpg" alt="joe mama" height="300" width="300">
</div>
</div>
</main>
<footer class="footer">
© 2023 Sammy Paykel | All Rights Reserved
</footer>
</body>

<script src="./src/blog.js"></script>

</html>
46 changes: 46 additions & 0 deletions milestone1/blogs/blog2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html>
<head>
<title>
Sammy's Blog!
</title>
<link rel="stylesheet" href="../styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="../index.html">Sammy Paykel</a>
</h1>
<ul class="nav-list">
<li><a href="../index.html">Home</a></li>
<li><a href="../blog.html">Blog</a></li>
<li><a href="../portfolio.html">Portfolio</a></li>
<li><a href="../resume.html">Resume</a></li>
<li><a href="../contact.html">Contact</a></li>
<li><a href="../socials.html">Socials</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">
Nacho Dada
</h1>
<div class="blogContent">
<div class="blogDate">
<h3>10-23-2023</h3>
</div>
<div class="blogDescription">
<p>Nacho Dada is Joe Mama</p>
</div>
<div>
<img src="../images/nachodada.jpg" alt="nacho dada" height="300" width="300">
</div>
</div>
</main>
<footer class="footer">
© 2023 Sammy Paykel | All Rights Reserved
</footer>
</body>

<script src="./src/blog.js"></script>

</html>
Binary file added milestone1/chessai.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions milestone1/contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html>
<head>
<title>
Contact Sammy!
</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Sammy Paykel</a>
</h1>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="socials.html">Socials</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">
Looking forward to talking with you!
</h1>
<p>Fill out the form below or email me at [email protected]</p>
<form id="contact-form">
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Name" required />
<br><br>
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Email" />
<br><br>
<label for="message">Message</label>
<textarea
id="message"
name="message"
placeholder="Message"
required
></textarea>
<br><br>
<input class="submit-button" type="submit" value="Submit"/>
</main>
<footer class="footer">
© 2023 Sammy Paykel | All Rights Reserved
</footer>
</body>
</html>
Binary file added milestone1/emaillogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added milestone1/images/joemama.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added milestone1/images/nachodada.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions milestone1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html>
<head>
<title>
Sammy's Website!
</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body class="container">
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Sammy Paykel</a>
</h1>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="socials.html">Socials</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">
Hi! I'm Sammy Paykel
</h1>
<div class="about">
<div class="about-image">
<img src="about.jpg" alt="Portrait of Sammy Paykel" width="300" height="400">
</div>
<div class="about-text">
<p>
I am a <em>computer science</em> student at Cal Poly in San Luis Obispo. I enjoy solving complex problems and learning new skills. I am <strong>passionate</strong> about creating high-quality code that follows best practices and industry standards. I am always looking for new challenges and opportunities to grow as a student and as a software developer.
</p>
</div>
</div>
</main>
<footer class="footer">
© 2023 Sammy Paykel | All Rights Reserved
</footer>
</body>
</html>
35 changes: 35 additions & 0 deletions milestone1/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions milestone1/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "bootcamp-project-2023",
"version": "1.0.0",
"description": "This is how we will be tracking your milestones throughout bootcamp! By the end of bootcamp, you will have a fullstack personal portfolio website.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spaykel/bootcamp-project-2023.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/spaykel/bootcamp-project-2023/issues"
},
"homepage": "https://github.com/spaykel/bootcamp-project-2023#readme",
"dependencies": {
"typescript": "^5.2.2"
}
}
57 changes: 57 additions & 0 deletions milestone1/portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html>
<head>
<title>
Sammy's Portfolio!
</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Sammy Paykel</a>
</h1>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="socials.html">Socials</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">
My Projects
</h1>
<div class="project">
<a href="https://spaykel.com/">
<img src="spaykelscreenshot.png" alt="Screenshot of Sammy's Personal Website" width="500" height="250">
</a>
<div class="project-details">
<p class="project-name">
<strong>Personal Portfolio Website</strong>
</p>
<p class="project-description">
Designed and developed a visually appealing personal portfolio website using React, showcasing my proficiency in web development and featuring a collection of my projects and skills. Click on the image above!
</p>
</div>
</div>
<div class="project">
<a href="https://github.com/keonroohparvar/AI_ChessEngine">
<img src="chessai.png" alt="Screenshot of Sammy's Chess AI" width="500" height="250">
</a>
<div class="project-details">
<p class="project-name">
<strong>Chess AI</strong>
</p>
<p class="project-description">
Utilized Tensorflow library to train AI models in Chess strategy. Implemented Monte Carlo Tree Search recursive prediction algorithm for move selection. Employed algorithmic stepping and pruning into implementation to minimize data usage and maximize efficiency. Click on the image above!</p>
</div>
</div>
</main>
<footer class="footer">
© 2023 Sammy Paykel | All Rights Reserved
</footer>
</body>
</html>
Loading