Skip to content
Closed
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ STEPS :

Everyone in this community (from core members to random committers and volunteers) are asked to please act in accordance with the AskDevs Community Contributor Code of Conduct. We encourage you to follow these social rules which help guide our interactions with each other, and ensure we provide a safe environment for everyone. We aim to make AskDevs a positive, welcoming, open and inclusive project and community.


[Code of Conduct](CODE_OF_CONDUCT.md)

<!--- ## 👨‍🍳 Contribute
Expand Down
827 changes: 827 additions & 0 deletions course/day_2/hnsw_performance_tuning.ipynb

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,13 @@ export default function Home({ users, categories }) {
const topics = findTopicsBySlug(selectedCategory, user);

return (

<div className="w-full p-4 md:w-1/2 lg:w-1/4 flex justify-center" key={user.username}>
<div className="bg-white flex flex-col items-center justify-center p-4 shadow-lg rounded-2xl w-64 hover:shadow-gray-500">
<img
src={user.image}
alt="profile"
className="mx-auto rounded-full py-2 w-16 "
alt={`${user.username} profile`}
className="mx-auto py-2 w-16 "
style={{ borderRadius: '100%' }}
/>
<p className="font-bold text-2xl tracking-wide text-gray-800 text-center mt-4">
Expand Down