Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions _posts/2015-12-29-new-year-party.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
layout: post
title: "New Year Celebration"
date: 2015-12-29T11:25:35+05:30
---
### Terms Used

* **New Year** 1st of Janaury.
* **New Year Celebration** An event to acknowledge start of new year.

### Should I throw a party?

![People are asking for a party?](/charts/new_year_throw_party.png)
30 changes: 30 additions & 0 deletions charts/new_year_throw_party.gv
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

strict digraph NewThrowParty
{
start [ shape = "box", label = "Start" ];
end [ shape = "box", label = "End" ];

want_to_throw [ shape = "diamond", label = "Do I want to throw a party?" ];
can_manage [ shape = "diamond", label = "Am I good at managing?" ];
can_afford [ shape = "diamond", label = "Can I afford throwing a party?" ];

throw [ shape = "box", label = "Throw!" ];
dont_throw [ shape = "box", label = "Don't Throw!" ];

start -> want_to_throw;

want_to_throw -> dont_throw [ label = "No" ];
want_to_throw -> can_manage [ label = "Yes" ];

can_manage -> dont_throw [ label = "No" ];
can_manage -> can_afford [ label = "Yes" ];


can_afford -> dont_throw [ label = "No" ];
can_afford -> throw [ label = "Yes" ];

throw -> end;
dont_throw -> end;

{ rank = "same"; throw dont_throw };
}
Binary file added charts/new_year_throw_party.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.