Skip to content

firat-sivrikaya/StackOverflowViewer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 

Repository files navigation

Stack Overflow Viewer Application

Stack Overflow Viewer Application (SOVA) is a single-page application that allows users browse posts in Stack Overflow, display various stats and mark the posts that they want to save for later. The application is based on ASP.NET and runs its own API instead of directly accessing StackExchange API. To avoid excessive storage usage, the database includes a small portion of the posts (~100.000).

Progress

Completed.

Technologies that are used

  • MySQL
  • C#
  • ASP.Net
  • Entity Framework
  • LINQ
  • Bootstrap
  • Knockout.JS

Notes for contributors

You need to create a table called MarkedPosts in order to use the latest functionalities. SQL code is provided below.

CREATE TABLE `markedposts` (
  `id` int(11) DEFAULT NULL,
  `notes` varchar(256) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Body template for CREATE, DELETE, UPDATE operations that are used in marking posts:

{
	"id" : 12345678,
	"notes": "Add some notes to your marked post"
}

And, don't forget to specify the content type while making calls.

Content-Type: application/json

About

An alternative full stack-developed Stack Overflow application, which uses its own API based on dump data. and comes with a unique front-end.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published