Reformatted the project

This commit is contained in:
2025-11-12 01:21:48 -08:00
parent b91d37db45
commit 7858d95f58
11 changed files with 78 additions and 241 deletions

View File

@@ -3,7 +3,8 @@ import ExperienceLayout from '@layouts/ExperienceLayout.astro';
import Timeline from '@components/Timeline/Timeline.astro';
import Carousel from "@components/CustomCarousel/CustomCarousel.astro";
import spring_2019_interns from "@assets/experience/spacex/avionics-test-engineering-internship/spring-2019-interns.jpg";
import spring_2019_interns
from "@assets/experience/spacex/avionics-test-engineering-internship/spring-2019-interns.jpg";
import type {carouselGroup} from "@interfaces/image-carousel.ts";
import type {timelineEntry} from "@interfaces/timeline.ts";
@@ -58,9 +59,20 @@ const timeline: timelineEntry[] = [
<h2 class="font-bold md:text-2xl my-4">Details</h2>
Though I did get to work on some really fun projects during my internship at SpaceX, I unfortunately cant go into
much detail due to NDAs and ITAR restrictions. What I can say is that I mainly wrote Python for a new avionics
hardware test system. My experience with writing Python in the numerous other projects Ive done really helped me
out here, as the framework SpaceX has created was quite complex and would otherwise have been fairly difficult to
write code for. I also wrote a simple tool for automating the creation of Jira work tickets so that the two teams
that ended up using it wouldnt have to have their members manually creating dozens of them as work and issues came
in through a separate system.
Though I did get to work on some really fun projects during my internship at SpaceX, I unfortunately cant go into much detail due to NDAs and ITAR restrictions. What I can say is that I mainly wrote Python for a new avionics hardware test system. My experience with writing Python in the numerous other projects Ive done really helped me out here, as the framework SpaceX has created was quite complex and would otherwise have been fairly difficult to write code for. I also wrote a simple tool for automating the creation of Jira work tickets so that the two teams that ended up using it wouldnt have to have their members manually creating dozens of them as work and issues came in through a separate system.
I was also quite happy in that I got to perform some circuit debugging on avionics test system hardware, both for my project and for a separate test system. A final experience I had here was getting to work directly with the head engineer from a company that supplied a piece of test hardware I was interfacing with. It was quite incredible to see just how much weight a SpaceX email address had when trying to solve problems I had found with the hardware. Not only were they responsive, but in fact were willing to fast-track firmware updates for us to get things working. Coming from clubs and small labs where a support email might not even get a response for months, it was quite a refreshing experience.
I was also quite happy in that I got to perform some circuit debugging on avionics test system hardware, both for my
project and for a separate test system. A final experience I had here was getting to work directly with the head
engineer from a company that supplied a piece of test hardware I was interfacing with. It was quite incredible to
see just how much weight a SpaceX email address had when trying to solve problems I had found with the hardware. Not
only were they responsive, but in fact were willing to fast-track firmware updates for us to get things working.
Coming from clubs and small labs where a support email might not even get a response for months, it was quite a
refreshing experience.
</ExperienceLayout>

View File

@@ -52,8 +52,12 @@ const timeline: timelineEntry[] = [
<h3 class="font-bold md:text-lg my-4">Key Takeaways</h3>
<ul class="list-disc list-inside">
<li>Created test systems which validated ~4500 Starlink satellite flight computers, and ~4000 power boards</li>
<li>Developed program-critical infrastructure that enabled efficient triage, management, and tracking of hardware failures</li>
<li>Designed and deployed automated, unified, and containerized infrastructure to greatly increase application reliability and development speed </li>
<li>Developed program-critical infrastructure that enabled efficient triage, management, and tracking of
hardware failures
</li>
<li>Designed and deployed automated, unified, and containerized infrastructure to greatly increase application
reliability and development speed
</li>
</ul>
<h3 class="font-bold md:text-lg my-4">Skills Used</h3>
<div class="relative grid gap-6 grid-flow-row sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 border-caperren-green">

View File

@@ -12,7 +12,8 @@ import enclosure_right from "@assets/hobby/homelab/offsite-backup-rack/enclosure
import enclosure_with_ups from "@assets/hobby/homelab/offsite-backup-rack/enclosure-with-ups.jpg";
import power_adapter_tray_and_dc_dc from "@assets/hobby/homelab/offsite-backup-rack/power-adapter-tray-and-dc-dc.jpg";
import power_supply_closeup from "@assets/hobby/homelab/offsite-backup-rack/power-supply-closeup.jpg";
import power_supply_mounting_location from "@assets/hobby/homelab/offsite-backup-rack/power-supply-mounting-location.jpg";
import power_supply_mounting_location
from "@assets/hobby/homelab/offsite-backup-rack/power-supply-mounting-location.jpg";
import sata_tight_fit from "@assets/hobby/homelab/offsite-backup-rack/sata-tight-fit.jpg";
import sff_pc_with_sata_and_usb_ssds from "@assets/hobby/homelab/offsite-backup-rack/sff-pc-with-sata-and-usb-ssds.jpg";
import up_and_running from "@assets/hobby/homelab/offsite-backup-rack/up-and-running.png";

View File

@@ -12,13 +12,12 @@ import fjr1300 from "@assets/hobby/motorcycling/lineup/2015-fjr-1300-mountaintop
import sg400 from "@assets/hobby/motorcycling/lineup/2021-csc-sg400.jpg";
const fjrCarouselGroup: carouselGroup = {animation: "slide",images: [fjr1300]}
const cscCarouselGroup: carouselGroup = {animation: "slide",images: [sg400]}
const drzCarouselGroup: carouselGroup = {animation: "slide",images: [drz400]}
const concoursCarouselGroup: carouselGroup = {animation: "slide",images: [concours]}
const ninjaCarouselGroup: carouselGroup = {animation: "slide",images: [ninja600]}
const kz750CarouselGroup: carouselGroup = {animation: "slide",images: [kz750]}
const fjrCarouselGroup: carouselGroup = {animation: "slide", images: [fjr1300]}
const cscCarouselGroup: carouselGroup = {animation: "slide", images: [sg400]}
const drzCarouselGroup: carouselGroup = {animation: "slide", images: [drz400]}
const concoursCarouselGroup: carouselGroup = {animation: "slide", images: [concours]}
const ninjaCarouselGroup: carouselGroup = {animation: "slide", images: [ninja600]}
const kz750CarouselGroup: carouselGroup = {animation: "slide", images: [kz750]}
---
<HobbyLayout title="Motorcycling - Lineup">

View File

@@ -1,4 +1,4 @@
import type { APIRoute } from 'astro';
import type {APIRoute} from 'astro';
const getRobotsTxt = (sitemapURL: URL) => `\
User-agent: *
@@ -7,7 +7,7 @@ Allow: /
Sitemap: ${sitemapURL.href}
`;
export const GET: APIRoute = ({ site }) => {
export const GET: APIRoute = ({site}) => {
const sitemapURL = new URL('sitemap-index.xml', site);
return new Response(getRobotsTxt(sitemapURL));
};