Add Microsoft AI open source portal with resource discovery - #175
Add Microsoft AI open source portal with resource discovery#175Richard Ogundele (richardogundele) wants to merge 3 commits into
Conversation
- resources.ts: add ML-For-Beginners, R ML Batch Scoring, and Distributed Deep Learning entries that were present in the README but missing from the frontend data - Navbar: add desktop section navigation links (Samples / Architectures / Best Practices) and a working mobile dropdown menu with open/close toggle - Footer: replace minimal two-line footer with a structured dark footer containing Explore, Resources, and Community link columns https://claude.ai/code/session_01GHaThzDk3BBN9YD3gfBn9d
Arsh Verma (ArshVermaGit)
left a comment
There was a problem hiding this comment.
This PR introduces a clean and well-structured web portal for exploring Microsoft’s AI/ML open-source resources. The React + TypeScript setup with Vite ensures fast performance, while Tailwind CSS and Framer Motion provide a modern, responsive user experience. The categorized resource sections (AI100, AI200, AI300) create a clear learning path, making it easier for developers to discover useful repositories, architectures, and best practices. The inclusion of contribution planning documents also shows thoughtful preparation for meaningful open-source collaboration. Overall, the implementation is organized, practical, and provides a solid foundation for future improvements.
Manya Sharma (ManyaS-Git)
left a comment
There was a problem hiding this comment.
This PR has a critical problem that must be resolved before it can be merged. I'd recommend closing this PR and re-submitting as smaller, focused PRs (details below).
1. (CRITICAL — security) A third-party production site with live credentials is committed to the repo
ai200-architectures/TrainDistributedDeepModel was a valid submodule (gitlink d037c56…). This PR deletes that gitlink and replaces it with a 100+ KB base64-encoded blob that decodes to a dumped HTML page of a production SaaS application (alpha.duality.dev). Decoded, it contains dozens of real, apparently live secrets, including:
GITHUB_CLIENT_SECRET/GITHUB_CLIENT_IDNETLIFY_PUBLIC_NETLIFY_CLIENT_SECRET/NETLIFY_PUBLIC_NETLIFY_CLIENT_ID- a
POSTHOG_KEY/POSTHOG_HOST/SENTRY_DSN - session/access tokens and internal
ENVconfig - a personal user email (
tools@…), invite code, and account/plan data
Committing this into a public repository exposes third-party production credentials to the world. Concretely, please:
- Remove the file entirely and restore the
TrainDistributedDeepModelsubmodule pointer. - Do not reference the literal secret values in this discussion — they are already exposed in the diff and should be treated as compromised.
- Notify the operator of
alpha.duality.devso they can rotate all of the above credentials (OAuth client secrets, Netlify access tokens, PostHog/Sentry keys, session tokens). - Also check the PR's git history and any forks — once a secret hits a public repo it should be considered leaked regardless of the final merge state. Consider
gitleaks/GitHub secret scanning before merging anything.
This looks like a stray export of a third-party website that accidentally landed on top of a submodule pointer — but as written it is a security incident.
2. (Blocker) Submodule integrity is broken
.gitmodulesstill declaresai200-architectures/TrainDistributedDeepModel, but the gitlink is gone — the module will fail to initialize.ML-For-Beginnersis added as a gitlink (f925c9a…), but it is not registered in.gitmodules, sogit submodule update --initwon't know about it. If it's meant to be a submodule, add the[submodule "ML-For-Beginners"]entry; otherwise remove the gitlink.
3. (Blocker) LICENSE is modified for no reason
The only LICENSE change is de-indenting the first line ( MIT License → MIT License). License files should not be touched casually — it requires maintainer/legal attention and is completely unrelated to a portal app. Revert it.
4. Massive unrelated scope (50 files)
This single PR mixes: a new React/Vite portal app, whitespace cleanup across 23 .ci/* files, .docs/.images changes, a GitHub issue-template change, LICENSE, submodule changes, and personal planning docs (contribution_plan.md, contribution_tracker.md — these reference issues in other repos and look like personal notes that don't belong in this repository at all). Please split into at least: (a) the portal app, (b) the .ci whitespace cleanup, (c) anything else, each with a clear description.
5. The new app doesn't build as written
src/data/resources.tsusesicon: ActivityIcon(seismic-dl entry) butActivityIconis not imported — a compile error under thetsconfigstrictmode this PR enables. (Verified: the import line only brings inBookOpen, Code2, Layers, Cpu, Database, Cloud, Terminal, BrainCircuit, GraduationCap.)icon?: anyundermines the stated "TypeScript strict mode" goal — type it asLucideIcon.- No
package-lock.json/yarn.lockis committed for a buildable frontend, and there are no build/deploy instructions or README for the portal.
6. Notes on the rest
- The
.cichanges are genuinely whitespace-only (verified) — fine in principle, but this noise belongs in its own PR. - The
.docs/.imageschanges overlap with PR #129 (image path fix for issue #128) — check for conflicts and coordinate so only one change lands.
Recommendation: do not merge in this state. Close/re-work it as: restore the submodule + delete the leaked blob, revert LICENSE, register or drop ML-For-Beginners, split the app and CI changes into separate PRs, fix the ActivityIcon import, and re-submit. The portal concept itself is a reasonable idea worth landing cleanly once the critical issues are removed.
Summary
This PR introduces a new web portal for discovering Microsoft's AI/ML open source projects, reference architectures, and best practices. It includes a React-based frontend application with curated resource collections and comprehensive contribution planning documentation.
Key Changes
New Web Portal Application
Navbar: Navigation with mobile menu supportHero: Landing section with call-to-actionResourceSection: Reusable component for displaying categorized resourcesFooter: Multi-column footer with links and informationResource Data Structure
src/data/resources.tswith three main categories:Documentation & Planning
Build Configuration
Code Quality
Implementation Details
https://claude.ai/code/session_01GHaThzDk3BBN9YD3gfBn9d