-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog2014_06_18.html
133 lines (133 loc) · 12.2 KB
/
log2014_06_18.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang='en'>
<head>
<title>
pgmpy Log of 18-06-2014
</title>
<link rel='stylesheet' type='text/css' href='css/bootstrap.min.css' media='screen' />
</head>
<body>
<div class='container'>
<h2>Log of the <code>#pgmpy</code> IRC Channel</h2><br/>
<h3>All the times shown here presently are in Indian Standard Time(IST) +0530Hrs<h3/>
<h3>Date : 18-06-2014 </h3><br/><br/>
<br/>
<kbd>[02:24:00]</kbd> <strong>[connected at Wed Jun 18 02:24:00 2014]</strong><br/>
<kbd>[02:24:14]</kbd> <strong>[I have joined #pgmpy]</strong><br/>
<kbd>[02:24:45]</kbd> <code><ankurankan></code> Gm..<br/>
<kbd>[02:25:17]</kbd> <code><ankurankan></code> abinash_panda, Any idea why the bot quits once everytime we start to chat<br/>
<kbd>[02:25:19]</kbd> <code><ankurankan></code> ?<br/>
<kbd>[02:26:06]</kbd> <code><ankurankan></code> Okay so task no 3 that I have thought can be to add the functionality of deleting the nodes and edges<br/>
<kbd>[02:26:11]</kbd> <code><ankurankan></code> What do you think?<br/>
<kbd>[02:26:48]</kbd> <code><skundu></code> okay<br/>
<kbd>[02:27:10]</kbd> <code><shashankg></code> I think deleting will be very easy work and can be implemented in 10-20 lines.<br/>
<kbd>[02:27:30]</kbd> <code><ankurankan></code> shashankg, Yeah I agree<br/>
<kbd>[02:27:33]</kbd> <code><shashankg></code> The original code, written by pranjal had deleting feature<br/>
<kbd>[02:28:12]</kbd> <code><ankurankan></code> But the some of the guys are very new to programming, so I think they can start with this<br/>
<kbd>[02:28:40]</kbd> <code><skundu></code> but once a node is deleted the nodeid which is kept in sequence needs to be updated<br/>
<kbd>[02:28:59]</kbd> <code><shashankg></code> ok, then this is task #3<br/>
<kbd>[02:29:03]</kbd> <code><ankurankan></code> skundu, Yeah exactly. So this would be that a small task<br/>
<kbd>[02:29:14]</kbd> <code><ankurankan></code> *this would not be such a small task<br/>
<kbd>[02:29:16]</kbd> <code><skundu></code> say somebody deletes node5 then node6 has to be updated as node5<br/>
<kbd>[02:29:22]</kbd> <code><skundu></code> exactly<br/>
<kbd>[02:29:50]</kbd> <code><ankurankan></code> Why are we having the default node name thing when we are not accepting them as name ?<br/>
<kbd>[02:30:11]</kbd> <code><skundu></code> i am saying them as nodeid<br/>
<kbd>[02:30:21]</kbd> <code><ankurankan></code> Sry, it does take the default name<br/>
<kbd>[02:30:33]</kbd> <code><ankurankan></code> No I was talking about the frontend<br/>
<kbd>[02:30:47]</kbd> <code><shashankg></code> skundu: what exactly is the strategy for nodeId, node name and default name?<br/>
<kbd>[02:30:47]</kbd> <code><ankurankan></code> when we click the pop up shows something like "node 5"<br/>
<kbd>[02:31:00]</kbd> <code><ankurankan></code> but the save button doesn't turn to green<br/>
<kbd>[02:31:43]</kbd> <code><skundu></code> node id would be kept in sequence in format "node4"<br/>
<kbd>[02:32:18]</kbd> <code><skundu></code> if user enters any node name, node name is updated else it stays default as node id<br/>
<kbd>[02:32:45]</kbd> <code><shashankg></code> ok.<br/>
<kbd>[02:33:27]</kbd> <code><ankurankan></code> Okay. So task 3 is final ?<br/>
<kbd>[02:33:32]</kbd> <code><shashankg></code> so if a user deletes a node, do you wish to update the name as well as nodeId?<br/>
<kbd>[02:34:10]</kbd> <code><ankurankan></code> No I think we should just remove it from the json that we were having for the graph<br/>
<kbd>[02:34:54]</kbd> <code><shashankg></code> I agree.<br/>
<kbd>[02:35:15]</kbd> <code><shashankg></code> just skip the node number which has been deleted.<br/>
<kbd>[02:35:26]</kbd> <code><ankurankan></code> shashankg, Yes<br/>
<kbd>[02:35:26]</kbd> <code><skundu></code> lets keep the node name same just change the nodeid<br/>
<kbd>[02:35:53]</kbd> <code><ankurankan></code> skundu, Why do we need to keep anything when we are deleting the node<br/>
<kbd>[02:35:57]</kbd> <code><shashankg></code> then we will have situation where nodeId will be node4 and node name will be node5<br/>
<kbd>[02:36:27]</kbd> <code><shashankg></code> It is not intuitive solution.<br/>
<kbd>[02:37:05]</kbd> <code><skundu></code> ok<br/>
<kbd>[02:37:09]</kbd> <code><shashankg></code> ankurankan: suppose there are 3 nodes. User deleted node number2, skundu wants to update the nodeId of node3 to node2<br/>
<kbd>[02:37:36]</kbd> <code><ankurankan></code> No. We shouldn't do that<br/>
<kbd>[02:37:46]</kbd> <code><ankurankan></code> We should just leave that node id<br/>
<kbd>[02:37:56]</kbd> <code><skundu></code> i agree<br/>
<kbd>[02:38:00]</kbd> <code><shashankg></code> ok<br/>
<kbd>[02:38:09]</kbd> <code><ankurankan></code> Okay so I am adding it to the doc<br/>
<kbd>[02:38:47]</kbd> <code><shashankg></code> Is there any edit that you would suggest to the first 2 tasks?<br/>
<kbd>[02:39:55]</kbd> <code><ankurankan></code> shashankg, No.<br/>
<kbd>[02:40:10]</kbd> <code><shashankg></code> ok<br/>
<kbd>[02:40:22]</kbd> <code><ankurankan></code> You should write task 3 also. You can write better :P<br/>
<kbd>[02:40:36]</kbd> <code><ankurankan></code> And I am unable to think what should I write<br/>
<kbd>[02:40:42]</kbd> <code><shashankg></code> ok.<br/>
<kbd>[02:44:33]</kbd> <code><shashankg></code> skundu: how are you implementing loop validation?<br/>
<kbd>[02:45:21]</kbd> <code><skundu></code> once an edge is created all child nodes are searched if they coincide with the parent node<br/>
<kbd>[02:47:00]</kbd> <code><shashankg></code> okay.<br/>
<kbd>[02:47:09]</kbd> <code><ankurankan></code> One more thing, why are we having a post model button<br/>
<kbd>[02:47:30]</kbd> <code><shashankg></code> what else do you suggest?<br/>
<kbd>[02:47:45]</kbd> <code><ankurankan></code> Whenever the user click on the analysis mode the model should automatically get posted<br/>
<kbd>[02:48:41]</kbd> <code><shashankg></code> I don't think it is a good idea.<br/>
<kbd>[02:49:07]</kbd> <code><ankurankan></code> shashankg, Reason ?<br/>
<kbd>[02:50:08]</kbd> <code><shashankg></code> not intuitive for me<br/>
<kbd>[02:51:06]</kbd> <code><ankurankan></code> Okay.. Then lets leave it as it is<br/>
<kbd>[02:51:30]</kbd> <code><shashankg></code> we will give an edit graph button in analysis mode<br/>
<kbd>[02:52:08]</kbd> <code><ankurankan></code> shashankg, Why would we need that ? Going to draw mode would be the same thing<br/>
<kbd>[02:52:39]</kbd> <code><shashankg></code> okk. No edit button<br/>
<kbd>[02:53:25]</kbd> <code><shashankg></code> skundu: do you think we should add any other details to our tasks doc?<br/>
<kbd>[02:54:09]</kbd> <code><ankurankan></code> One more thing, when we are adding nodes the add nodes button shows stop adding nodes but when we have to switch to adding edges we can't simply click on start adding edges. We first have to click on stop adding nodes and then on start adding edges to make it work<br/>
<kbd>[02:54:57]</kbd> <code><ankurankan></code> I think the user should be directly able to click on start adding edges and the stop adding nodes button should automatically change to start adding nodes and the user should be able to add the edges<br/>
<kbd>[02:55:02]</kbd> <code><ankurankan></code> What do you think?<br/>
<kbd>[02:55:08]</kbd> <code><shashankg></code> I agree.<br/>
<kbd>[02:56:09]</kbd> <code><shashankg></code> skundu: your thoughts?<br/>
<kbd>[02:57:28]</kbd> <code><ankurankan></code> And we can add this as task #4<br/>
<kbd>[02:57:38]</kbd> <code><shashankg></code> yep<br/>
<kbd>[02:58:22]</kbd> <code><shashankg></code> ok, I'll add this to doc<br/>
<kbd>[02:58:29]</kbd> <code><shashankg></code> any other tasks?<br/>
<kbd>[02:58:35]</kbd> <code><shashankg></code> I think skundu left<br/>
<kbd>[02:58:41]</kbd> <code><ankurankan></code> Nah, 4 should be enough for now<br/>
<kbd>[02:59:15]</kbd> <code><shashankg></code> so when do you plan to have a meeting with new guys?<br/>
<kbd>[02:59:29]</kbd> <code><ankurankan></code> Tonight ?<br/>
<kbd>[02:59:42]</kbd> <code><shashankg></code> Will the new guys be familiar with IRC?<br/>
<kbd>[02:59:44]</kbd> <code><shashankg></code> ok.<br/>
<kbd>[02:59:52]</kbd> <code><ankurankan></code> I don't think so<br/>
<kbd>[02:59:57]</kbd> <code><ankurankan></code> One of them is<br/>
<kbd>[02:59:59]</kbd> <code><ankurankan></code> No idea about others<br/>
<kbd>[03:00:15]</kbd> <code><abinash_panda></code> hi guys :) Gm :)<br/>
<kbd>[03:00:28]</kbd> <code><shashankg></code> Good morning :)<br/>
<kbd>[03:00:30]</kbd> <code><ankurankan></code> abinash_panda, Hi<br/>
<kbd>[03:01:01]</kbd> <code><shashankg></code> I'll add instructions on the top of task page<br/>
<kbd>[03:01:10]</kbd> <code><shashankg></code> and share the link with students.<br/>
<kbd>[03:01:18]</kbd> <code><ankurankan></code> abinash_panda always comes after the discussion when ever we discuss about viz<br/>
<kbd>[03:01:20]</kbd> <code><ankurankan></code> :P<br/>
<kbd>[03:01:26]</kbd> <code><abinash_panda></code> seems that you are doing some serious things<br/>
<kbd>[03:01:42]</kbd> <code><ankurankan></code> shashankg, Yeah we should do that<br/>
<kbd>[03:01:55]</kbd> <code><shashankg></code> Can someone add the links in the doc. Links in places where I have written text.<br/>
<kbd>[03:02:17]</kbd> <code><ankurankan></code> We should also write some basic instruction about how to clone the repo and setup things<br/>
<kbd>[03:03:19]</kbd> <code><shashankg></code> Okay. I'll edit the doc after and hour.<br/>
<kbd>[03:03:32]</kbd> <code><skundu></code> srry i left<br/>
<kbd>[03:03:43]</kbd> <code><skundu></code> task 4 sounds good<br/>
<kbd>[03:03:44]</kbd> <code><ankurankan></code> shashankg, I will add the links<br/>
<kbd>[03:03:50]</kbd> <code><shashankg></code> skundu: what do you say about django vs flask?<br/>
<kbd>[03:05:10]</kbd> <code><ankurankan></code> skundu, And is your code able to draw the tables right now ?<br/>
<kbd>[03:06:03]</kbd> <code><skundu></code> i can draw tables but there is a small issue with adding new rows and columns<br/>
<kbd>[03:06:12]</kbd> <code><skundu></code> that wont take much time though<br/>
<kbd>[03:06:36]</kbd> <code><skundu></code> shashankg: i havent used flask<br/>
<kbd>[03:06:46]</kbd> <code><shashankg></code> ok<br/>
<kbd>[03:07:13]</kbd> <code><ankurankan></code> Okay, no problem let's just go with django<br/>
<kbd>[03:07:38]</kbd> <code><shashankg></code> I think flask will be more suitable for our purpose, but the problem is that non of us is familiar with it. And it will be difficult to find flask developers.<br/>
<kbd>[03:07:52]</kbd> <code><shashankg></code> So let's go with django<br/>
<kbd>[03:08:30]</kbd> <code><ankurankan></code> Yeah, anyway our app is not that huge or something that django or flask would make much of a difference<br/>
<kbd>[03:09:08]</kbd> <code><shashankg></code> yeah<br/>
<kbd>[03:19:23]</kbd> <code><ankurankan></code> shashankg, skundu How frequently does PSF wants the students to write the blog?<br/>
<kbd>[03:20:15]</kbd> <code><shashankg></code> There was a mail on soc2014 students. It had the deadlines for all blog posts<br/>
<kbd>[03:20:24]</kbd> <code><shashankg></code> let me look for it.<br/>
<kbd>[06:43:11]</kbd> <strong>[disconnected at Thu Jun 19 06:43:11 2014]</strong><br/>
</div>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js'></script>
<script src='//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js'>
</script>
</body>
</html><br/>