Skip to content

Dream: live in a world where you can learn mathematics, physics, chemistry, biology and engineering from perfect open source books made for free by people who want to get famous to get better paying jobs. This is just a wacky project idea right now, there is no prototype nor business model.

philschatz/write-free-science-books-to-get-famous-website

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

Write Free Science Books to Get Famous Website

Dream: live in a world where you can learn mathematics, physics, chemistry, biology and engineering from perfect open source books made for free by people who want to get famous to get better paying jobs.

This is just a wacky project idea right now, there is no implementation, nor business model.

Method: a crash between:

  • Stack Overflow gamification
  • GitHub-like pull requests. Not anyone can edit anything like Wikipedia madness, but you can make your own copy (fork), and a precise a suggestion.
  • Wikipedia. Imagine if you could link up-votable application examples to the page of a Mathematics theorem.
  • page rank-like algorithm for user reputation, including a per-tag reputation and content recommendation (what are the best articles about a given subject?)

Very early stage prototype(s):

Intro

Consider a Stack-Overflow-like Q&A website:

  • there are questions and answers
  • questions have tags, e.g. programming languages like C, C++, Java
  • users have a reputation measure. If you upvote someone's question or answer, his reputation increases. You need 15 reputation to upvote someone.

But Stack Overflow's reputation system sucks because:

  • it the living ultimate god of C++ upvotes you, you get 10 reputation
  • if the first-day newb of Java upvotes you, you also get 10 reputation

We want to improve Stack Overflow's simplistic linear reputation system to determine who is the user who knows the most about a given tag.

Fundamental requirement: a Google PageRank-like algorithm (Eigenvalue based) such that:

  • everyone has one reputation per tag
  • if someone with high rep on a given tag upvotes you, you get a lot of reputation on that tag. More than you would get from someone with low reputation on that tag.

Optional but very desirable requirements:

  • users can upvote tags on a given question to say: "I agree that this question deserves this tag".

    The vote of users with higher rep on the tag should count more.

  • each time you upvote the same given person, it has less positive impact on his reputation for that tag.

    This would counter voting fraud, e.g. of close groups of friends which upvote each other a lot.

Another problem this would solve: multiple site split silliness: http://meta.stackoverflow.com/questions/271989/does-it-pay-to-spin-off-sites Since there is no human moderation, only algorithms, splitting websites makes no sense.

Extra problem 1: post age

How to determine if something is "original research" or not?

E.g.: a genius discovers something and publishes it really badly explained.

Someone less intelligent comes, explains it better, and gets widely read.

Or someone who just posts a bunch of links to good sources.

Extra problem 2: post age

Post metrics on Stack Overflow also suck: the post with most upvotes goes up and that is it.

It would be cool to give a boost to recent posts that got lots of upvotes.

They can't beat the older ones in total upvotes, but the upvote rate is a strong indicator of quality.

Does Google consider post date?

Extra problem 3: user trusts user

It would be cool for a user to say: I trust this other user on given tags / all tags.

Maybe this is required. E.g., given a real network, a bot network could make an exact copy of it, and that should have the same reputation as the real one.

Such relations make per-user score of other users / posts even more important.

Extra problem 4: per user score of all other users

Rate how much one user likes other users based on his actions.

E.g.: someone who only upvotes C questions will give score 0 for someone with only Java questions.

Testing: a difficulty

While it is possible to download all public data from Stack overflow in dumps, this algorithms would need private information like who upvoted what.

So generating meaningful test data would be a problem in itself.

Research

Software:

StackApps:

General reputation systems:

Concept maps:

Social network:

PageRank

Implementations:

Mathematical problem: make a stochastic matrix graph where each entry equals:

  • (1 / n_links) if there is a link going out
  • 0 otherwise

Now calculate the steady state of the Markov process: https://en.wikipedia.org/wiki/Markov_chain#Steady-state_analysis_and_limiting_distributions which is the same as calculating the eigenvector.

Convergence of simple interactive algorithm: stochastic link matrix M iff M is both: (TODO proof):

Proposal to use it on Stack Overflow:

PageRank tutorials and papers:

PageRank alternatives:

PageRank variants:

Algorithm possibilities

The most obvious possibility is to reduce the problem to pagerank.

If we forget tags to simplify, we could do a bipartite authors / posts graph:

  • each post and user is node in one side of the bipartite graph
  • if userN upvotes postN, add a link from userN to postN
  • link postN to it's author userN

To consider tags without weight, in addition:

  • each user is represented by one node per tag userN-tagM
  • if userN upvotes postN, add a link from userN-tagM to postN if postN is tagged with tagM
  • link from postN to each userN-tagM where userN is the autor and tagM a tag of the post

Tag hierarchy extraction

We could be able to deduce that animal includes dog, is a lot of articles tagged as

Websites with tag votes by any user

  • Flickr 2016 only photo author can add tags
  • Delicious TODO down?

Datasets

Business model

Consulting

Start with consulting for universities to get some cash flowing.

Help teachers create perfect courses.

At the same time, develop the website, and use the generated content to bootstrap it.

Choose a domain of knowledge, generate perfect courses for it, and find all teachers of the domain in the world who are teaching that and help them out.

Then expand out to other domains.

TODO: which domain of knowledge should we go for? The more precise the better.

  • maths is perfect because it "never" changes. But does not make money.
  • computer science might be good, e.g. machine learning.

Knowledge market

If enough people use it, we can let people sell courses through us, to become the YouTube of courses.

Teachers have the incentive of making open source to get more students.

Students pay when they want help to learn something.

Who to propose this to

https://catalogue.polytechnique.fr/cours.php?id=2913

http://psc.polytechnique.fr/

Ads

Possibly shared with top content producers, like Tsu.

Plus a paid option to opt out of ads.

But this is what YouTube does with videos, and it only pays for a ton of views...

About

Dream: live in a world where you can learn mathematics, physics, chemistry, biology and engineering from perfect open source books made for free by people who want to get famous to get better paying jobs. This is just a wacky project idea right now, there is no prototype nor business model.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published