Skip to content

Commit 186d71a

Browse files
committed
Finally added a picture for the project. Also added some description for classes for this ending semester.
1 parent 27dcd98 commit 186d71a

5 files changed

Lines changed: 122 additions & 237 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
"astro": "astro"
2121
},
2222
"dependencies": {
23-
"@astrojs/react": "^4.4.0",
23+
"@astrojs/react": "^4.4.2",
2424
"@types/react": "^19.1.10",
2525
"@types/react-dom": "^19.1.7",
26-
"astro": "^5.14.1",
26+
"astro": "^5.16.4",
2727
"react": "^19.1.1",
2828
"react-dom": "^19.1.1"
2929
},

public/assets/critter-312.png

2.03 MB
Loading

src/content/work/critters312.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Critters for CS 312
33
publishDate: 2025-09-25 13:01:00
4-
img: /assets/critters.png
4+
img: /assets/critter-312.png
55
img_alt: Critters for CS 312
66
description: |-
77

src/pages/coursework.astro

Lines changed: 37 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,17 @@ const fall2025 = [
253253
{
254254
id: 1,
255255
title: "ECO 441K: Introduction to Econometrics",
256-
description: "Parameter estimation and inference in regression models.",
256+
description:
257+
"This course provides an introduction to the main econometric models and estimation methods that are utilized in economics and business." +
258+
" The goal is to provide students with the knowledge needed to conduct their own quantitative empirical research, evaluate economic and business policies," +
259+
" perform basic forecasting, and conduct a critical reading of research and policy analysis. In addition to" +
260+
" practicing how to conduct regression analysis and other related analysis (estimation and interpretation of" +
261+
" the results), this course will emphasize the underlying statistical theory, which is needed to understand" +
262+
" when particular methods are or are not likely to be valid." +
263+
" In the lab part of this course, you will come up with your own research question, identify relevant data," +
264+
" and use the methods of this course to investigate answers to your question. In the process, you will write a" +
265+
" research paper, which will include a discussion of relevant literature, as well as the statistical" +
266+
" methodology you have chosen, and your empirical results.",
257267
},
258268
{
259269
id: 2,
@@ -268,15 +278,32 @@ const fall2025 = [
268278
id: 3,
269279
title: "PHY 303L: Engineering Physics II",
270280
description:
271-
"A general survey of physics; primarily electricity, magnetism, and optics." +
272-
" Three lecture hours and one discussion hour a week for one semester.",
281+
"This is a calculus-based introductory course on electricity and magnetism for engineering students. " +
282+
"We will cover electric and magnetic forces, the idea of fields, how electric and magnetic fields " +
283+
"are sourced by charges and currents, circuits, and electromagnetic waves and optics. " +
284+
"Along the way we will discuss problem solving strategies, and get a glimpse of vector calculus.",
273285
},
274286
{
275287
id: 4,
276288
title: "PHY 105N: Lab for Engineering Physics II",
277289
description:
278-
"Participate in an introductory electricity and magnetism laboratory." +
279-
" Three laboratory hours a week for one semester.",
290+
"This course will focus on connecting topics from General Physics II with actual physical systems, " +
291+
"including the experimental concepts and methods, the statistical tools, and the kinds of collaboration needed to approach this in ways reflective of how actual empirical scientists do.",
292+
},
293+
];
294+
295+
const spring2026 = [
296+
{
297+
id: 1,
298+
title: "ECE 302: Introduction to Electrical Engineering",
299+
description: "",
300+
},
301+
{ id: 2, title: "ECE 306: Introduction to Computing", description: "" },
302+
{ id: 3, title: "ECO 420K: Microeconomic Theory", description: "" },
303+
{
304+
id: 4,
305+
title: "ECE 351K: Probability and Random Processes",
306+
description: "",
280307
},
281308
];
282309
---
@@ -312,6 +339,11 @@ const fall2025 = [
312339
<h2 class="semester-title">Fall 2025</h2>
313340
<DropdownList dropdownItems={fall2025} />
314341
</div>
342+
343+
<div class="semester-section">
344+
<h2 class="semester-title">Spring 2026</h2>
345+
<DropdownList dropdownItems={spring2026} />
346+
</div>
315347
</section>
316348

317349
<ContactCTA />

0 commit comments

Comments
 (0)