File size: 5,470 Bytes
4d45ff8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Advanced Path | Python Pathfinder</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="bg-gray-50 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<div class="flex flex-col md:flex-row gap-8">
<custom-sidebar path="advanced"></custom-sidebar>
<div class="flex-1">
<div class="bg-white p-6 rounded-xl shadow-md mb-8">
<h1 class="text-3xl font-bold mb-4 text-blue-700">Advanced Python Path</h1>
<p class="text-gray-600 mb-6">Master advanced Python concepts and Java-Python interoperability.</p>
<div class="bg-blue-50 p-4 rounded-lg border border-blue-200 mb-6">
<div class="flex items-center">
<i data-feather="info" class="text-blue-600 mr-2"></i>
<span class="font-medium">Your Progress: 0%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5 mt-2">
<div class="bg-blue-600 h-2.5 rounded-full" style="width: 0%"></div>
</div>
</div>
</div>
<div class="grid md:grid-cols-2 gap-6">
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-lg mr-4">
<i data-feather="zap" class="text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold">Decorators</h3>
</div>
<p class="text-gray-600 mb-4">Learn to modify function behavior with decorators and create your own.</p>
<a href="/module.html?id=decorators" class="text-blue-600 font-medium inline-flex items-center">
Start Module <i data-feather="arrow-right" class="ml-1" width="18"></i>
</a>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
<div class="flex items-center mb-4">
<div class="bg-green-100 p-3 rounded-lg mr-4">
<i data-feather="command" class="text-green-600"></i>
</div>
<h3 class="text-xl font-semibold">Generators</h3>
</div>
<p class="text-gray-600 mb-4">Master generator functions and expressions for memory-efficient processing.</p>
<a href="/module.html?id=generators" class="text-blue-600 font-medium inline-flex items-center">
Start Module <i data-feather="arrow-right" class="ml-1" width="18"></i>
</a>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
<div class="flex items-center mb-4">
<div class="bg-purple-100 p-3 rounded-lg mr-4">
<i data-feather="git-pull-request" class="text-purple-600"></i>
</div>
<h3 class="text-xl font-semibold">Java-Python Interop</h3>
</div>
<p class="text-gray-600 mb-4">Advanced techniques for calling Java from Python and managing JVM.</p>
<a href="/module.html?id=interop" class="text-blue-600 font-medium inline-flex items-center">
Start Module <i data-feather="arrow-right" class="ml-1" width="18"></i>
</a>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
<div class="flex items-center mb-4">
<div class="bg-yellow-100 p-3 rounded-lg mr-4">
<i data-feather="cpu" class="text-yellow-600"></i>
</div>
<h3 class="text-xl font-semibold">Concurrency</h3>
</div>
<p class="text-gray-600 mb-4">Learn threading, multiprocessing, and async programming in Python.</p>
<a href="/module.html?id=concurrency" class="text-blue-600 font-medium inline-flex items-center">
Start Module <i data-feather="arrow-right" class="ml-1" width="18"></i>
</a>
</div>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/sidebar.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html> |