Programming & Development Navigator

Explore programming resources, languages, and tools by selecting a category.

Includes IDEs (VSCode, JetBrains), version control (Git, GitHub), deployment (Netlify, Vercel), CI/CD (GitHub Actions, Jenkins), and debugging tools (Chrome DevTools, Postman).

`, languages: `

Programming Languages

Popular languages: JavaScript (web), Python (AI, backend), Java (enterprise), C# (Windows apps), Rust (systems), TypeScript (typed JS), and SQL (databases).

` }; window.showDevInfo = function () { const value = document.getElementById("devCategory").value; const infoBox = document.getElementById("devInfo"); if (devDescriptions[value]) { infoBox.innerHTML = devDescriptions[value]; infoBox.style.display = "block"; } else { infoBox.innerHTML = ''; infoBox.style.display = "none"; } }; window.downloadDevGuidePDF = function () { const { jsPDF } = window.jspdf; const pdf = new jsPDF(); let y = 20; pdf.setFontSize(16); pdf.text("Programming & Development Guide", 105, y, { align: "center" }); y += 10; pdf.setFontSize(12); const sections = Object.values(devDescriptions).map(s => s.replace(/<[^>]+>/g, "")); sections.forEach(section => { const lines = pdf.splitTextToSize(section, 170); if (y + lines.length * 7 > 280) { pdf.addPage(); y = 20; } pdf.setFontSize(10); pdf.text(lines, 20, y); y += lines.length * 7 + 5; }); pdf.save("programming-development-guide.pdf"); }; });
Scroll to Top