Skip to main content

Show HN: Mapedia.org – A Crowdsourced Learning Map https://ift.tt/71Qmd20

Show HN: Mapedia.org – A Crowdsourced Learning Map Hi HN! We're happy to announce the launch of Mapedia.org, an open source crowdsourced learning map! Mapedia is a new kind of learning platform at the crossroad between Wikipedia, Google Maps and Khan Academy: a learning map built collaboratively to support online learners to learn any topic seamlessly. We built an interactive learning map of topics to be able to visualize the different fields of knowledge, what concepts are included in them and how they relate to each other. This allows for curiosity based exploration, identifying knowledge gaps (unknown unknowns) and figuring out what to learn next (and in which order). For each topic you can then find community and expert curated resources, learning advices and smart recommendations in order to learn as efficiently as possible. We want people to spend time learning rather than figuring out how to learn, and in particular to empower self-directed learners. The idea came out of the frustration and inefficiency of learning online, and I've been working on it for 2 years now. The vision in itself for it is not so new, Mapedia is rather a different take on it that particularly believes in the potential of crowdsourcing and online communities. Our roadmap includes implementing learning groups based on shared goals rather than shared course/learning material, customizable "constructive" feeds of learning materials and adaptive learning paths. The topic map is obviously far from complete and we are still in the early product iterations, but you can checkout a few examples here: https://ift.tt/BThHARe -> The explore map from the top level topics https://ift.tt/jc1UXy3... -> the map focused on functional programming, showing how concepts relate to each other https://ift.tt/oRc9MqX... -> the page for the functional programming topic, with curated resources https://ift.tt/3gBvxrm... -> an example of a learning path (this feature is in a very alpha version) Let us know what you think! We're very open to feedback and suggestions https://mapedia.org/ July 15, 2022 at 11:57PM

Comments

Popular posts from this blog

Show HN: TypeScript query builder with full type inference https://ift.tt/xZp9HOm

Show HN: TypeScript query builder with full type inference Hey HN! Colin here - a TypeScripter, open sourcer, and engineer at EdgeDB. As the creator of Zod and tRPC, I'm interested in designing tools/APIs that use type inference and generics to make life easier for devs. This query builder represents another step in that direction. We set out to build an EdgeQL query builder that can express queries of arbitrary complexity (EdgeQL has feature parity with SQL, roughly) and infer the static type of the query result. We introspect the database and generate a schema-aware client that represent any query, including ones that use built-in functions, operators, string/array/tuple indexing, aggregations, conditionals, type casting, subqueries, computed properties, etc—things most ORMs can’t represent. This post mostly discusses the API design, which I think will be interesting regardless of familiarity with EdgeQL. I’d love to see some of these ideas bleed into future generations of TypeSc...