pilha 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. data/lib/pilha.rb +7 -10
  2. data/lib/pilha/stack_overflow/answer.rb +7 -8
  3. data/lib/pilha/stack_overflow/badge.rb +8 -6
  4. data/lib/pilha/stack_overflow/base.rb +27 -0
  5. data/lib/pilha/stack_overflow/comment.rb +21 -9
  6. data/lib/pilha/stack_overflow/question.rb +41 -0
  7. data/lib/pilha/stack_overflow/statistics.rb +7 -6
  8. data/lib/pilha/stack_overflow/user.rb +5 -8
  9. data/pilha.gemspec +8 -21
  10. data/spec/fixtures/answer_comments.json +37 -0
  11. data/spec/fixtures/answers_by_question_id.json +430 -0
  12. data/spec/fixtures/answers_by_question_id.json.gz +0 -0
  13. data/spec/fixtures/badges_name.json +400 -0
  14. data/spec/fixtures/badges_name.json.gz +0 -0
  15. data/spec/fixtures/comments_by_mentioned_user_id.json +117 -0
  16. data/spec/fixtures/comments_by_mentioned_user_id.json.gz +0 -0
  17. data/spec/fixtures/comments_by_question_id.json +22 -0
  18. data/spec/fixtures/comments_by_question_id.json.gz +0 -0
  19. data/spec/fixtures/comments_by_user_id.json +464 -0
  20. data/spec/fixtures/comments_by_user_id.json.gz +0 -0
  21. data/spec/fixtures/comments_by_user_id_to_mentioned_user_id.json.gz +0 -0
  22. data/spec/fixtures/comments_by_user_to_mentioned_user.json +29 -0
  23. data/spec/fixtures/comments_by_user_to_mentioned_user.json.gz +0 -0
  24. data/spec/fixtures/comments_by_user_to_mentioned_user_id.json.gz +0 -0
  25. data/spec/fixtures/question_by_id.json +162 -0
  26. data/spec/fixtures/question_by_id.json.gz +0 -0
  27. data/spec/fixtures/question_by_id_with_body.json +169 -0
  28. data/spec/fixtures/question_by_id_with_body.json.gz +0 -0
  29. data/spec/fixtures/question_by_user_id.json.gz +0 -0
  30. data/spec/fixtures/questions.json +1773 -0
  31. data/spec/fixtures/questions.json.gz +0 -0
  32. data/spec/fixtures/questions.part +859 -0
  33. data/spec/fixtures/questions_by_user_id.json +35 -0
  34. data/spec/fixtures/questions_by_user_id.json.gz +0 -0
  35. data/spec/fixtures/users.json +983 -0
  36. data/spec/fixtures/users_by_id.json +40 -0
  37. data/spec/fixtures/users_by_id.json.gz +0 -0
  38. data/spec/pilha/stack_overflow/badge_spec.rb +3 -3
  39. data/spec/pilha/stack_overflow/comment_spec.rb +52 -1
  40. data/spec/pilha/stack_overflow/question_spec.rb +63 -0
  41. data/spec/pilha/stack_overflow/stack_overflow_spec.rb +2 -4
  42. data/spec/spec_helper.rb +7 -1
  43. metadata +53 -22
