Skip to content

Commit

Permalink
fixed blank page
Browse files Browse the repository at this point in the history
  • Loading branch information
Ikromov247 committed Dec 18, 2024
1 parent 47b25c3 commit d963fee
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 24 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
"version": "1.0.0",
"private": true,
"dependencies": {
"lucide-react": "^0.294.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"lucide-react": "^0.294.0"
"react-scripts": "5.0.1"
},
"devDependencies": {
"tailwindcss": "^3.3.0",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31"
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17"
},
"scripts": {
"start": "react-scripts start",
Expand All @@ -36,4 +36,4 @@
"last 1 safari version"
]
}
}
}
6 changes: 6 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
1 change: 1 addition & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<title>Sukhrob Ikromov | Portfolio</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>
31 changes: 20 additions & 11 deletions src/components/ResumeWebsite.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ const ResumeWebsite = () => {
title: "Machine Learning Engineer",
contact: {
email: "[email protected]",
phone: "+82-10-2115-7720",
location: "Naju-si, Korea",
linkedin: "www.linkedin.com/in/sukhrob-ikromov"
linkedin: "www.linkedin.com/in/sukhrob-ikromov",
github: "github.com/Ikromov247"
},
summary: "Machine Learning Engineer experienced in designing and optimizing machine learning pipelines, API deployments, and database management. Adept at improving model performance by applying both statistical methods and industry-specific concepts. Proven track record in enhancing system efficiency and automating workflows, significantly reducing manual intervention.",
summary: "Machine Learning Engineer experienced in designing and optimizing machine learning pipelines, API deployments, and database management. Adept at improving model performance by applying both statistical methods and industry-specific concepts. Proven track record in enhancing system efficiency and automating workflows, significantly reducing manual intervention. Passionate about enabling companies to leverage AI solutions and seamlessly integrate them into existing systems, minimizing operational overhead.",
experience: [
{
company: "Rec's Innovation",
Expand All @@ -20,9 +20,14 @@ const ResumeWebsite = () => {
highlights: [
"Architected and implemented end-to-end ML pipeline including data processing, feature engineering, training, inference, and monitoring components",
"Designed robust API endpoints using FastAPI and Uvicorn for real-time anomaly detection and power prediction, achieving uptime of 99%",
"Reduced model deployment time from 1 hour to 1 minute by implementing CI/CD pipelines using Github Actions",
"Achieved instant response to model performance issues by developing monitoring system using Prometheus and Grafana",
"Streamlined onboarding through comprehensive documentation and project templates"
"Achieved cross-platform compatibility on all major OSs by containerizing machine learning systems using Docker",
"Reduced model deployment time from 1 hour to 1 minute by implementing CI/CD pipelines using Github Actions and integrating Docker cache",
"Automated ML training and inference using a custom orchestrator",
"Minimized deployment errors by adding integration tests into the CI/CD pipelines",
"Minimized production downtimes by implementing rollback deployment using Github Actions and Docker",
"Enabled seamless integration of ML pipelines into the company's power management system by collaborating with the backend team to align model outputs with system requirements",
"Achieved instant response to model performance issues, by developing a monitoring and alerting system using Prometheus and Grafana",
"Streamlined onboarding of new members by creating comprehensive documentation for maintaining existing projects and instructions for creating new projects based on a custom template"
]
}
],
Expand Down Expand Up @@ -89,17 +94,21 @@ const ResumeWebsite = () => {
<Mail size={16} />
<span>{resumeData.contact.email}</span>
</div>
<div className="flex items-center gap-2">
<Phone size={16} />
<span>{resumeData.contact.phone}</span>
</div>
<div className="flex items-center gap-2">
<MapPin size={16} />
<span>{resumeData.contact.location}</span>
</div>
<div className="flex items-center gap-2">
<Linkedin size={16} />
<span>{resumeData.contact.linkedin}</span>
<a href={`https://${resumeData.contact.linkedin}`} target="_blank" rel="noopener noreferrer" className="hover:text-white">
{resumeData.contact.linkedin}
</a>
</div>
<div className="flex items-center gap-2">
<Github size={16} />
<a href={`https://${resumeData.contact.github}`} target="_blank" rel="noopener noreferrer" className="hover:text-white">
{resumeData.contact.github}
</a>
</div>
</div>
</div>
Expand Down
10 changes: 10 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}

0 comments on commit d963fee

Please sign in to comment.