-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscratchpad.txt
67 lines (38 loc) · 1.65 KB
/
scratchpad.txt
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
<<<<<<< HEAD
<!-- <span <%= "id='content-form-#{path.id}' style='display:none, inline'" if path %> > -->
<%= form_tag(inkling_proxy_new_path, :class => "tree-form") do %>
<%= select_tag(:content_type,
options_for_select(@content_types.collect{|c| [ c.friendly_name, c.to_s]}.insert(0, ["",""]),
:onchange=>"this.form.submit()") %>
<% end %>
<!-- </span> -->
=======
Milestones
0 - 20%
1 - 25%
2 - 20%
3 - 20%
4 - 15%
--
idea for defining permissions.
can permission_action content_type
tables: permission_actions, content_types, roles, permissions
permissions:
permission_action_id, content_type_id, role_id
>>>>>>> f5361c41e2af3727fa6a133c73b863d8da7f0968
Project: Error Mirror / Divide the Problem Space
Problem
---
Error messages are often underutilized and unshared. Programmers often struggle to share this sort of information.
If you encounter a strange error you often follow these steps:
1. Google it.
2. Hunt down various web pages linked via google - to lighthouse or wherever.
3. Ask a teammate, etc..
4. Debug.
Solution
---
Instead of this you should be able to push your error info to a central service and have it tell you about it (if it can). Are other devs elsewhere battling the same problem at the same time? etc.
There could be trending errors. Errors linking back to lighthouse. Error statistics (which library in the entire ruby space has attracted the most errors?!), etc..
Plan
---
We'd need to think about statistics, how to use error info in a social way. There are some very strange errors floating around in the rails space, and thinking of fun ways to classify errors would be great.