@@ -0,0 +1,35 @@
1
+ {
2
+ "total": 1,
3
+ "page": 1,
4
+ "pagesize": 30,
5
+ "questions": [
6
+ {
7
+ "tags": [
8
+ "c++",
9
+ "gcc"
10
+ ],
11
+ "answer_count": 3,
12
+ "accepted_answer_id": 267415,
13
+ "favorite_count": 1,
14
+ "question_timeline_url": "/questions/267248/timeline",
15
+ "question_comments_url": "/questions/267248/comments",
16
+ "question_answers_url": "/questions/267248/answers",
17
+ "question_id": 267248,
18
+ "owner": {
19
+ "user_id": 333,
20
+ "user_type": "registered",
21
+ "display_name": "Edward Luong",
22
+ "reputation": 67,
23
+ "email_hash": "ba07b97b203bfa3dbee2bac70ddf380c"
24
+ },
25
+ "creation_date": 1225930514,
26
+ "last_activity_date": 1225938787,
27
+ "up_vote_count": 2,
28
+ "down_vote_count": 0,
29
+ "view_count": 266,
30
+ "score": 2,
31
+ "community_owned": false,
32
+ "title": "Getting rid of gcc shift by negative warning"
33
+ }
34
+ ]
35
+ }
@@ -0,0 +1,983 @@
1
+ {
2
+ "total": 180476,
3
+ "page": 1,
4
+ "pagesize": 30,
5
+ "users": [
6
+ {
7
+ "user_id": 22656,
8
+ "user_type": "registered",
9
+ "creation_date": 1222430705,
10
+ "display_name": "Jon Skeet",
11
+ "reputation": 179856,
12
+ "email_hash": "6d8ebb117e8d83d74ea95fbdd0f87e13",
13
+ "age": 33,
14
+ "last_access_date": 1274966276,
15
+ "website_url": "http://pobox.com/~skeet/csharp",
16
+ "location": "Reading, UK",
17
+ "about_me": "<p>\r\nAuthor of <a href=\"http://www.amazon.com/dp/1933988363\" rel=\"nofollow\">C# in Depth</a>.<br>\r\nCurrently a software engineer at Google, London.<br>\r\nMicrosoft MVP (C#, 2003 onwards)\r\n</p>\r\nSites:\r\n<ul>\r\n<li><a href=\"http://csharpindepth.com\" rel=\"nofollow\">C# in Depth</a>\r\n<li><a href=\"http://msmvps.com/jon.skeet\" rel=\"nofollow\">Coding blog</a>\r\n<li><a href=\"http://pobox.com/~skeet/csharp\" rel=\"nofollow\">C# articles</a>\r\n<li><a href=\"http://twitter.com/jonskeet\" rel=\"nofollow\">Twitter updates</a>\r\n</ul>\r\nEmail: skeet@pobox.com",
18
+ "question_count": 21,
19
+ "answer_count": 8265,
20
+ "view_count": 121730,
21
+ "up_vote_count": 5904,
22
+ "down_vote_count": 266,
23
+ "accept_rate": 86,
24
+ "user_questions_url": "/users/22656/questions",
25
+ "user_answers_url": "/users/22656/answers",
26
+ "user_favorites_url": "/users/22656/favorites",
27
+ "user_tags_url": "/users/22656/tags",
28
+ "user_badges_url": "/users/22656/badges",
29
+ "user_timeline_url": "/users/22656/timeline",
30
+ "user_mentioned_url": "/users/22656/mentioned",
31
+ "user_comments_url": "/users/22656/comments",
32
+ "user_reputation_url": "/users/22656/reputation",
33
+ "badge_counts": {
34
+ "gold": 33,
35
+ "silver": 645,
36
+ "bronze": 1241
37
+ }
38
+ },
39
+ {
40
+ "user_id": 23354,
41
+ "user_type": "moderator",
42
+ "creation_date": 1222667162,
43
+ "display_name": "Marc Gravell",
44
+ "reputation": 144249,
45
+ "email_hash": "b4ae7f8b50a2c32287e456394570679e",
46
+ "age": 31,
47
+ "last_access_date": 1274967486,
48
+ "website_url": "http://marcgravell.blogspot.com/",
49
+ "location": "UK",
50
+ "about_me": "<p>e-mail: marc.gravell@gmail.com<br/>\r\nblog: http://marcgravell.blogspot.com</p>\r\n<p>C# programmer and MVP, with a keen interest in all things code.\r\n<p>Timezone: GMT</p>\r\nParticular areas:<ul>\r\n<li>C# language specifics\r\n<li>LINQ (including EF, L2S, ADO.NET Data Services)\r\n<li><a href=\"http://code.google.com/p/protobuf-net/\" rel=\"nofollow\">Protocol Buffers</a>\r\n<li>Expression (the LINQ one, not Blend)\r\n<li>TSQL / SQL Server general\r\n<li>xslt\r\n<li>ASP.NET MVC (but not regular ASP.NET)\r\n<li>WinForms\r\n<li>Bespoke runtime object models (TypeDescriptor)\r\n</ul></p>\r\n<p>All original code samples I post here are given freely to the public domain on an \"as is\" basis, but no warranty is given (implied or assumed) etc - you know the drill...</p>",
51
+ "question_count": 20,
52
+ "answer_count": 5489,
53
+ "view_count": 29316,
54
+ "up_vote_count": 8331,
55
+ "down_vote_count": 451,
56
+ "accept_rate": 94,
57
+ "user_questions_url": "/users/23354/questions",
58
+ "user_answers_url": "/users/23354/answers",
59
+ "user_favorites_url": "/users/23354/favorites",
60
+ "user_tags_url": "/users/23354/tags",
61
+ "user_badges_url": "/users/23354/badges",
62
+ "user_timeline_url": "/users/23354/timeline",
63
+ "user_mentioned_url": "/users/23354/mentioned",
64
+ "user_comments_url": "/users/23354/comments",
65
+ "user_reputation_url": "/users/23354/reputation",
66
+ "badge_counts": {
67
+ "gold": 10,
68
+ "silver": 239,
69
+ "bronze": 386
70
+ }
71
+ },
72
+ {
73
+ "user_id": 18393,
74
+ "user_type": "registered",
75
+ "creation_date": 1221783887,
76
+ "display_name": "cletus",
77
+ "reputation": 112225,
78
+ "email_hash": "2f364c2e36b52bc80296cbf23da8b231",
79
+ "age": 37,
80
+ "last_access_date": 1274967585,
81
+ "website_url": "http://www.cforcoding.com",
82
+ "location": "AU",
83
+ "about_me": "<p>I am a software developer from Perth, Western Australia with roughly 13 years experience in developing end-to-end solutions in <b>Java, C#, C, C++, Perl, PHP and HTML/CSS/Javascript</b>.</p>\r\n\r\n<p>I have experience in developing user interfaces (Web and desktop), database design and development (Oracle, SQL Server, MySQL), data modelling, software design, data conversion, Web application development and high-performance high-availability computing.</p>\r\n\r\n<p>I have recently started a blog I call <a href=\"http://www.cforcoding.com\" rel=\"nofollow\">C for Coding</a>. Come check it out!</p>\r\n",
84
+ "question_count": 62,
85
+ "answer_count": 3134,
86
+ "view_count": 12583,
87
+ "up_vote_count": 2018,
88
+ "down_vote_count": 382,
89
+ "accept_rate": 81,
90
+ "user_questions_url": "/users/18393/questions",
91
+ "user_answers_url": "/users/18393/answers",
92
+ "user_favorites_url": "/users/18393/favorites",
93
+ "user_tags_url": "/users/18393/tags",
94
+ "user_badges_url": "/users/18393/badges",
95
+ "user_timeline_url": "/users/18393/timeline",
96
+ "user_mentioned_url": "/users/18393/mentioned",
97
+ "user_comments_url": "/users/18393/comments",
98
+ "user_reputation_url": "/users/18393/reputation",
99
+ "badge_counts": {
100
+ "gold": 15,
101
+ "silver": 155,
102
+ "bronze": 307
103
+ }
104
+ },
105
+ {
106
+ "user_id": 12950,
107
+ "user_type": "registered",
108
+ "creation_date": 1221582134,
109
+ "display_name": "tvanfosson",
110
+ "reputation": 108761,
111
+ "email_hash": "fb599bac7c1f602a2ea455951d6da209",
112
+ "age": 47,
113
+ "last_access_date": 1274966224,
114
+ "website_url": "http://farm-fresh-code.blogspot.com",
115
+ "location": "Iowa City, IA",
116
+ "about_me": "<p>\r\nWeb developer using primarily .NET/C#, though I've also done some Java, Ruby, C++ as well. Sysadmin\r\nfor nearly 20 years before my current gig doing\r\na fair amount of coding, though.\r\n</p>\r\n<p>\r\n<a href=\"http://farm-fresh-code.blogspot.com\" rel=\"nofollow\">Blog</a><br />\r\n<a href=\"http://careers.stackoverflow.com/tvanfosson\" rel=\"nofollow\">CV</a>\r\n(no recruiters please)<br/>\r\n<a href=\"http://myweb.uiowa.edu/timv\" rel=\"nofollow\">Academic Page</a></p>\r\n<p>\r\nPlease do refer to me as <b>tv</b> when replying to comments, etc.</p>\r\n\r\n<p><em>The competent programmer is fully aware of the strictly limited size of his own skull; therefore he approaches the programming task in full humility, and among other things he avoids clever tricks like the plague.</em> -- E.W. Dijkstra, <a href=\"http://www.cs.utexas.edu/~EWD/transcriptions/EWD03xx/EWD340.html\" rel=\"nofollow\">The Humble Programmer</a>\r\n</p>\r\n",
117
+ "question_count": 43,
118
+ "answer_count": 4253,
119
+ "view_count": 10704,
120
+ "up_vote_count": 3702,
121
+ "down_vote_count": 266,
122
+ "accept_rate": 92,
123
+ "user_questions_url": "/users/12950/questions",
124
+ "user_answers_url": "/users/12950/answers",
125
+ "user_favorites_url": "/users/12950/favorites",
126
+ "user_tags_url": "/users/12950/tags",
127
+ "user_badges_url": "/users/12950/badges",
128
+ "user_timeline_url": "/users/12950/timeline",
129
+ "user_mentioned_url": "/users/12950/mentioned",
130
+ "user_comments_url": "/users/12950/comments",
131
+ "user_reputation_url": "/users/12950/reputation",
132
+ "badge_counts": {
133
+ "gold": 8,
134
+ "silver": 87,
135
+ "bronze": 182
136
+ }
137
+ },
138
+ {
139
+ "user_id": 95810,
140
+ "user_type": "registered",
141
+ "creation_date": 1240625354,
142
+ "display_name": "Alex Martelli",
143
+ "reputation": 106392,
144
+ "email_hash": "e8d5fe90f1fe2148bf130cccd4dc311c",
145
+ "age": 54,
146
+ "last_access_date": 1274938215,
147
+ "website_url": "http://www.aleax.it",
148
+ "location": "Palo Alto, CA",
149
+ "about_me": "Lots of info about me is on my <a href=\"http://www.google.com/profiles/aleaxit\" rel=\"nofollow\">Google Profile</a> and links therefrom, and some on my <a href=\"http://wiki.python.org/moin/AlexMartelli\" rel=\"nofollow\">Python Wiki Homepage</a>.\r\n<p>\r\nI spotted a recent SO-related <a href=\"http://twitter.com/justinlilly/status/9431196596\" rel=\"nofollow\">tweet</a> about me at Pycon. The \"is a machine\" bit there is <a href=\"http://www.google.com/search?q=martellibot\" rel=\"nofollow\">not new</a>, but I think it's the first time that comment has been elicited by observing me in real life, as opposed to reading my posts &c;-).\r\n\r\n\r\n",
150
+ "question_count": 5,
151
+ "answer_count": 4441,
152
+ "view_count": 13823,
153
+ "up_vote_count": 493,
154
+ "down_vote_count": 31,
155
+ "accept_rate": 100,
156
+ "user_questions_url": "/users/95810/questions",
157
+ "user_answers_url": "/users/95810/answers",
158
+ "user_favorites_url": "/users/95810/favorites",
159
+ "user_tags_url": "/users/95810/tags",
160
+ "user_badges_url": "/users/95810/badges",
161
+ "user_timeline_url": "/users/95810/timeline",
162
+ "user_mentioned_url": "/users/95810/mentioned",
163
+ "user_comments_url": "/users/95810/comments",
164
+ "user_reputation_url": "/users/95810/reputation",
165
+ "badge_counts": {
166
+ "gold": 5,
167
+ "silver": 103,
168
+ "bronze": 248
169
+ }
170
+ },
171
+ {
172
+ "user_id": 23283,
173
+ "user_type": "registered",
174
+ "creation_date": 1222642783,
175
+ "display_name": "JaredPar",
176
+ "reputation": 97224,
177
+ "email_hash": "529ba429a58902bef56c2fcb672d5ccb",
178
+ "age": 29,
179
+ "last_access_date": 1274624752,
180
+ "website_url": "http://blogs.msdn.com/jaredpar",
181
+ "location": "Redmond, WA",
182
+ "about_me": "<pre>Blog - <a href=\"http://blogs.msdn.com/jaredpar\" rel=\"nofollow\">http://blogs.msdn.com/jaredpar\r\n</a>\r\nTwitter - <a href=\"http://twitter.com/jaredpar\" rel=\"nofollow\">http://twitter.com/jaredpar</a></pre><p>Check out my .Net Utility Library on code gallery: <a href=\"http://code.msdn.microsoft.com/BclExtras\" rel=\"nofollow\">BclExtras</a></p>",
183
+ "question_count": 7,
184
+ "answer_count": 3263,
185
+ "view_count": 10359,
186
+ "up_vote_count": 4248,
187
+ "down_vote_count": 62,
188
+ "accept_rate": 80,
189
+ "user_questions_url": "/users/23283/questions",
190
+ "user_answers_url": "/users/23283/answers",
191
+ "user_favorites_url": "/users/23283/favorites",
192
+ "user_tags_url": "/users/23283/tags",
193
+ "user_badges_url": "/users/23283/badges",
194
+ "user_timeline_url": "/users/23283/timeline",
195
+ "user_mentioned_url": "/users/23283/mentioned",
196
+ "user_comments_url": "/users/23283/comments",
197
+ "user_reputation_url": "/users/23283/reputation",
198
+ "badge_counts": {
199
+ "gold": 13,
200
+ "silver": 170,
201
+ "bronze": 325
202
+ }
203
+ },
204
+ {
205
+ "user_id": 893,
206
+ "user_type": "registered",
207
+ "creation_date": 1218356820,
208
+ "display_name": "Greg Hewgill",
209
+ "reputation": 92156,
210
+ "email_hash": "747ffa5da3538e66840ebc0548b8fd58",
211
+ "age": 40,
212
+ "last_access_date": 1274961384,
213
+ "website_url": "http://hewgill.com",
214
+ "location": "Christchurch, New Zealand",
215
+ "about_me": "Software geek.",
216
+ "question_count": 17,
217
+ "answer_count": 2404,
218
+ "view_count": 10145,
219
+ "up_vote_count": 3120,
220
+ "down_vote_count": 291,
221
+ "accept_rate": 100,
222
+ "user_questions_url": "/users/893/questions",
223
+ "user_answers_url": "/users/893/answers",
224
+ "user_favorites_url": "/users/893/favorites",
225
+ "user_tags_url": "/users/893/tags",
226
+ "user_badges_url": "/users/893/badges",
227
+ "user_timeline_url": "/users/893/timeline",
228
+ "user_mentioned_url": "/users/893/mentioned",
229
+ "user_comments_url": "/users/893/comments",
230
+ "user_reputation_url": "/users/893/reputation",
231
+ "badge_counts": {
232
+ "gold": 14,
233
+ "silver": 193,
234
+ "bronze": 291
235
+ }
236
+ },
237
+ {
238
+ "user_id": 33708,
239
+ "user_type": "registered",
240
+ "creation_date": 1225734065,
241
+ "display_name": "Mehrdad Afshari",
242
+ "reputation": 85845,
243
+ "email_hash": "df0bd8a818111607704dab056fcfc091",
244
+ "age": 20,
245
+ "last_access_date": 1274963318,
246
+ "website_url": "http://mehrdadafshari.com",
247
+ "location": "Tehran, Iran",
248
+ "about_me": "",
249
+ "question_count": 9,
250
+ "answer_count": 2187,
251
+ "view_count": 14576,
252
+ "up_vote_count": 1662,
253
+ "down_vote_count": 664,
254
+ "accept_rate": 83,
255
+ "user_questions_url": "/users/33708/questions",
256
+ "user_answers_url": "/users/33708/answers",
257
+ "user_favorites_url": "/users/33708/favorites",
258
+ "user_tags_url": "/users/33708/tags",
259
+ "user_badges_url": "/users/33708/badges",
260
+ "user_timeline_url": "/users/33708/timeline",
261
+ "user_mentioned_url": "/users/33708/mentioned",
262
+ "user_comments_url": "/users/33708/comments",
263
+ "user_reputation_url": "/users/33708/reputation",
264
+ "badge_counts": {
265
+ "gold": 12,
266
+ "silver": 197,
267
+ "bronze": 304
268
+ }
269
+ },
270
+ {
271
+ "user_id": 14860,
272
+ "user_type": "registered",
273
+ "creation_date": 1221622605,
274
+ "display_name": "paxdiablo",
275
+ "reputation": 84722,
276
+ "email_hash": "a6e7ad8582ac390cd668b2b0d6b3058c",
277
+ "last_access_date": 1274964344,
278
+ "website_url": "",
279
+ "location": "",
280
+ "about_me": "",
281
+ "question_count": 53,
282
+ "answer_count": 2493,
283
+ "view_count": 7909,
284
+ "up_vote_count": 1332,
285
+ "down_vote_count": 666,
286
+ "accept_rate": 100,
287
+ "user_questions_url": "/users/14860/questions",
288
+ "user_answers_url": "/users/14860/answers",
289
+ "user_favorites_url": "/users/14860/favorites",
290
+ "user_tags_url": "/users/14860/tags",
291
+ "user_badges_url": "/users/14860/badges",
292
+ "user_timeline_url": "/users/14860/timeline",
293
+ "user_mentioned_url": "/users/14860/mentioned",
294
+ "user_comments_url": "/users/14860/comments",
295
+ "user_reputation_url": "/users/14860/reputation",
296
+ "badge_counts": {
297
+ "gold": 8,
298
+ "silver": 88,
299
+ "bronze": 225
300
+ }
301
+ },
302
+ {
303
+ "user_id": 10661,
304
+ "user_type": "registered",
305
+ "creation_date": 1221526075,
306
+ "display_name": "S.Lott",
307
+ "reputation": 84495,
308
+ "email_hash": "c2c732bbf13dc96670b210b3c0c1ead5",
309
+ "age": 53,
310
+ "last_access_date": 1274753854,
311
+ "website_url": "http://slott-softwarearchitect.blogspot.com/",
312
+ "location": "Norfolk, VA",
313
+ "about_me": "Software Architect, aspiring writer. Programmer for well over 30 years, about 70% of my working life.\r\n\r\nBlog:\r\n<a href=\"http://slott-softwarearchitect.blogspot.com/\" rel=\"nofollow\">\r\nS.Lott-Software Architect</a>.\r\n\r\nBooks: <a href=\"http://homepage.mac.com/s_lott/books/python.html\" rel=\"nofollow\">Building Skills in Python</a>.\r\n\r\nTechnorati: <a href=\"http://www.technorati.com/people/technorati/slott\" rel=\"nofollow\">SLott</a>.\r\n\r\nLinkedIn: <a href=\"http://www.linkedin.com/pub/0/835/29\" rel=\"nofollow\">Profile</a>.",
314
+ "question_count": 15,
315
+ "answer_count": 2884,
316
+ "view_count": 11693,
317
+ "up_vote_count": 5275,
318
+ "down_vote_count": 515,
319
+ "accept_rate": 92,
320
+ "user_questions_url": "/users/10661/questions",
321
+ "user_answers_url": "/users/10661/answers",
322
+ "user_favorites_url": "/users/10661/favorites",
323
+ "user_tags_url": "/users/10661/tags",
324
+ "user_badges_url": "/users/10661/badges",
325
+ "user_timeline_url": "/users/10661/timeline",
326
+ "user_mentioned_url": "/users/10661/mentioned",
327
+ "user_comments_url": "/users/10661/comments",
328
+ "user_reputation_url": "/users/10661/reputation",
329
+ "badge_counts": {
330
+ "gold": 4,
331
+ "silver": 78,
332
+ "bronze": 201
333
+ }
334
+ },
335
+ {
336
+ "user_id": 6309,
337
+ "user_type": "registered",
338
+ "creation_date": 1221344553,
339
+ "display_name": "VonC",
340
+ "reputation": 81887,
341
+ "email_hash": "7aa22372b695ed2b26052c340f9097eb",
342
+ "age": 39,
343
+ "last_access_date": 1274967299,
344
+ "website_url": "http://stackoverflow.com/search?q=user%3a6309&tab=newest",
345
+ "location": "France",
346
+ "about_me": "<img src=\"http://opensolaris.org/os/community/storage/os-admin-icon.jpg\" width=\"20\" /> <b><a href=\"http://stackoverflow.com/questions/645008#645771\">System Configuration Management</a> Administrator</b> (<a href=\"http://stackoverflow.com/questions/176858\">ClearCase</a>, <a href=\"http://stackoverflow.com/questions/81361\">SVN</a>, <a href=\"http://stackoverflow.com/questions/928646#930495\">Git</a>), defining various <a href=\"http://stackoverflow.com/questions/216212#216228\">merge workflows</a> between <a href=\"http://stackoverflow.com/questions/2100829#2107672\">branches</a>.<br /><br />\r\n<b><a href=\"http://stackoverflow.com/questions/212270#212362\"><img src=\"http://opensolaris.org/os/community/storage/os-developer-icon.jpg\" width=\"20\" /> Development Architect</a></b>, which involves:\r\n<ul>\r\n<li>tools support around <a href=\"http://stackoverflow.com/questions/239560#239598\">java</a> <a href=\"http://stackoverflow.com/questions/198577#198651\">technologies</a>, including <a href=\"http://stackoverflow.com/questions/237987#238042\">eclipse</a>.</li>\r\n<li>code quality evaluation, including <a href=\"http://stackoverflow.com/questions/187289#187330\">metrics definitions</a>, and <a href=\"http://stackoverflow.com/questions/207652#207699\">code static tools</a> for <b><a href=\"http://stackoverflow.com/questions/195887#195932\">different populations</a></b>.</li>\r\n</ul>\r\nI enjoy at times a <b><a href=\"http://meta.stackoverflow.com/questions/34527\"><i>practical</i> code-challenge <img src=\"http://opensolaris.org/images/srcbrowse.gif\" width=\"20\" /></a></b> <br />(i.e: no code-golf!).<br />\r\n\r\nI dislike <a href=\"http://stackoverflow.com/questions/238177#238191\">bad GUI <img src=\"http://opensolaris.org/images/communities.gif\" width=\"20\" /></a>...",
347
+ "question_count": 12,
348
+ "answer_count": 2919,
349
+ "view_count": 5365,
350
+ "up_vote_count": 5338,
351
+ "down_vote_count": 58,
352
+ "accept_rate": 100,
353
+ "user_questions_url": "/users/6309/questions",
354
+ "user_answers_url": "/users/6309/answers",
355
+ "user_favorites_url": "/users/6309/favorites",
356
+ "user_tags_url": "/users/6309/tags",
357
+ "user_badges_url": "/users/6309/badges",
358
+ "user_timeline_url": "/users/6309/timeline",
359
+ "user_mentioned_url": "/users/6309/mentioned",
360
+ "user_comments_url": "/users/6309/comments",
361
+ "user_reputation_url": "/users/6309/reputation",
362
+ "badge_counts": {
363
+ "gold": 9,
364
+ "silver": 73,
365
+ "bronze": 150
366
+ }
367
+ },
368
+ {
369
+ "user_id": 65358,
370
+ "user_type": "registered",
371
+ "creation_date": 1234398071,
372
+ "display_name": "Reed Copsey",
373
+ "reputation": 78473,
374
+ "email_hash": "9b76f4dcc49420ee7053cb146e2571ad",
375
+ "age": 33,
376
+ "last_access_date": 1274895987,
377
+ "website_url": "http://www.reedcopsey.com",
378
+ "location": "Bellingham, WA",
379
+ "about_me": "<p>CTO - C Tech Development Corp.</p>\r\n\r\n<p>Microsoft MVP - Visual C#, 2010</p>\r\n\r\n<p>I've been programming professionally for about 10 years, most recently with a focus on C++ and C#.</p>\r\n",
380
+ "question_count": 12,
381
+ "answer_count": 2635,
382
+ "view_count": 4419,
383
+ "up_vote_count": 1273,
384
+ "down_vote_count": 37,
385
+ "accept_rate": 100,
386
+ "user_questions_url": "/users/65358/questions",
387
+ "user_answers_url": "/users/65358/answers",
388
+ "user_favorites_url": "/users/65358/favorites",
389
+ "user_tags_url": "/users/65358/tags",
390
+ "user_badges_url": "/users/65358/badges",
391
+ "user_timeline_url": "/users/65358/timeline",
392
+ "user_mentioned_url": "/users/65358/mentioned",
393
+ "user_comments_url": "/users/65358/comments",
394
+ "user_reputation_url": "/users/65358/reputation",
395
+ "badge_counts": {
396
+ "gold": 5,
397
+ "silver": 71,
398
+ "bronze": 161
399
+ }
400
+ },
401
+ {
402
+ "user_id": 69307,
403
+ "user_type": "registered",
404
+ "creation_date": 1233964076,
405
+ "display_name": "Neil Butterworth",
406
+ "reputation": 77572,
407
+ "email_hash": "e3feb4a109e9711d03866dede15ee8f8",
408
+ "last_access_date": 1274966223,
409
+ "location": "London, UK",
410
+ "about_me": "I'm a software developer (currently resting), living in the earthly paradise that is North London, UK.\r\n<br><br>\r\nI have a programming-oriented blog at <a href=\"http://punchlet.wordpress.com\" rel=\"nofollow\">The Punchtape Letters</a>\r\n<br><br>\r\nTo keep my few remaining brain cells working, I've released (nearly) <a href=\"http://code.google.com/p/csvfix/\" rel=\"nofollow\">CSVfix</a>, a FOSS CSV stream editor. \r\n<br><br>\r\nI'm currently working on <a href=\"http://code.google.com/p/csvtest\" rel=\"nofollow\">CSVTest</a>, a test-data generator. Both this and CSVfix are written in C++, my favourite language.",
411
+ "question_count": 20,
412
+ "answer_count": 3184,
413
+ "view_count": 14368,
414
+ "up_vote_count": 2772,
415
+ "down_vote_count": 3276,
416
+ "accept_rate": 76,
417
+ "user_questions_url": "/users/69307/questions",
418
+ "user_answers_url": "/users/69307/answers",
419
+ "user_favorites_url": "/users/69307/favorites",
420
+ "user_tags_url": "/users/69307/tags",
421
+ "user_badges_url": "/users/69307/badges",
422
+ "user_timeline_url": "/users/69307/timeline",
423
+ "user_mentioned_url": "/users/69307/mentioned",
424
+ "user_comments_url": "/users/69307/comments",
425
+ "user_reputation_url": "/users/69307/reputation",
426
+ "badge_counts": {
427
+ "gold": 10,
428
+ "silver": 122,
429
+ "bronze": 293
430
+ }
431
+ },
432
+ {
433
+ "user_id": 5445,
434
+ "user_type": "registered",
435
+ "creation_date": 1220976258,
436
+ "display_name": "CMS",
437
+ "reputation": 77249,
438
+ "email_hash": "932fb89b9d4049cec5cba357bf0ae388",
439
+ "age": 25,
440
+ "last_access_date": 1274966798,
441
+ "website_url": "http://codingspot.com",
442
+ "location": "Guatemala",
443
+ "about_me": "My name is Christian C. Salvadó and I am a Web Developer working and living in <a href=\"http://www.flickr.com/search/?q=Antigua+Guatemala\" rel=\"nofollow\">Guatemala</a>, Central America.\r\n<br/>\r\n<br/>\r\n<h2>My interests:</h2>\r\n\r\n<img src=\"http://dl.dropbox.com/u/35146/stackoverflow/tagcloud4.png\"/>\r\n\r\n<a href=\"http://github.com/cms\" rel=\"nofollow\"><img src=\"https://git.wiki.kernel.org/images-git/3/33/Git-gui-16x16.png\" /></a><a href=\"http://twitter.com/cmsalvado/\" rel=\"nofollow\"><img src=\"http://friendfeed.com/static/images/icons/twitter.png\"/></a> <a href=\"http://friendfeed.com/cms/\" rel=\"nofollow\"><img src=\"http://friendfeed.com/static/images/icons/internal.png\"/></a> <a href=\"http://last.fm/user/cmsalvado/\" rel=\"nofollow\"><img src=\"http://friendfeed.com/static/images/icons/lastfm.png\"/></a> \r\n<hr/>",
444
+ "question_count": 0,
445
+ "answer_count": 1979,
446
+ "view_count": 5857,
447
+ "up_vote_count": 430,
448
+ "down_vote_count": 5,
449
+ "user_questions_url": "/users/5445/questions",
450
+ "user_answers_url": "/users/5445/answers",
451
+ "user_favorites_url": "/users/5445/favorites",
452
+ "user_tags_url": "/users/5445/tags",
453
+ "user_badges_url": "/users/5445/badges",
454
+ "user_timeline_url": "/users/5445/timeline",
455
+ "user_mentioned_url": "/users/5445/mentioned",
456
+ "user_comments_url": "/users/5445/comments",
457
+ "user_reputation_url": "/users/5445/reputation",
458
+ "badge_counts": {
459
+ "gold": 5,
460
+ "silver": 82,
461
+ "bronze": 154
462
+ }
463
+ },
464
+ {
465
+ "user_id": 3043,
466
+ "user_type": "registered",
467
+ "creation_date": 1219757054,
468
+ "display_name": "Joel Coehoorn",
469
+ "reputation": 76967,
470
+ "email_hash": "61d2a0f034915fa9d2acd6f6b145bba8",
471
+ "age": 29,
472
+ "last_access_date": 1274966289,
473
+ "website_url": "http://jcoehoorn.dyndns.org",
474
+ "location": "WI",
475
+ "about_me": "<p>\r\n 2009 Microsoft ASP.Net MVP\r\n</p>\r\n<p>It's pronounced: koo-horn</p>\r\n<p>\r\n<br/><a href=\"http://www.google.com/coop/cse?cx=018205968162215846785:7n6ajnwyz-i\" rel=\"nofollow\">\r\nSearch StackOverflow</a>\r\n<br/><a href=\"http://www.google.com/coop/cse?cx=018205968162215846785:zeur6t7rqb8\" rel=\"nofollow\">Search MSDN</a>\r\n<p>\r\nThe avatar is both because I play counter strike and a nod to lambda expressions in C#.",
476
+ "question_count": 100,
477
+ "answer_count": 3139,
478
+ "view_count": 12945,
479
+ "up_vote_count": 5791,
480
+ "down_vote_count": 378,
481
+ "accept_rate": 65,
482
+ "user_questions_url": "/users/3043/questions",
483
+ "user_answers_url": "/users/3043/answers",
484
+ "user_favorites_url": "/users/3043/favorites",
485
+ "user_tags_url": "/users/3043/tags",
486
+ "user_badges_url": "/users/3043/badges",
487
+ "user_timeline_url": "/users/3043/timeline",
488
+ "user_mentioned_url": "/users/3043/mentioned",
489
+ "user_comments_url": "/users/3043/comments",
490
+ "user_reputation_url": "/users/3043/reputation",
491
+ "badge_counts": {
492
+ "gold": 11,
493
+ "silver": 129,
494
+ "bronze": 247
495
+ }
496
+ },
497
+ {
498
+ "user_id": 34509,
499
+ "user_type": "registered",
500
+ "creation_date": 1225845503,
501
+ "display_name": "Johannes Schaub - litb",
502
+ "reputation": 70521,
503
+ "email_hash": "31a1c40a45079decc7f5525d2a873481",
504
+ "age": 24,
505
+ "last_access_date": 1274966700,
506
+ "website_url": "http://bloglitb.blogspot.com",
507
+ "location": "Giessen, Germany",
508
+ "about_me": "I'm a hobby C++ programmer and student. I'm having fun at stackoverflow.com helping others and learning new ways of mastering programming.\r\n\r\nI do know a little C#/Java/Bash/Haskell too. My editor of choice is emacs. \r\n<p>\r\nFavourite answers:\r\n\r\n<ul>\r\n<li><a href=\"http://stackoverflow.com/questions/2425728/delete-operator-in-c/2425771#2425771\">Plain <code>new</code>, <code>new[]</code>, <code>delete</code> and <code>delete[]</code> in a nutshell.</a>\r\n<li><a href=\"http://stackoverflow.com/questions/2419650/c-c-macro-template-blackmagic-to-generate-unique-name/2419715#2419715\">Doing <code>RAII</code> the lazy way.</a>\r\n<li><a href=\"http://stackoverflow.com/questions/400951/c-foreach-or-similar/400970#400970\">C for-each over arrays.</a>\r\n<li><a href=\"http://stackoverflow.com/questions/28002/regular-cast-vs-static-cast-vs-dynamic-cast/1255015#1255015\"><code>static_cast</code>, <code>dynamic_cast</code> and <code>C</code> cast.</a>\r\n<li><a href=\"http://stackoverflow.com/questions/908830/isnt-cs-inline-totally-optional/910686#910686\"><code>inline</code> and the ODR in C++</a>, and <a href=\"http://stackoverflow.com/questions/2217628/multiple-definition-of-inline-functions-when-linking-static-libs/2218034#2218034\"><code>inline</code> in C99</a>\r\n</ul>",
509
+ "question_count": 7,
510
+ "answer_count": 1463,
511
+ "view_count": 11922,
512
+ "up_vote_count": 3403,
513
+ "down_vote_count": 525,
514
+ "accept_rate": 57,
515
+ "user_questions_url": "/users/34509/questions",
516
+ "user_answers_url": "/users/34509/answers",
517
+ "user_favorites_url": "/users/34509/favorites",
518
+ "user_tags_url": "/users/34509/tags",
519
+ "user_badges_url": "/users/34509/badges",
520
+ "user_timeline_url": "/users/34509/timeline",
521
+ "user_mentioned_url": "/users/34509/mentioned",
522
+ "user_comments_url": "/users/34509/comments",
523
+ "user_reputation_url": "/users/34509/reputation",
524
+ "badge_counts": {
525
+ "gold": 3,
526
+ "silver": 104,
527
+ "bronze": 265
528
+ }
529
+ },
530
+ {
531
+ "user_id": 53114,
532
+ "user_type": "moderator",
533
+ "creation_date": 1231452721,
534
+ "display_name": "Gumbo",
535
+ "reputation": 68980,
536
+ "email_hash": "cd501083459cbc21fccae78e2d03bee2",
537
+ "age": 25,
538
+ "last_access_date": 1274967483,
539
+ "website_url": "",
540
+ "location": "Trier, Germany",
541
+ "about_me": "",
542
+ "question_count": 7,
543
+ "answer_count": 2738,
544
+ "view_count": 5857,
545
+ "up_vote_count": 967,
546
+ "down_vote_count": 136,
547
+ "accept_rate": 100,
548
+ "user_questions_url": "/users/53114/questions",
549
+ "user_answers_url": "/users/53114/answers",
550
+ "user_favorites_url": "/users/53114/favorites",
551
+ "user_tags_url": "/users/53114/tags",
552
+ "user_badges_url": "/users/53114/badges",
553
+ "user_timeline_url": "/users/53114/timeline",
554
+ "user_mentioned_url": "/users/53114/mentioned",
555
+ "user_comments_url": "/users/53114/comments",
556
+ "user_reputation_url": "/users/53114/reputation",
557
+ "badge_counts": {
558
+ "gold": 4,
559
+ "silver": 53,
560
+ "bronze": 85
561
+ }
562
+ },
563
+ {
564
+ "user_id": 13302,
565
+ "user_type": "registered",
566
+ "creation_date": 1221588555,
567
+ "display_name": "marc_s",
568
+ "reputation": 66336,
569
+ "email_hash": "b4779212f57ff2e9549ea90a4499c2d7",
570
+ "age": 44,
571
+ "last_access_date": 1274966694,
572
+ "website_url": "http://adsi.mvps.org",
573
+ "location": "Switzerland",
574
+ "about_me": "<p>A Pascal/Delphi programmer and database freak at heart, I work as a C# developer on line-of-business applications (mostly ASP.NET).\r\n</p>\r\n<p>I'm interested mostly in distributed systems (WCF), database (design and SQL), and Active Directory.</p>\r\n<hr/>\r\n<p>\r\nI'm an MCTS for WCF, ADO.NET and ASP.NET - working on more :-)\r\n</p>\r\n<hr/>\r\ncatch me at mscheuner -at- gmail -dot- com if you need to :-)",
575
+ "question_count": 51,
576
+ "answer_count": 2964,
577
+ "view_count": 3569,
578
+ "up_vote_count": 4210,
579
+ "down_vote_count": 206,
580
+ "accept_rate": 100,
581
+ "user_questions_url": "/users/13302/questions",
582
+ "user_answers_url": "/users/13302/answers",
583
+ "user_favorites_url": "/users/13302/favorites",
584
+ "user_tags_url": "/users/13302/tags",
585
+ "user_badges_url": "/users/13302/badges",
586
+ "user_timeline_url": "/users/13302/timeline",
587
+ "user_mentioned_url": "/users/13302/mentioned",
588
+ "user_comments_url": "/users/13302/comments",
589
+ "user_reputation_url": "/users/13302/reputation",
590
+ "badge_counts": {
591
+ "gold": 7,
592
+ "silver": 27,
593
+ "bronze": 61
594
+ }
595
+ },
596
+ {
597
+ "user_id": 29407,
598
+ "user_type": "registered",
599
+ "creation_date": 1224432467,
600
+ "display_name": "Darin Dimitrov",
601
+ "reputation": 66164,
602
+ "email_hash": "e3a181e9cdd4757a8b416d93878770c5",
603
+ "age": 28,
604
+ "last_access_date": 1274966076,
605
+ "website_url": "http://stackoverflow.com/search?q=user%3a29407&tab=newest",
606
+ "location": "Rouen, France",
607
+ "about_me": "<p>Interested in software development, primary on the .NET Framework</p>\r\n\r\n<p>Email: darin.dimitrov [AT] gmail [DOT] com</p>\r\n<p>Occasionally I blog about <a href=\"http://www.bratched.com/\" rel=\"nofollow\">random .NET stuff</a></p>\r\n<p>A <a href=\"http://github.com/darind/samplemvc\" rel=\"nofollow\">sample ASP.NET MVC project structure</a> I've written</p>",
608
+ "question_count": 23,
609
+ "answer_count": 2974,
610
+ "view_count": 2441,
611
+ "up_vote_count": 1013,
612
+ "down_vote_count": 24,
613
+ "accept_rate": 100,
614
+ "user_questions_url": "/users/29407/questions",
615
+ "user_answers_url": "/users/29407/answers",
616
+ "user_favorites_url": "/users/29407/favorites",
617
+ "user_tags_url": "/users/29407/tags",
618
+ "user_badges_url": "/users/29407/badges",
619
+ "user_timeline_url": "/users/29407/timeline",
620
+ "user_mentioned_url": "/users/29407/mentioned",
621
+ "user_comments_url": "/users/29407/comments",
622
+ "user_reputation_url": "/users/29407/reputation",
623
+ "badge_counts": {
624
+ "gold": 4,
625
+ "silver": 31,
626
+ "bronze": 56
627
+ }
628
+ },
629
+ {
630
+ "user_id": 18936,
631
+ "user_type": "registered",
632
+ "creation_date": 1221683246,
633
+ "display_name": "bobince",
634
+ "reputation": 65926,
635
+ "email_hash": "3f6f1bea81a68b2f1cfe3efbb9be94bc",
636
+ "age": 33,
637
+ "last_access_date": 1274967224,
638
+ "website_url": "http://www.doxdesk.com/",
639
+ "location": "Bavaria, Germany",
640
+ "about_me": "<p>bobince (at) gmail [dot] com\r\n</p><p>\r\nHello! I'm a Brit in Germany. I make programs. Sometimes I make graphics. Sometimes I make security. All too often I have to do all of those together because of all these webs that people seem to like having. That pesky internet!\r\n</p><p>\r\nFavourite language (high level): Python\r\n</p><p>\r\nFavourite language (low level): ARM assembler\r\n</p><p>\r\nFavourite programming paradigm: functional\r\n</p><p>\r\nFavourite operating system: none of them, but grudgingly accept Linux because at least if I'm going to have to use an annoying OS I'd rather not add insult to injury by having to pay for the thing\r\n</p><p>\r\nFavourite metasyntactical variable: bof\r\n</p><p>\r\nFavourite SO tag: [unicode]\r\n</p><p>\r\nFavourite Unicode character: U+2615 HOT BEVERAGE\r\n</p><p>\r\nFavourite hot beverage: water with oestrogen and lemon. That's nice!\r\n</p><p>\r\nFavourite citrofortunella hybrid: limequat\r\n</p><p>\r\nFavourite fictional alliterative pontiff: His Holiness Pope Larry Lackapants IV\r\n</p>",
641
+ "question_count": 1,
642
+ "answer_count": 2646,
643
+ "view_count": 6551,
644
+ "up_vote_count": 2056,
645
+ "down_vote_count": 466,
646
+ "user_questions_url": "/users/18936/questions",
647
+ "user_answers_url": "/users/18936/answers",
648
+ "user_favorites_url": "/users/18936/favorites",
649
+ "user_tags_url": "/users/18936/tags",
650
+ "user_badges_url": "/users/18936/badges",
651
+ "user_timeline_url": "/users/18936/timeline",
652
+ "user_mentioned_url": "/users/18936/mentioned",
653
+ "user_comments_url": "/users/18936/comments",
654
+ "user_reputation_url": "/users/18936/reputation",
655
+ "badge_counts": {
656
+ "gold": 7,
657
+ "silver": 44,
658
+ "bronze": 82
659
+ }
660
+ },
661
+ {
662
+ "user_id": 1968,
663
+ "user_type": "registered",
664
+ "creation_date": 1219161561,
665
+ "display_name": "Konrad Rudolph",
666
+ "reputation": 65335,
667
+ "email_hash": "f9401202ab73e624cc82800b0fff1489",
668
+ "age": 25,
669
+ "last_access_date": 1274961054,
670
+ "website_url": "http://greengoo.de",
671
+ "location": "DE",
672
+ "about_me": "<p>I’m a <a href=\"http://stackoverflow.com/questions/104355/bioinformatics-job-opportunities\">bioinformatics</a> student at the <a href=\"http://mi.fu-berlin.de/\" rel=\"nofollow\">Freie Universität Berlin</a>.</p>\r\n\r\n<p>My programming interests span from C++ over .NET and dynamic languages all the way to XHMTL/CSS. I think in data structures and dream in <a href=\"http://xkcd.com/224/\" rel=\"nofollow\">“patterns and metapatterns […] of ideas manifest”</a>. My shell is <a href=\"http://code.google.com/p/macvim/\" rel=\"nofollow\"><code>mvim</code></a> and my editor <code>sed</code>.</p>\r\n\r\n<p><em>Yes</em>, I am occasionally <a href=\"http://twitter.com/klmr\" rel=\"nofollow\">tweeting</a>.</p>\r\n\r\n<p>I’ve also got a <strong><a href=\"http://greengoo.de/\" rel=\"nofollow\">blog</a></strong> concerning bioinformatics, programming and random ramblings.</p>\r\n\r\n<p>My unicorn is <strong>red</strong>:</p>\r\n\r\n<blockquote><img src=\"http://unicornify.appspot.com/avatar/f9401202ab73e624cc82800b0fff1489?s=128\" alt=\"The red-nosed unicorn\"/></blockquote>",
673
+ "question_count": 32,
674
+ "answer_count": 1481,
675
+ "view_count": 8781,
676
+ "up_vote_count": 3658,
677
+ "down_vote_count": 113,
678
+ "accept_rate": 93,
679
+ "user_questions_url": "/users/1968/questions",
680
+ "user_answers_url": "/users/1968/answers",
681
+ "user_favorites_url": "/users/1968/favorites",
682
+ "user_tags_url": "/users/1968/tags",
683
+ "user_badges_url": "/users/1968/badges",
684
+ "user_timeline_url": "/users/1968/timeline",
685
+ "user_mentioned_url": "/users/1968/mentioned",
686
+ "user_comments_url": "/users/1968/comments",
687
+ "user_reputation_url": "/users/1968/reputation",
688
+ "badge_counts": {
689
+ "gold": 6,
690
+ "silver": 117,
691
+ "bronze": 252
692
+ }
693
+ },
694
+ {
695
+ "user_id": 34211,
696
+ "user_type": "registered",
697
+ "creation_date": 1225814337,
698
+ "display_name": "Andrew Hare",
699
+ "reputation": 65134,
700
+ "email_hash": "eeaeac4ea5869d8e9098565b4876075d",
701
+ "age": 26,
702
+ "last_access_date": 1274923309,
703
+ "website_url": "http://togaroga.com/",
704
+ "location": "NH - USA",
705
+ "about_me": "<strong>Recent Articles:</strong><br/>\r\n<a href=\"http://togaroga.com/2010/04/two-structural-additions-to-c/\" rel=\"nofollow\">Two structural additions to C#</a><br/>\r\n<a href=\"http://togaroga.com/2010/04/whats-in-a-name-cs-hidden-support-for-structural-typing/\" rel=\"nofollow\">What’s in a name? (C#’s hidden support for structural typing)</a><br/>\r\n<a href=\"http://togaroga.com/2010/04/choosy-developers-choose-interfaces/\" rel=\"nofollow\">Choosy developers choose interfaces</a><br/>\r\n<a href=\"http://togaroga.com/2010/03/writing-better-code-its-imperative-that-you-are-declarative/\" rel=\"nofollow\">Writing better code: it’s imperative that you are declarative</a><br/>\r\n<a href=\"http://togaroga.com/2010/03/all-types-are-not-compared-equally-part-2/\" rel=\"nofollow\">All types are not compared equally (part 2)</a><br/>\r\n<a href=\"http://togaroga.com/2009/11/make-aliases-an-option/\" rel=\"nofollow\">Make aliases an option</a><br/>",
706
+ "question_count": 10,
707
+ "answer_count": 2297,
708
+ "view_count": 4111,
709
+ "up_vote_count": 3150,
710
+ "down_vote_count": 36,
711
+ "accept_rate": 100,
712
+ "user_questions_url": "/users/34211/questions",
713
+ "user_answers_url": "/users/34211/answers",
714
+ "user_favorites_url": "/users/34211/favorites",
715
+ "user_tags_url": "/users/34211/tags",
716
+ "user_badges_url": "/users/34211/badges",
717
+ "user_timeline_url": "/users/34211/timeline",
718
+ "user_mentioned_url": "/users/34211/mentioned",
719
+ "user_comments_url": "/users/34211/comments",
720
+ "user_reputation_url": "/users/34211/reputation",
721
+ "badge_counts": {
722
+ "gold": 7,
723
+ "silver": 103,
724
+ "bronze": 180
725
+ }
726
+ },
727
+ {
728
+ "user_id": 70604,
729
+ "user_type": "registered",
730
+ "creation_date": 1235517707,
731
+ "display_name": "Pascal Thivent",
732
+ "reputation": 62926,
733
+ "email_hash": "dc1a5b5fdba36ae9cdcf6e267f1a86ca",
734
+ "age": 34,
735
+ "last_access_date": 1274967155,
736
+ "website_url": "http://pascal.thivent.name/",
737
+ "about_me": "I'm a Software Engineer with 10 years of experience. I'm specialized in Java and Agile (XP, Scrum and Lean) and work as Agile Architect/Coach/Facilitator.<br />\r\n<br />\r\nI like GNU/Linux, Ubuntu, open source philosophy, knowledge sharing, finding innovative solutions, continuous improvement, building better software, Toyota,...<br />\r\n<br />\r\nI tweet <a href=\"http://twitter.com/pthivent\" rel=\"nofollow\">here</a>, post links <a href=\"http://delicious.com/pthivent\" rel=\"nofollow\">here</a>, blog <a href=\"http://pascal.thivent.name/\" rel=\"nofollow\">here</a> (well, actually, I don't blog).<br />\r\n<br />\r\nSome of my answers:<br /><br />\r\n<ul>\r\n<li><a href=\"http://stackoverflow.com/questions/1607819/weaknesses-of-hibernate/1609631#1609631\">Weaknesses of Hibernate</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2435253/a-concise-clear-list-of-what-is-new-in-jpa2/2440516#2440516\">A concise, clear list of what is new in JPA2?</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2397016/java-jdbc-alternatives/2397337#2397337\">Java - JDBC alternatives</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/1960280/what-to-learn-for-making-java-web-applications-in-java-ee-6/1960447#1960447\">What to learn for making Java web applications in Java EE 6?</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2499323/jee6-vs-spring-3-stack/2513026#2513026\">JEE6 vs. Spring 3 stack</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2084169/choosing-a-java-web-framework-now/2084512#2084512\">Choosing a Java Web Framework now?</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/1517557/what-is-groovy-on-grails-and-what-kind-of-applications-are-built-using-it/1517690#1517690\">What is “Groovy on Grails” and what kind of applications are built using it?</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2351220/stateless-and-stateful-enterprise-java-beans/2351487#2351487\">Stateless and Stateful Enterprise Java Beans</a></li>\r\n</ul>",
738
+ "question_count": 2,
739
+ "answer_count": 2779,
740
+ "view_count": 3102,
741
+ "up_vote_count": 2234,
742
+ "down_vote_count": 125,
743
+ "user_questions_url": "/users/70604/questions",
744
+ "user_answers_url": "/users/70604/answers",
745
+ "user_favorites_url": "/users/70604/favorites",
746
+ "user_tags_url": "/users/70604/tags",
747
+ "user_badges_url": "/users/70604/badges",
748
+ "user_timeline_url": "/users/70604/timeline",
749
+ "user_mentioned_url": "/users/70604/mentioned",
750
+ "user_comments_url": "/users/70604/comments",
751
+ "user_reputation_url": "/users/70604/reputation",
752
+ "badge_counts": {
753
+ "gold": 5,
754
+ "silver": 28,
755
+ "bronze": 43
756
+ }
757
+ },
758
+ {
759
+ "user_id": 55159,
760
+ "user_type": "registered",
761
+ "creation_date": 1231963399,
762
+ "display_name": "Quassnoi",
763
+ "reputation": 61173,
764
+ "email_hash": "00685f9deb0604e0fb646711a0eed1be",
765
+ "age": 30,
766
+ "last_access_date": 1274967043,
767
+ "website_url": "http://explainextended.com",
768
+ "location": "Moscow, Russia",
769
+ "question_count": 11,
770
+ "answer_count": 2285,
771
+ "view_count": 4033,
772
+ "up_vote_count": 1570,
773
+ "down_vote_count": 50,
774
+ "accept_rate": 77,
775
+ "user_questions_url": "/users/55159/questions",
776
+ "user_answers_url": "/users/55159/answers",
777
+ "user_favorites_url": "/users/55159/favorites",
778
+ "user_tags_url": "/users/55159/tags",
779
+ "user_badges_url": "/users/55159/badges",
780
+ "user_timeline_url": "/users/55159/timeline",
781
+ "user_mentioned_url": "/users/55159/mentioned",
782
+ "user_comments_url": "/users/55159/comments",
783
+ "user_reputation_url": "/users/55159/reputation",
784
+ "badge_counts": {
785
+ "gold": 6,
786
+ "silver": 52,
787
+ "bronze": 76
788
+ }
789
+ },
790
+ {
791
+ "user_id": 17034,
792
+ "user_type": "registered",
793
+ "creation_date": 1221698729,
794
+ "display_name": "Hans Passant",
795
+ "reputation": 58484,
796
+ "email_hash": "4235db1aa1b11bcddb720dbc70b34a0f",
797
+ "last_access_date": 1274967245,
798
+ "location": "Madison, WI",
799
+ "about_me": "Formerly active in the MSDN forums as a contributor, moderator and MVP using the \"nobugz\" nick. It didn't take me long to decide to switch bases, the SO team knows how to put a Q+A site together. Great job.<br/><br/>\r\n\r\nSend email to hpassant@ google's mail site if you want to get in touch.",
800
+ "question_count": 0,
801
+ "answer_count": 2698,
802
+ "view_count": 2648,
803
+ "up_vote_count": 900,
804
+ "down_vote_count": 61,
805
+ "user_questions_url": "/users/17034/questions",
806
+ "user_answers_url": "/users/17034/answers",
807
+ "user_favorites_url": "/users/17034/favorites",
808
+ "user_tags_url": "/users/17034/tags",
809
+ "user_badges_url": "/users/17034/badges",
810
+ "user_timeline_url": "/users/17034/timeline",
811
+ "user_mentioned_url": "/users/17034/mentioned",
812
+ "user_comments_url": "/users/17034/comments",
813
+ "user_reputation_url": "/users/17034/reputation",
814
+ "badge_counts": {
815
+ "gold": 3,
816
+ "silver": 14,
817
+ "bronze": 38
818
+ }
819
+ },
820
+ {
821
+ "user_id": 138475,
822
+ "user_type": "registered",
823
+ "creation_date": 1247632862,
824
+ "display_name": "Pascal MARTIN",
825
+ "reputation": 56456,
826
+ "email_hash": "37458c7c44851cd6c402e02e5a9be94f",
827
+ "age": 25,
828
+ "last_access_date": 1274967556,
829
+ "website_url": "http://blog.pascal-martin.fr",
830
+ "location": "Lyon, FR",
831
+ "about_me": "<p>I am a PHP Developer living and working in Lyon, France.</p>\r\n\r\n<p>You can find some articles about PHP and Javascript on <a href=\"http://blog.pascal-martin.fr\" rel=\"nofollow\">my Blog</a>, <em>in french</em>.</p>\r\n\r\n<p>\r\n<a href=\"http://careers.stackoverflow.com/pascal-martin\" rel=\"nofollow\">My CV <em>(very light version of it)</em> on Careers</a>\r\n</p>",
832
+ "question_count": 6,
833
+ "answer_count": 2133,
834
+ "view_count": 2651,
835
+ "up_vote_count": 2226,
836
+ "down_vote_count": 11,
837
+ "accept_rate": 60,
838
+ "user_questions_url": "/users/138475/questions",
839
+ "user_answers_url": "/users/138475/answers",
840
+ "user_favorites_url": "/users/138475/favorites",
841
+ "user_tags_url": "/users/138475/tags",
842
+ "user_badges_url": "/users/138475/badges",
843
+ "user_timeline_url": "/users/138475/timeline",
844
+ "user_mentioned_url": "/users/138475/mentioned",
845
+ "user_comments_url": "/users/138475/comments",
846
+ "user_reputation_url": "/users/138475/reputation",
847
+ "badge_counts": {
848
+ "gold": 4,
849
+ "silver": 47,
850
+ "bronze": 87
851
+ }
852
+ },
853
+ {
854
+ "user_id": 16076,
855
+ "user_type": "registered",
856
+ "creation_date": 1221662038,
857
+ "display_name": "Mitch Wheat",
858
+ "reputation": 56308,
859
+ "email_hash": "bf491c31ba2b4018e150397ba2e4f80b",
860
+ "age": 45,
861
+ "last_access_date": 1274963074,
862
+ "website_url": "http://mitch-wheat.blogspot.com",
863
+ "location": "Perth, Australia",
864
+ "about_me": "Developer (predominately C#, but not exclusively) and MVP. Particularly interested in performance tuning and SQL Server. My blog is <a href=\"http://mitch-wheat.blogspot.com/\" rel=\"nofollow\"> here.</a>\r\n\r\n<BR><BR>I run the <a href=\"http://perthdotnet.org/Default.aspx\" rel=\"nofollow\">Perth .NET user group</a>, here in Western Australia. \r\n\r\n<BR><BR>BTW, the image is not me! (It's the CrackFox from series 3 of the Mighty Boosh!)",
865
+ "question_count": 2,
866
+ "answer_count": 2217,
867
+ "view_count": 5119,
868
+ "up_vote_count": 2853,
869
+ "down_vote_count": 384,
870
+ "user_questions_url": "/users/16076/questions",
871
+ "user_answers_url": "/users/16076/answers",
872
+ "user_favorites_url": "/users/16076/favorites",
873
+ "user_tags_url": "/users/16076/tags",
874
+ "user_badges_url": "/users/16076/badges",
875
+ "user_timeline_url": "/users/16076/timeline",
876
+ "user_mentioned_url": "/users/16076/mentioned",
877
+ "user_comments_url": "/users/16076/comments",
878
+ "user_reputation_url": "/users/16076/reputation",
879
+ "badge_counts": {
880
+ "gold": 2,
881
+ "silver": 49,
882
+ "bronze": 96
883
+ }
884
+ },
885
+ {
886
+ "user_id": 12711,
887
+ "user_type": "registered",
888
+ "creation_date": 1221578552,
889
+ "display_name": "Michael Burr",
890
+ "reputation": 55340,
891
+ "email_hash": "c330bdee507c95c603a93ca91d9145a9",
892
+ "last_access_date": 1274938566,
893
+ "website_url": "http://blog.nth-element.com",
894
+ "location": "Seattle, WA",
895
+ "about_me": "Email: burr.overflow&#64;mailnull.com\r\n<br/><br/>\r\nBlog:\r\n<ul>\r\n<li>\r\n<a href=\"http://blog.nth-element.com/\" rel=\"nofollow\">\r\nnth-element\r\n</a>\r\n</li>\r\n</ul>\r\n\r\n<br/>\r\nCV:\r\n<ul>\r\n<li>\r\n<a href=\"http://careers.stackoverflow.com/mburr\" rel=\"nofollow\">\r\nhttp://careers.stackoverflow.com/mburr\r\n</a>\r\n</li>\r\n<li>\r\n<a href=\"http://www.linkedin.com/in/mwburr\" rel=\"nofollow\">\r\nhttp://www.linkedin.com/in/mwburr\r\n</a>\r\n</li>\r\n</ul>\r\n\r\n\r\n",
896
+ "question_count": 2,
897
+ "answer_count": 1553,
898
+ "view_count": 2721,
899
+ "up_vote_count": 3548,
900
+ "down_vote_count": 107,
901
+ "user_questions_url": "/users/12711/questions",
902
+ "user_answers_url": "/users/12711/answers",
903
+ "user_favorites_url": "/users/12711/favorites",
904
+ "user_tags_url": "/users/12711/tags",
905
+ "user_badges_url": "/users/12711/badges",
906
+ "user_timeline_url": "/users/12711/timeline",
907
+ "user_mentioned_url": "/users/12711/mentioned",
908
+ "user_comments_url": "/users/12711/comments",
909
+ "user_reputation_url": "/users/12711/reputation",
910
+ "badge_counts": {
911
+ "gold": 4,
912
+ "silver": 48,
913
+ "bronze": 132
914
+ }
915
+ },
916
+ {
917
+ "user_id": 157882,
918
+ "user_type": "registered",
919
+ "creation_date": 1250527322,
920
+ "display_name": "BalusC",
921
+ "reputation": 54871,
922
+ "email_hash": "89927e2f4bde24991649b353a37678b9",
923
+ "age": 32,
924
+ "last_access_date": 1274966955,
925
+ "website_url": "http://balusc.blogspot.com",
926
+ "location": "Willemstad, Curaçao",
927
+ "about_me": "<p>\r\nWebapp devver <a href=\"http://careers.stackoverflow.com/balusc\">since</a> <a href=\"http://www.linkedin.com/in/balusc\" rel=\"nofollow\">ages</a>.<br>\r\nLives in <a href=\"http://www.flickr.com/search/?q=Curacao\" rel=\"nofollow\">Dushi</a> <a href=\"http://en.wikipedia.org/wiki/Curacao\" rel=\"nofollow\">Curaçao</a>.<br>\r\nMarried with <a href=\"http://tweakers.net/ext/f/y5qLbGwdER8O2IL8BwN4bkNQ/full.jpg\" rel=\"nofollow\">two</a> <a href=\"http://tweakers.net/ext/f/UmvgeHn4y1FIhjdLFz9NpdXi/full.jpg\" rel=\"nofollow\">children</a>.<br>\r\n\r\n<p>\r\nRegistered here at 17 Aug 2009 just to reserve the unique nickname (which wasn't needed after all) and to get the feeling. Posted here for the first time at 1 Nov 2009 after outgrowing the slow, buggy and nitwit-cluttered forums.sun.com (after been active there since 26 Apr 2006) and looking for a decent forum with more subjects than only Java such as client side matters like HTTP/HTML/CSS/JS and a little PHP when I get bored.<br>\r\n\r\n<p>\r\nHere is an overview of some of my best answers:\r\n<ul>\r\n<li><a href=\"http://stackoverflow.com/questions/1958854#1958854\">Java EE - Web Development, what skills do I need?</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2097732#2097732\">Java EE - What are JSP, Servlet and JSF?</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2184147#2184147\">Java EE - Servlet instances and Multithreading</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2267095#2267095\">Java EE - Populating child dropdowns in JSP/Servlet</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2117595#2117595\">Java EE - Some interview questions</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2840358#2840358\">JDBC - Short tutorial on MySQL and JDBC</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/1987058#1987058\">JDBC - Implement JDBC pagination in JSP</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2707195#2707195\">Java - Real world examples of GoF Design Patterns</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/1814112#1814112\">Java - Sorting a List of Javabeans</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2835555#2835555\">Java - Parse HTML in Java</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/1843841#1843841\">HTML - Web development, where to start?</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2297666#2297666\">HTML - Opposite of &lt;noscript&gt;</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/1889957#1889957\">HTML - The benefits and pitfalls of &lt;base&gt; tag</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2730079#2730079\">HTML - Number nested &lt;ol&gt; items</a></li>\r\n<li><a href=\"http://stackoverflow.com/questions/2297421#2297421\">PHP - HTTP_HOST vs SERVER_NAME</a></li>\r\n</ul>\r\n\r\n<p>Oh, that bird on my cap is actually a young <a href=\"http://en.wikipedia.org/wiki/Amazon_parrot\" rel=\"nofollow\">Amazon parrot</a>.",
928
+ "question_count": 5,
929
+ "answer_count": 2990,
930
+ "view_count": 3667,
931
+ "up_vote_count": 2846,
932
+ "down_vote_count": 129,
933
+ "accept_rate": 50,
934
+ "user_questions_url": "/users/157882/questions",
935
+ "user_answers_url": "/users/157882/answers",
936
+ "user_favorites_url": "/users/157882/favorites",
937
+ "user_tags_url": "/users/157882/tags",
938
+ "user_badges_url": "/users/157882/badges",
939
+ "user_timeline_url": "/users/157882/timeline",
940
+ "user_mentioned_url": "/users/157882/mentioned",
941
+ "user_comments_url": "/users/157882/comments",
942
+ "user_reputation_url": "/users/157882/reputation",
943
+ "badge_counts": {
944
+ "gold": 4,
945
+ "silver": 32,
946
+ "bronze": 59
947
+ }
948
+ },
949
+ {
950
+ "user_id": 34397,
951
+ "user_type": "registered",
952
+ "creation_date": 1225829805,
953
+ "display_name": "SLaks",
954
+ "reputation": 54708,
955
+ "email_hash": "7deca8ec973c3c0875e9a36e1e3e2c44",
956
+ "age": 19,
957
+ "last_access_date": 1274966788,
958
+ "website_url": "http://Careers.StackOverflow.com/SLaks",
959
+ "location": "New Jersey, United States",
960
+ "about_me": "<p> <a href=\"http://Careers.StackOverflow.com/SLaks\"> <h1> Schabse Laks</h1> <i>Developer</i> </a> <br /> Contact: SLaks@LaksFamily.com </p> <p> I've been programming since I was 12.<br /> I started with VB6, then moved to C# 2 Beta 2 when I was 14. I never liked VB6, but I found my calling in C#, and I've stuck with it ever since.<br /> Since then, I've also mastered web development with jQuery.</p> <p> My best of SO: <ul> <li><a href=\"http://stackoverflow.com/questions/2508945/can-anyone-explain-this-strange-behaviour/2509174#2509174\"> Tracking down a bug in the .Net runtime</a></li> <li><a href=\"http://stackoverflow.com/questions/1563516/um-proggy-not-worky/1563668#1563668\"> An exercise in psychic debugging (see the question history)</a></li> <li><a href=\"http://stackoverflow.com/questions/1331739/enum-type-constraints-in-c/1416660#1416660\" title=\"Enum type constraints in C#\">Working around a C# compiler limitation</a></li> <li><a href=\"http://stackoverflow.com/questions/2117747/how-does-this-mess-work/2117775#2117775\"> Decoding a Javascript virus</a></li> <li><a href=\"http://stackoverflow.com/questions/2492271/can-this-jquery-code-snippet-be-shortened/2492284#2492284\"> jQuery selector magic</a></li> <li><a href=\"http://stackoverflow.com/questions/2113501/silverlight-confirm-dialog-to-pause-thread/2113555#2113555\"> Simple coroutines using iterators</a></li> <li><a href=\"http://stackoverflow.com/questions/2204538/what-is-click-in-javascript/2204568#2204568\"> Understanding Javascript scoping in inline event handlers</a></li> <li><a href=\"http://stackoverflow.com/questions/2140882/vertically-only-resizable-windows-form-in-c/2140908#2140908\" title=\"Vertically (only) resizable windows form in C#\"><code>WM_NCHITTEST</code> magic</a></li> <li><a href=\"http://stackoverflow.com/questions/1600662/this-null-in-c\" title=\"(this == null) in C#!\"> A bug in the C# compiler</a></li> </ul> </p> ",
961
+ "question_count": 46,
962
+ "answer_count": 2754,
963
+ "view_count": 2669,
964
+ "up_vote_count": 3111,
965
+ "down_vote_count": 54,
966
+ "accept_rate": 90,
967
+ "user_questions_url": "/users/34397/questions",
968
+ "user_answers_url": "/users/34397/answers",
969
+ "user_favorites_url": "/users/34397/favorites",
970
+ "user_tags_url": "/users/34397/tags",
971
+ "user_badges_url": "/users/34397/badges",
972
+ "user_timeline_url": "/users/34397/timeline",
973
+ "user_mentioned_url": "/users/34397/mentioned",
974
+ "user_comments_url": "/users/34397/comments",
975
+ "user_reputation_url": "/users/34397/reputation",
976
+ "badge_counts": {
977
+ "gold": 4,
978
+ "silver": 62,
979
+ "bronze": 98
980
+ }
981
+ }
982
+ ]
983
+ }