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
7 changes: 2 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,14 @@
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react",
"@typescript-eslint"
],
"plugins": ["react", "@typescript-eslint"],
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"react/react-in-jsx-scope": "off",
"react/react-in-jsx-scope": "off",
"react/no-unescaped-entities": "warn"
}
}
6 changes: 2 additions & 4 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,9 @@ import './App.scss';

const App: React.FC = () => {
return (
<div className="App" role="document">
<div className="App">
<Navbar />
<main>
<Content />
</main>
<Content />
<Footer />
</div>
);
Expand Down
19 changes: 7 additions & 12 deletions src/Components/About/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ const About: React.FC = () => {
<div className="AboutContentContainer">
<div className="AboutContent">
<p className="AboutText">
Hi, my name is Carson! I&#39;m a recent grad from John Abbott College&#39;s
Computer Science degree continuing my education over at Concordia
University!
Hi, my name is Carson! I&#39;m a recent grad from John Abbott
College&#39;s Computer Science degree continuing my education over
at Concordia University!
<br />
<br />
This summer, I interned @{' '}
Expand All @@ -28,7 +28,6 @@ const About: React.FC = () => {
href="https://www.tailed.ca/en"
target="_blank"
rel="noreferrer"
aria-label="Visit Tail'ed's website"
>
Tail&#39;ed
</a>{' '}
Expand All @@ -37,10 +36,10 @@ const About: React.FC = () => {
some tools for users written in Python (notably, an AI-tool).
<br />
<br />
In my free time, I&#39;m usually working on a personal project, learning
a new technology, or wallowing in some imposter syndrome. Aside from
that, my interests are geared towards AI/ML and their potential
impact on environmental solutions.
In my free time, I&#39;m usually working on a personal project,
learning a new technology, or wallowing in some imposter syndrome.
Aside from that, my interests are geared towards AI/ML and their
potential impact on environmental solutions.
<br />
<br />
I&#39;m not hard to track down, but you can find me on{' '}
Expand All @@ -49,7 +48,6 @@ const About: React.FC = () => {
href="https://linkedin.com/in/carsonspriggs"
target="_blank"
rel="noreferrer"
aria-label="Visit my LinkedIn profile"
>
LinkedIn
</a>
Expand All @@ -59,7 +57,6 @@ const About: React.FC = () => {
href="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/carsonSgit"
target="_blank"
rel="noreferrer"
aria-label="Visit my GitHub profile"
>
GitHub
</a>
Expand All @@ -69,7 +66,6 @@ const About: React.FC = () => {
href="https://dev.to/carsonsgit"
target="_blank"
rel="noreferrer"
aria-label="Visit my Dev.to profile"
>
Dev.to
</a>{' '}
Expand All @@ -79,7 +75,6 @@ const About: React.FC = () => {
href="https://medium.com/@carsonspriggs6"
target="_blank"
rel="noreferrer"
aria-label="Visit my Medium profile"
>
Medium
</a>{' '}
Expand Down
9 changes: 4 additions & 5 deletions src/Components/Content/Content.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.content-container {
.section-container {
max-width: 1700px;
margin: 0 auto;
}
.section-container {
max-width: 1700px;
margin: 0 auto;
}
}
5 changes: 3 additions & 2 deletions src/Components/Data/portfolioProjects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,15 @@ export const projects: Project[] = [
'TradeMind is a project developed for <a href="https://launchlab.ai/" target="_blank" rel="noopener noreferrer">AI Launch Lab</a>\'s <a href="https://launchlab.ai/rd-program/" target="_blank" rel="noopener noreferrer">R&D Program</a>. It is a web app that uses machine learning to predict stock prices and provide insights to users.',
github: 'https://github.com/carsonSgit/TradeMind',
website: 'https://trademind.pages.dev/',
},
},
{
image: 'pharmahacks2024.webp',
title: 'Mice Neural Decoding',
languages: 'Python, Jupyter Notebook, Machine Learning',
description:
'Mice Neural Decoding was a challenge at the <a href="https://pharmahacks.com/#welcome" target="_blank" rel="noopener noreferrer">PharmaHacks 2024</a> event. My group and I decoded mouse navigation decisions by analyzing L2/3 neuron activity in the retrosplenial cortex, following the findings of Tseng et al. (2022) in their Neuron Paper. Please read the README.md on the GitHub repo!',
github: 'https://github.com/carsonSgit/Mice-Neural-Decoding-ML',
website: 'https://github.com/carsonSgit/Mice-Neural-Decoding-ML/blob/main/PharmaHacks%202024%20Neural%20Decoding%20Single%20File.ipynb',
website:
'https://github.com/carsonSgit/Mice-Neural-Decoding-ML/blob/main/PharmaHacks%202024%20Neural%20Decoding%20Single%20File.ipynb',
},
];
Loading