Skip to content

Just an other blogging system in Java but stored entirely in-memory. Post,label,comment your content.

Notifications You must be signed in to change notification settings

bozzkar/Blogger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blogger

Just an other blogging system in Java but stored in-memory.. buh.. Supports:

  • adding new Post,labels,comments
  • retrieving posts, posts for particular labels and users etc
  • bulk push comments,labels

No proper user management system included yet

Usage Examples

  • Create a new user: UUID u=b.SignUpUser("Baskar");

  • Submit a new post: UUID x=b.SubmitPost("Hello world", u);

  • Add comment/list of comments to a post: b.AddCommentToPost("intro", x);

  • Add label/list of labels to a post: b.AddLabelToPost("computer", x);

  • Get the labels of a post: b.GetLabelsOfPost(x)

  • Get the posts with a label and by a user: b.GetPostsWithLabelOfUser("computer", u)

And more...

About

Just an other blogging system in Java but stored entirely in-memory. Post,label,comment your content.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages