Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
kasinadhsarma authored Aug 9, 2024
1 parent d08dd86 commit 75829fe
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion backend/blockchain/contracts/JobCity.sol
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ contract JobCity {
require(_id > 0 && _id <= totalCertificates, "Invalid certificate ID");
return certificates[_id];
}
}
}
2 changes: 1 addition & 1 deletion backend/blockchain/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ async def health_check():

if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
uvicorn.run(app, host="0.0.0.0", port=8000)
2 changes: 1 addition & 1 deletion backend/blockchain/scripts/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ main()
.catch((error) => {
console.error(error);
process.exit(1);
});
});
2 changes: 1 addition & 1 deletion src/components/AIExplanationMode.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ const AIExplanationMode = () => {
);
};

export default AIExplanationMode;
export default AIExplanationMode;
2 changes: 1 addition & 1 deletion src/components/FormulaExplanation.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ const FormulaExplanation = ({ formula, explanation }) => {
);
};

export default FormulaExplanation;
export default FormulaExplanation;
2 changes: 1 addition & 1 deletion src/courses/c/basics/task1.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ int main() {
}
```

Complete the TODOs to finish the task. Good luck!
Complete the TODOs to finish the task. Good luck!
2 changes: 1 addition & 1 deletion src/courses/c/intermediate/task1.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,4 @@ int main() {
}
```

Complete the TODOs to finish the task. Good luck!
Complete the TODOs to finish the task. Good luck!
2 changes: 1 addition & 1 deletion src/pages/_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}

export default MyApp
export default MyApp
2 changes: 1 addition & 1 deletion src/pages/ai-research/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ export default function AIResearch() {
</main>
</div>
);
}
}
2 changes: 1 addition & 1 deletion src/pages/aptitude.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ const AptitudeReasoning = () => {
);
};

export default AptitudeReasoning;
export default AptitudeReasoning;
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ const AveragesPage = () => {
);
};

export default AveragesPage;
export default AveragesPage;
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ const CompoundInterestPage = () => {
);
};

export default CompoundInterestPage;
export default CompoundInterestPage;
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ const PercentagePage = () => {
);
};

export default PercentagePage;
export default PercentagePage;
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ const PipesAndCisternsPage = () => {
);
};

export default PipesAndCisternsPage;
export default PipesAndCisternsPage;
2 changes: 1 addition & 1 deletion src/research_findings_summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@
- Implement an interactive coding environment for the coding modules.
- Integrate statistical tools and visualizations for data interpretation problems.

This summary provides a foundation for developing the aptitude reasoning, examination, and coding modules for the Job-City platform, incorporating best practices and effective strategies observed from established platforms.
This summary provides a foundation for developing the aptitude reasoning, examination, and coding modules for the Job-City platform, incorporating best practices and effective strategies observed from established platforms.
2 changes: 1 addition & 1 deletion src/utils/db.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ async function dbConnect() {
return cached.conn;
}

module.exports = dbConnect;
module.exports = dbConnect;

0 comments on commit 75829fe

Please sign in to comment.