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

Open applications #699

Merged
merged 21 commits into from
Sep 10, 2024
Merged
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
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ description: "The Presidential Innovation Fellows program brings the principles,
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://presidentialinnovationfellows.gov" # the base hostname & protocol for your site, e.g. http://example.com

apply_now: false
apply_now: true
application_updates: false
ai_eo: false

Expand Down
2 changes: 1 addition & 1 deletion _fellows/ryan-harrison.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ skills: ['Software and Cloud Infrastructure', 'Data Science and Analytics']

Ryan is a computational scientist with wet lab training in the life sciences. His technical expertise includes enterprise architecture, healthcare and life sciences data management, software engineering and high performance computing.

As a PIF with the Centers for Disease Control and Prevention (CDC) Data Modernization Initiative (DMI), Ryan architected the agency’s [data exchange modernization](https://www.cdc.gov/surveillance/data-modernization/technologies/cdc-front-door.html){:target="_blank"}. He supplied the technical leadership to get CDC’s Enterprise Data Exchange (DEX) system approved, staffed and piloted: FHIR for healthcare surveys, HL7v2 for case notifications and electronic lab reporting, and flat files for routine immunizations. He also contributed to the nation’s public health [North Star Architecture](https://www.cdc.gov/surveillance/data-modernization/technologies/north-star-architecture.html){:target="_blank"} and served as the agency’s technical subject matter expert on the Trusted Exchange Framework and Common Agreement (TEFCA).
As a PIF with the Centers for Disease Control and Prevention (CDC) Data Modernization Initiative (DMI), Ryan architected the agency’s [data exchange modernization](https://www.cdc.gov/surveillance/data-modernization/technologies/cdc-front-door.html){:target="_blank"}. He supplied the technical leadership to get CDC’s Enterprise Data Exchange (DEX) system approved, staffed and piloted: FHIR for healthcare surveys, HL7v2 for case notifications and electronic lab reporting, and flat files for routine immunizations. He also contributed to the nation’s public health [North Star Architecture](https://archive.cdc.gov/#/details?url=https://www.cdc.gov/surveillance/data-modernization/technologies/north-star-architecture.html){:target="_blank"} and served as the agency’s technical subject matter expert on the Trusted Exchange Framework and Common Agreement (TEFCA).

Prior to PIF, Ryan was the Chief Software Architect at Amida Technology Solutions, leading data modernization and interoperability engagements with large healthcare enterprises. Ryan was an early employee at several life-sciences start-ups, including BioBright, Oxford Nanopore Technologies, and Ginkgo Bioworks.

Expand Down
2 changes: 1 addition & 1 deletion _projects/usda-farmers.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ summary: "Helping the U.S. Department of Agriculture re-imagine how it engages w
cover_art: ""
project_challenge: "How might the U.S. Department of Agriculture deliver a better experience for America's farmers?"
partner_description: "The U.S. Department of Agriculture provides leadership on food, agriculture, natural resources, rural development, nutrition, and related issues based on public policy, the best available science, and effective management."
project_link: https://newfarmers.usda.gov
project_link: https://www.farmers.gov/your-business/beginning-farmers
status: "past"
redirect_from:
- /newprojects/usda-farmers.html
Expand Down
64 changes: 64 additions & 0 deletions _sass/uswds-overrides/_nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,70 @@
margin-left: 0;
}

.sidenav {
.usa-sidenav {
a {
padding-left: 0.5rem;
padding-right: 0.5rem;
}
}

.usa-sticky-sidenav {
position: sticky;
top: 16px;
}
}
//Apply Process Section
// unique tweaks to process list
.apply-process {
.usa-process-list {
// keep
}

.usa-sidenav {
counter-reset: usa-numbered-list;

.usa-sidenav__item {
border-top: none;
a {
&:hover{
@include u-text("primary-light");
}
}
}

.usa-sidenav__item::before {
display: flex;
flex-direction: row;

position: absolute;
left: -1.5rem;
height: 1.5rem;
width: 1.5rem;

margin-top: 0.45rem;
align-items: center;
justify-content: center;

font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
font-size: 0.9rem;
font-weight: bold;
color: color("base-dark");

border: 0.15rem solid color("base-dark");
border-radius: 50%;
background-color: white;

content: counter(usa-numbered-list, decimal);
counter-increment: usa-numbered-list;
}

// custom bullets
.bullet-question::before {
content: "?";
}
}
}
// Custom Dark Styles

.usa-header--dark {
Expand Down
Loading
Loading