Skip to content
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 src/content/page/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Outside of work I'm usually running (Boston Qualifier, targeting Berlin 2025), p

I earned my Bachelor's degree from the [University of Minnesota in Industrial and Systems Engineering](https://cse.umn.edu/isye).

Find me on [GitHub](https://github.com/trouze), [LinkedIn](https://www.linkedin.com/in/tylerrouze), or by [email](mailto:tyler@tylerrouze.com).
Find me on [GitHub](https://github.com/trouze), [LinkedIn](https://www.linkedin.com/in/tylerrouze), or by [email](mailto:hello@tylerrouze.com).
2 changes: 1 addition & 1 deletion src/content/post/moving-on.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ I also look back happily on my time within the Industrial and Systems Engineerin

All that being said, good things do come to an end. Aviation has always been a passion and interest for me. I still remember throwing around a styrofoam airplane in my backyard as a child. So, I'm excited to be moving on to start a new chapter with [Kambr](https://www.kambr.com/). Kambr was a logical next step for me in my career. They are giving me the opportunity to flex my technical skills some more and work in aviation, while going to a similar start-up, globally distributed culture I have fallen in love with from SureSwift. Obviously, with a global pandemic going on, the airline industry is being faced with new, challenging problems. But that is exactly the type of challenge I am looking for as Kambr will undoubtedly be on the edge of innovation for the industry going forward.

I want to thank my professors, classmates, family, friends, co-workers, bosses, coaches, and teammates. Every experience and interaction, no matter how small, has been a building block towards the person I am today, and for that I am grateful. I'm looking forward to the future, while being thankful for those who have made it possible. As always, [reach out](mailto:tyler@tylerrouze.com) if I can help with anything.
I want to thank my professors, classmates, family, friends, co-workers, bosses, coaches, and teammates. Every experience and interaction, no matter how small, has been a building block towards the person I am today, and for that I am grateful. I'm looking forward to the future, while being thankful for those who have made it possible. As always, [reach out](mailto:hello@tylerrouze.com) if I can help with anything.
26 changes: 25 additions & 1 deletion src/pages/subscribe.astro
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,31 @@ const LIST_ID = "e769d1fd-a069-436a-acf3-c523b1745b6b";
/>
<input type="hidden" name="l" value={LIST_ID} />
<button type="submit">Subscribe</button>
<altcha-widget
id="altcha"
challengeurl="https://mailing.tylerrouze.com/api/public/captcha/"
hidefooter
></altcha-widget>
</form>
<p class="alt-contact">
Prefer a more direct line? Send me an email at <a href="mailto:tyler@tylerrouze.com">tyler@tylerrouze.com</a>.
Prefer a more direct line? Send me an email at <a href="mailto:hello@tylerrouze.com">hello@tylerrouze.com</a>.
</p>
</div>
</section>
</PageLayout>

<script is:inline type="module" src="https://cdn.jsdelivr.net/npm/altcha/dist/altcha.min.js"></script>
<script is:inline>
const email = document.querySelector('.subscribe-form input[type="email"]');
const widget = document.getElementById('altcha');
email.addEventListener('input', () => {
if (!widget.classList.contains('visible')) {
widget.classList.add('visible');
widget.setAttribute('auto', 'onload');
}
}, { once: true });
</script>

<style>
.subscribe {
margin-bottom: 64px;
Expand Down Expand Up @@ -83,6 +100,13 @@ const LIST_ID = "e769d1fd-a069-436a-acf3-c523b1745b6b";
.subscribe-form button:hover {
opacity: 0.8;
}
.subscribe-form altcha-widget {
flex-basis: 100%;
display: none;
}
.subscribe-form altcha-widget.visible {
display: block;
}
.alt-contact {
font-size: 15px;
color: hsl(var(--theme-text-muted));
Expand Down
2 changes: 1 addition & 1 deletion src/site.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const siteConfig: SiteConfig = {
hideThemeCredit: false,
profile: {
name: "Tyler Rouze",
email: "tyler@tylerrouze.com",
email: "hello@tylerrouze.com",
github: "https://github.com/trouze",
linkedin: "https://www.linkedin.com/in/tylerrouze",
strava: "https://www.strava.com/athletes/116840931",
Expand Down