forked from github/game-off-2012
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructure.sql
More file actions
2107 lines (2083 loc) · 323 KB
/
structure.sql
File metadata and controls
2107 lines (2083 loc) · 323 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 3.3.2deb1ubuntu1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Nov 01, 2012 at 02:50 AM
-- Server version: 5.1.63
-- PHP Version: 5.3.2-1ubuntu4.18
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `ght`
--
-- --------------------------------------------------------
--
-- Table structure for table `issue_table`
--
CREATE TABLE IF NOT EXISTS `issue_table` (
`iid` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`description` text COLLATE utf8_unicode_ci NOT NULL,
`type` enum('bug','enhancement','pull_request') COLLATE utf8_unicode_ci NOT NULL,
`time` int(11) NOT NULL,
`delta_com` int(11) NOT NULL,
`delta_cbq` int(11) NOT NULL,
`chance` int(3) NOT NULL,
UNIQUE KEY `iid` (`iid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2002 ;
--
-- Dumping data for table `issue_table`
--
INSERT INTO `issue_table` (`iid`, `name`, `description`, `type`, `time`, `delta_com`, `delta_cbq`, `chance`) VALUES
(1, 'Code Rebase', 'Rewrite major parts of the core and update to newest specifications.', 'enhancement', 120, 0, 9, 100),
(2, 'Code Refactor', 'Refactor a segment of the code.', 'enhancement', 60, 0, 4, 100),
(3, 'Color Change', '<pre>git rm -rf *\r\ngit commit -m "Fixed all bugs"\r\ngit push</pre>', 'pull_request', 2, -10, -1000, 1),
(4, 'Simple Syntax Error', 'If you\'re happy and you know it, syntax error! I have a drag and drop GUI application for this.', 'bug', 20, 2, 2, 4),
(5, 'Simple Compilation Error', 'Typos can be a nusiance. I have a drag and drop GUI application for this.', 'bug', 30, 3, 2, 4),
(6, 'Simple Run Time Error', 'Ouch! My program didn\'t like that! I have a drag and drop GUI application for this.', 'bug', 40, 4, 2, 4),
(7, 'Simple Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? I have a drag and drop GUI application for this.', 'bug', 50, 5, 2, 4),
(8, 'Simple Latent Error', 'I was not expecting this result. I have a drag and drop GUI application for this.', 'bug', 60, 6, 2, 4),
(9, 'Simple Division by Zero Error', 'What do you mean you can\'t divide by zero? I have a drag and drop GUI application for this.', 'bug', 70, 7, 2, 4),
(10, 'Simple Overflow Bug', '1 + 1 = 0. I have a drag and drop GUI application for this.', 'bug', 80, 8, 2, 4),
(11, 'Simple Precision Error', '0.9999999999 != 1. I have a drag and drop GUI application for this.', 'bug', 90, 9, 2, 4),
(12, 'Simple Infinite Loop', 'Why won\'t this program terminate? I have a drag and drop GUI application for this.', 'bug', 100, 10, 2, 4),
(13, 'Simple Recursion Error', 'Recursion: See Recursion. I have a drag and drop GUI application for this.', 'bug', 10, 1, 2, 4),
(14, 'Simple Off By One Error', 'Leave it to a computer to be unable to count. I have a drag and drop GUI application for this.', 'bug', 20, 2, 2, 4),
(15, 'Simple Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? I have a drag and drop GUI application for this.', 'bug', 30, 3, 2, 4),
(16, 'Simple Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? I have a drag and drop GUI application for this.', 'bug', 40, 4, 2, 4),
(17, 'Simple Type Error', 'What do you mean I can\'t divide strings by a number? I have a drag and drop GUI application for this.', 'bug', 50, 5, 2, 4),
(18, 'Simple Segfault', 'Who the hell is trying to push the binary into kernel space? I have a drag and drop GUI application for this.', 'bug', 60, 6, 2, 4),
(19, 'Simple Memory Leak', 'Memory is not a black hole. I have a drag and drop GUI application for this.', 'bug', 70, 7, 2, 4),
(20, 'Simple Buffer Overflow', 'You shall not pass! I have a drag and drop GUI application for this.', 'bug', 80, 8, 2, 4),
(21, 'Simple Stack Overflow', 'Pushing but not popping. I have a drag and drop GUI application for this.', 'bug', 90, 9, 2, 4),
(22, 'Simple Deadlock', 'Why do mute philosophers need to eat with two forks anyway? I have a drag and drop GUI application for this.', 'bug', 100, 10, 2, 4),
(23, 'Simple Race Condition', 'Remove seatbelt, then leave the car. I have a drag and drop GUI application for this.', 'bug', 10, 1, 2, 4),
(24, 'Simple Incorrect API usage', 'api.exceptIncomingTransmission() I have a drag and drop GUI application for this.', 'bug', 20, 2, 2, 4),
(25, 'Simple Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? I have a drag and drop GUI application for this.', 'bug', 30, 3, 2, 4),
(26, 'Simple Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? I have a drag and drop GUI application for this.', 'bug', 40, 4, 2, 4),
(27, 'Simple Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. I have a drag and drop GUI application for this.', 'bug', 50, 5, 2, 4),
(28, 'Simple Random Disk Access Issue', 'Why does this library use twelve thousand individual files? I have a drag and drop GUI application for this.', 'bug', 60, 6, 2, 4),
(29, 'Simple Unpropagated Updates', 'Why subtract when you can just add a negative number? I have a drag and drop GUI application for this.', 'bug', 70, 7, 2, 4),
(30, 'Simple Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? I have a drag and drop GUI application for this.', 'bug', 80, 8, 2, 4),
(31, 'Simple Documentation Issue', 'Moths do not belong in the relay. I have a drag and drop GUI application for this.', 'bug', 90, 9, 2, 4),
(32, 'Simple Hard Coded', 'This needs to be dynamic. I have a drag and drop GUI application for this.', 'bug', 100, 10, 2, 4),
(33, 'Simple Business Request', 'Quite a few companies would love to see this happen. I have a drag and drop GUI application for this.', 'enhancement', 20, 2, -2, 4),
(34, 'Simple Personal Request', 'Not many people will benefit from this, but it is rather good idea. I have a drag and drop GUI application for this.', 'enhancement', 30, 3, -2, 4),
(35, 'Simple API', 'If we can build an API, we can allow folks to connect to it. I have a drag and drop GUI application for this.', 'enhancement', 40, 4, -2, 4),
(36, 'Simple User Interface', 'People like to click buttons. Let\'s add those! I have a drag and drop GUI application for this.', 'enhancement', 50, 5, -2, 4),
(37, 'Simple Command Line Interface', 'Let\'s make our system script-able! I have a drag and drop GUI application for this.', 'enhancement', 60, 7, -2, 4),
(38, 'Simple Daemon', 'Our system needs to run all the time! I have a drag and drop GUI application for this.', 'enhancement', 70, 8, -2, 4),
(39, 'Simple Database', 'Our information needs to be persistent. I have a drag and drop GUI application for this.', 'enhancement', 80, 9, -2, 4),
(40, 'Simple Threading', 'Our system needs to take advantage of multi-core processors. I have a drag and drop GUI application for this.', 'enhancement', 90, 11, -2, 4),
(41, 'Simple Documentation', 'RTFM? WABFM. I have a drag and drop GUI application for this.', 'enhancement', 100, 12, -2, 4),
(42, 'Simple Hardware Integration', 'We need to add a dongle. I have a drag and drop GUI application for this.', 'enhancement', 10, 1, -2, 4),
(43, 'Simple Automated Tests', 'I\'m tired of testing. I have a drag and drop GUI application for this.', 'enhancement', 20, 2, -2, 4),
(44, 'Simple Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. I have a drag and drop GUI application for this.', 'enhancement', 30, 3, -2, 4),
(45, 'Simple Deploy Scripts', 'We need to have a public instance. I have a drag and drop GUI application for this.', 'enhancement', 40, 4, -2, 4),
(46, 'Simple Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. I have a drag and drop GUI application for this.', 'enhancement', 50, 5, -2, 4),
(47, 'Simple Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. I have a drag and drop GUI application for this.', 'enhancement', 60, 7, -2, 4),
(48, 'Simple Third Party Library', 'Why reinvent the wheel? I have a drag and drop GUI application for this.', 'enhancement', 70, 8, -2, 4),
(49, 'Simple Website', 'We need a design that POPS! Maybe even comic sans! I have a drag and drop GUI application for this.', 'enhancement', 80, 9, -2, 4),
(50, 'Simple Mailing List', 'You know ... To send emails to and stuff. I have a drag and drop GUI application for this.', 'enhancement', 90, 11, -2, 4),
(51, 'Simple Forums', 'Calling all trolls. I have a drag and drop GUI application for this.', 'enhancement', 100, 12, -2, 4),
(52, 'Simple IRC Channel', 'Old enough to keep the technically challenged out. I have a drag and drop GUI application for this.', 'enhancement', 10, 1, -2, 4),
(53, 'Simple Phone App', 'I need to access this from my phone. Now. I have a drag and drop GUI application for this.', 'enhancement', 20, 2, -2, 4),
(54, 'Simple Patch', 'Someone attached a patch on the issue tracker! I have a drag and drop GUI application for this.', 'pull_request', 10, 1, -10, 1),
(55, 'Simple Feature', 'Someone wrote some code and posted it! I have a drag and drop GUI application for this.', 'pull_request', 10, 2, -10, 1),
(56, 'Simple Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! I have a drag and drop GUI application for this.', 'pull_request', 10, 3, -10, 1),
(57, 'Simple Performance Boost', 'Someone was able to make your system faster! I have a drag and drop GUI application for this.', 'pull_request', 10, 4, -10, 1),
(58, 'Beginner Syntax Error', 'If you\'re happy and you know it, syntax error! I can\'t believe this is actually an issue.', 'bug', 40, 4, 2, 4),
(59, 'Beginner Compilation Error', 'Typos can be a nusiance. I can\'t believe this is actually an issue.', 'bug', 60, 6, 2, 4),
(60, 'Beginner Run Time Error', 'Ouch! My program didn\'t like that! I can\'t believe this is actually an issue.', 'bug', 80, 8, 2, 4),
(61, 'Beginner Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? I can\'t believe this is actually an issue.', 'bug', 100, 10, 2, 4),
(62, 'Beginner Latent Error', 'I was not expecting this result. I can\'t believe this is actually an issue.', 'bug', 120, 12, 2, 4),
(63, 'Beginner Division by Zero Error', 'What do you mean you can\'t divide by zero? I can\'t believe this is actually an issue.', 'bug', 140, 14, 2, 4),
(64, 'Beginner Overflow Bug', '1 + 1 = 0. I can\'t believe this is actually an issue.', 'bug', 160, 16, 2, 4),
(65, 'Beginner Precision Error', '0.9999999999 != 1. I can\'t believe this is actually an issue.', 'bug', 180, 18, 2, 4),
(66, 'Beginner Infinite Loop', 'Why won\'t this program terminate? I can\'t believe this is actually an issue.', 'bug', 200, 20, 2, 4),
(67, 'Beginner Recursion Error', 'Recursion: See Recursion. I can\'t believe this is actually an issue.', 'bug', 20, 2, 2, 4),
(68, 'Beginner Off By One Error', 'Leave it to a computer to be unable to count. I can\'t believe this is actually an issue.', 'bug', 40, 4, 2, 4),
(69, 'Beginner Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? I can\'t believe this is actually an issue.', 'bug', 60, 6, 2, 4),
(70, 'Beginner Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? I can\'t believe this is actually an issue.', 'bug', 80, 8, 2, 4),
(71, 'Beginner Type Error', 'What do you mean I can\'t divide strings by a number? I can\'t believe this is actually an issue.', 'bug', 100, 10, 2, 4),
(72, 'Beginner Segfault', 'Who the hell is trying to push the binary into kernel space? I can\'t believe this is actually an issue.', 'bug', 120, 12, 2, 4),
(73, 'Beginner Memory Leak', 'Memory is not a black hole. I can\'t believe this is actually an issue.', 'bug', 140, 14, 2, 4),
(74, 'Beginner Buffer Overflow', 'You shall not pass! I can\'t believe this is actually an issue.', 'bug', 160, 16, 2, 4),
(75, 'Beginner Stack Overflow', 'Pushing but not popping. I can\'t believe this is actually an issue.', 'bug', 180, 18, 2, 4),
(76, 'Beginner Deadlock', 'Why do mute philosophers need to eat with two forks anyway? I can\'t believe this is actually an issue.', 'bug', 200, 20, 2, 4),
(77, 'Beginner Race Condition', 'Remove seatbelt, then leave the car. I can\'t believe this is actually an issue.', 'bug', 20, 2, 2, 4),
(78, 'Beginner Incorrect API usage', 'api.exceptIncomingTransmission() I can\'t believe this is actually an issue.', 'bug', 40, 4, 2, 4),
(79, 'Beginner Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? I can\'t believe this is actually an issue.', 'bug', 60, 6, 2, 4),
(80, 'Beginner Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? I can\'t believe this is actually an issue.', 'bug', 80, 8, 2, 4),
(81, 'Beginner Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. I can\'t believe this is actually an issue.', 'bug', 100, 10, 2, 4),
(82, 'Beginner Random Disk Access Issue', 'Why does this library use twelve thousand individual files? I can\'t believe this is actually an issue.', 'bug', 120, 12, 2, 4),
(83, 'Beginner Unpropagated Updates', 'Why subtract when you can just add a negative number? I can\'t believe this is actually an issue.', 'bug', 140, 14, 2, 4),
(84, 'Beginner Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? I can\'t believe this is actually an issue.', 'bug', 160, 16, 2, 4),
(85, 'Beginner Documentation Issue', 'Moths do not belong in the relay. I can\'t believe this is actually an issue.', 'bug', 180, 18, 2, 4),
(86, 'Beginner Hard Coded', 'This needs to be dynamic. I can\'t believe this is actually an issue.', 'bug', 200, 20, 2, 4),
(87, 'Beginner Business Request', 'Quite a few companies would love to see this happen. I can\'t believe this is actually an issue.', 'enhancement', 40, 4, -2, 4),
(88, 'Beginner Personal Request', 'Not many people will benefit from this, but it is rather good idea. I can\'t believe this is actually an issue.', 'enhancement', 60, 7, -2, 4),
(89, 'Beginner API', 'If we can build an API, we can allow folks to connect to it. I can\'t believe this is actually an issue.', 'enhancement', 80, 9, -2, 4),
(90, 'Beginner User Interface', 'People like to click buttons. Let\'s add those! I can\'t believe this is actually an issue.', 'enhancement', 100, 12, -2, 4),
(91, 'Beginner Command Line Interface', 'Let\'s make our system script-able! I can\'t believe this is actually an issue.', 'enhancement', 120, 15, -2, 4),
(92, 'Beginner Daemon', 'Our system needs to run all the time! I can\'t believe this is actually an issue.', 'enhancement', 140, 18, -2, 4),
(93, 'Beginner Database', 'Our information needs to be persistent. I can\'t believe this is actually an issue.', 'enhancement', 160, 21, -2, 4),
(94, 'Beginner Threading', 'Our system needs to take advantage of multi-core processors. I can\'t believe this is actually an issue.', 'enhancement', 180, 24, -2, 4),
(95, 'Beginner Documentation', 'RTFM? WABFM. I can\'t believe this is actually an issue.', 'enhancement', 200, 26, -2, 4),
(96, 'Beginner Hardware Integration', 'We need to add a dongle. I can\'t believe this is actually an issue.', 'enhancement', 20, 2, -2, 4),
(97, 'Beginner Automated Tests', 'I\'m tired of testing. I can\'t believe this is actually an issue.', 'enhancement', 40, 4, -2, 4),
(98, 'Beginner Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. I can\'t believe this is actually an issue.', 'enhancement', 60, 7, -2, 4),
(99, 'Beginner Deploy Scripts', 'We need to have a public instance. I can\'t believe this is actually an issue.', 'enhancement', 80, 9, -2, 4),
(100, 'Beginner Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. I can\'t believe this is actually an issue.', 'enhancement', 100, 12, -2, 4),
(101, 'Beginner Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. I can\'t believe this is actually an issue.', 'enhancement', 120, 15, -2, 4),
(102, 'Beginner Third Party Library', 'Why reinvent the wheel? I can\'t believe this is actually an issue.', 'enhancement', 140, 18, -2, 4),
(103, 'Beginner Website', 'We need a design that POPS! Maybe even comic sans! I can\'t believe this is actually an issue.', 'enhancement', 160, 21, -2, 4),
(104, 'Beginner Mailing List', 'You know ... To send emails to and stuff. I can\'t believe this is actually an issue.', 'enhancement', 180, 24, -2, 4),
(105, 'Beginner Forums', 'Calling all trolls. I can\'t believe this is actually an issue.', 'enhancement', 200, 26, -2, 4),
(106, 'Beginner IRC Channel', 'Old enough to keep the technically challenged out. I can\'t believe this is actually an issue.', 'enhancement', 20, 2, -2, 4),
(107, 'Beginner Phone App', 'I need to access this from my phone. Now. I can\'t believe this is actually an issue.', 'enhancement', 40, 4, -2, 4),
(108, 'Beginner Patch', 'Someone attached a patch on the issue tracker! I can\'t believe this is actually an issue.', 'pull_request', 10, 2, -10, 1),
(109, 'Beginner Feature', 'Someone wrote some code and posted it! I can\'t believe this is actually an issue.', 'pull_request', 10, 4, -10, 1),
(110, 'Beginner Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! I can\'t believe this is actually an issue.', 'pull_request', 10, 7, -10, 1),
(111, 'Beginner Performance Boost', 'Someone was able to make your system faster! I can\'t believe this is actually an issue.', 'pull_request', 10, 9, -10, 1),
(112, 'Casual Syntax Error', 'If you\'re happy and you know it, syntax error! I might as well drink while I do this. Vodka sounds good.', 'bug', 60, 6, 2, 4),
(113, 'Casual Compilation Error', 'Typos can be a nusiance. I might as well drink while I do this. Vodka sounds good.', 'bug', 90, 9, 2, 4),
(114, 'Casual Run Time Error', 'Ouch! My program didn\'t like that! I might as well drink while I do this. Vodka sounds good.', 'bug', 120, 12, 2, 4),
(115, 'Casual Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? I might as well drink while I do this. Vodka sounds good.', 'bug', 150, 15, 2, 4),
(116, 'Casual Latent Error', 'I was not expecting this result. I might as well drink while I do this. Vodka sounds good.', 'bug', 180, 18, 2, 4),
(117, 'Casual Division by Zero Error', 'What do you mean you can\'t divide by zero? I might as well drink while I do this. Vodka sounds good.', 'bug', 210, 21, 2, 4),
(118, 'Casual Overflow Bug', '1 + 1 = 0. I might as well drink while I do this. Vodka sounds good.', 'bug', 240, 24, 2, 4),
(119, 'Casual Precision Error', '0.9999999999 != 1. I might as well drink while I do this. Vodka sounds good.', 'bug', 270, 27, 2, 4),
(120, 'Casual Infinite Loop', 'Why won\'t this program terminate? I might as well drink while I do this. Vodka sounds good.', 'bug', 300, 31, 2, 4),
(121, 'Casual Recursion Error', 'Recursion: See Recursion. I might as well drink while I do this. Vodka sounds good.', 'bug', 30, 3, 2, 4),
(122, 'Casual Off By One Error', 'Leave it to a computer to be unable to count. I might as well drink while I do this. Vodka sounds good.', 'bug', 60, 6, 2, 4),
(123, 'Casual Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? I might as well drink while I do this. Vodka sounds good.', 'bug', 90, 9, 2, 4),
(124, 'Casual Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? I might as well drink while I do this. Vodka sounds good.', 'bug', 120, 12, 2, 4),
(125, 'Casual Type Error', 'What do you mean I can\'t divide strings by a number? I might as well drink while I do this. Vodka sounds good.', 'bug', 150, 15, 2, 4),
(126, 'Casual Segfault', 'Who the hell is trying to push the binary into kernel space? I might as well drink while I do this. Vodka sounds good.', 'bug', 180, 18, 2, 4),
(127, 'Casual Memory Leak', 'Memory is not a black hole. I might as well drink while I do this. Vodka sounds good.', 'bug', 210, 21, 2, 4),
(128, 'Casual Buffer Overflow', 'You shall not pass! I might as well drink while I do this. Vodka sounds good.', 'bug', 240, 24, 2, 4),
(129, 'Casual Stack Overflow', 'Pushing but not popping. I might as well drink while I do this. Vodka sounds good.', 'bug', 270, 27, 2, 4),
(130, 'Casual Deadlock', 'Why do mute philosophers need to eat with two forks anyway? I might as well drink while I do this. Vodka sounds good.', 'bug', 300, 31, 2, 4),
(131, 'Casual Race Condition', 'Remove seatbelt, then leave the car. I might as well drink while I do this. Vodka sounds good.', 'bug', 30, 3, 2, 4),
(132, 'Casual Incorrect API usage', 'api.exceptIncomingTransmission() I might as well drink while I do this. Vodka sounds good.', 'bug', 60, 6, 2, 4),
(133, 'Casual Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? I might as well drink while I do this. Vodka sounds good.', 'bug', 90, 9, 2, 4),
(134, 'Casual Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? I might as well drink while I do this. Vodka sounds good.', 'bug', 120, 12, 2, 4),
(135, 'Casual Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. I might as well drink while I do this. Vodka sounds good.', 'bug', 150, 15, 2, 4),
(136, 'Casual Random Disk Access Issue', 'Why does this library use twelve thousand individual files? I might as well drink while I do this. Vodka sounds good.', 'bug', 180, 18, 2, 4),
(137, 'Casual Unpropagated Updates', 'Why subtract when you can just add a negative number? I might as well drink while I do this. Vodka sounds good.', 'bug', 210, 21, 2, 4),
(138, 'Casual Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? I might as well drink while I do this. Vodka sounds good.', 'bug', 240, 24, 2, 4),
(139, 'Casual Documentation Issue', 'Moths do not belong in the relay. I might as well drink while I do this. Vodka sounds good.', 'bug', 270, 27, 2, 4),
(140, 'Casual Hard Coded', 'This needs to be dynamic. I might as well drink while I do this. Vodka sounds good.', 'bug', 300, 31, 2, 4),
(141, 'Casual Business Request', 'Quite a few companies would love to see this happen. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 60, 7, -2, 4),
(142, 'Casual Personal Request', 'Not many people will benefit from this, but it is rather good idea. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 90, 11, -2, 4),
(143, 'Casual API', 'If we can build an API, we can allow folks to connect to it. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 120, 15, -2, 4),
(144, 'Casual User Interface', 'People like to click buttons. Let\'s add those! I might as well drink while I do this. Vodka sounds good.', 'enhancement', 150, 19, -2, 4),
(145, 'Casual Command Line Interface', 'Let\'s make our system script-able! I might as well drink while I do this. Vodka sounds good.', 'enhancement', 180, 24, -2, 4),
(146, 'Casual Daemon', 'Our system needs to run all the time! I might as well drink while I do this. Vodka sounds good.', 'enhancement', 210, 28, -2, 4),
(147, 'Casual Database', 'Our information needs to be persistent. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 240, 32, -2, 4),
(148, 'Casual Threading', 'Our system needs to take advantage of multi-core processors. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 270, 37, -2, 4),
(149, 'Casual Documentation', 'RTFM? WABFM. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 300, 42, -2, 4),
(150, 'Casual Hardware Integration', 'We need to add a dongle. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 30, 3, -2, 4),
(151, 'Casual Automated Tests', 'I\'m tired of testing. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 60, 7, -2, 4),
(152, 'Casual Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 90, 11, -2, 4),
(153, 'Casual Deploy Scripts', 'We need to have a public instance. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 120, 15, -2, 4),
(154, 'Casual Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 150, 19, -2, 4),
(155, 'Casual Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 180, 24, -2, 4),
(156, 'Casual Third Party Library', 'Why reinvent the wheel? I might as well drink while I do this. Vodka sounds good.', 'enhancement', 210, 28, -2, 4),
(157, 'Casual Website', 'We need a design that POPS! Maybe even comic sans! I might as well drink while I do this. Vodka sounds good.', 'enhancement', 240, 32, -2, 4),
(158, 'Casual Mailing List', 'You know ... To send emails to and stuff. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 270, 37, -2, 4),
(159, 'Casual Forums', 'Calling all trolls. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 300, 42, -2, 4),
(160, 'Casual IRC Channel', 'Old enough to keep the technically challenged out. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 30, 3, -2, 4),
(161, 'Casual Phone App', 'I need to access this from my phone. Now. I might as well drink while I do this. Vodka sounds good.', 'enhancement', 60, 7, -2, 4),
(162, 'Casual Patch', 'Someone attached a patch on the issue tracker! I might as well drink while I do this. Vodka sounds good.', 'pull_request', 10, 3, -10, 1),
(163, 'Casual Feature', 'Someone wrote some code and posted it! I might as well drink while I do this. Vodka sounds good.', 'pull_request', 10, 7, -10, 1),
(164, 'Casual Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! I might as well drink while I do this. Vodka sounds good.', 'pull_request', 10, 11, -10, 1),
(165, 'Casual Performance Boost', 'Someone was able to make your system faster! I might as well drink while I do this. Vodka sounds good.', 'pull_request', 10, 15, -10, 1),
(166, 'Greenhorn Syntax Error', 'If you\'re happy and you know it, syntax error! Maybe I can play starcraft with one hand while I do this.', 'bug', 80, 8, 2, 4),
(167, 'Greenhorn Compilation Error', 'Typos can be a nusiance. Maybe I can play starcraft with one hand while I do this.', 'bug', 120, 12, 2, 4),
(168, 'Greenhorn Run Time Error', 'Ouch! My program didn\'t like that! Maybe I can play starcraft with one hand while I do this.', 'bug', 160, 16, 2, 4),
(169, 'Greenhorn Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? Maybe I can play starcraft with one hand while I do this.', 'bug', 200, 20, 2, 4),
(170, 'Greenhorn Latent Error', 'I was not expecting this result. Maybe I can play starcraft with one hand while I do this.', 'bug', 240, 24, 2, 4),
(171, 'Greenhorn Division by Zero Error', 'What do you mean you can\'t divide by zero? Maybe I can play starcraft with one hand while I do this.', 'bug', 280, 28, 2, 4),
(172, 'Greenhorn Overflow Bug', '1 + 1 = 0. Maybe I can play starcraft with one hand while I do this.', 'bug', 320, 33, 2, 4),
(173, 'Greenhorn Precision Error', '0.9999999999 != 1. Maybe I can play starcraft with one hand while I do this.', 'bug', 360, 37, 2, 4),
(174, 'Greenhorn Infinite Loop', 'Why won\'t this program terminate? Maybe I can play starcraft with one hand while I do this.', 'bug', 400, 41, 2, 4),
(175, 'Greenhorn Recursion Error', 'Recursion: See Recursion. Maybe I can play starcraft with one hand while I do this.', 'bug', 40, 4, 2, 4),
(176, 'Greenhorn Off By One Error', 'Leave it to a computer to be unable to count. Maybe I can play starcraft with one hand while I do this.', 'bug', 80, 8, 2, 4),
(177, 'Greenhorn Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? Maybe I can play starcraft with one hand while I do this.', 'bug', 120, 12, 2, 4),
(178, 'Greenhorn Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? Maybe I can play starcraft with one hand while I do this.', 'bug', 160, 16, 2, 4),
(179, 'Greenhorn Type Error', 'What do you mean I can\'t divide strings by a number? Maybe I can play starcraft with one hand while I do this.', 'bug', 200, 20, 2, 4),
(180, 'Greenhorn Segfault', 'Who the hell is trying to push the binary into kernel space? Maybe I can play starcraft with one hand while I do this.', 'bug', 240, 24, 2, 4),
(181, 'Greenhorn Memory Leak', 'Memory is not a black hole. Maybe I can play starcraft with one hand while I do this.', 'bug', 280, 28, 2, 4),
(182, 'Greenhorn Buffer Overflow', 'You shall not pass! Maybe I can play starcraft with one hand while I do this.', 'bug', 320, 33, 2, 4),
(183, 'Greenhorn Stack Overflow', 'Pushing but not popping. Maybe I can play starcraft with one hand while I do this.', 'bug', 360, 37, 2, 4),
(184, 'Greenhorn Deadlock', 'Why do mute philosophers need to eat with two forks anyway? Maybe I can play starcraft with one hand while I do this.', 'bug', 400, 41, 2, 4),
(185, 'Greenhorn Race Condition', 'Remove seatbelt, then leave the car. Maybe I can play starcraft with one hand while I do this.', 'bug', 40, 4, 2, 4),
(186, 'Greenhorn Incorrect API usage', 'api.exceptIncomingTransmission() Maybe I can play starcraft with one hand while I do this.', 'bug', 80, 8, 2, 4),
(187, 'Greenhorn Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? Maybe I can play starcraft with one hand while I do this.', 'bug', 120, 12, 2, 4),
(188, 'Greenhorn Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? Maybe I can play starcraft with one hand while I do this.', 'bug', 160, 16, 2, 4),
(189, 'Greenhorn Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. Maybe I can play starcraft with one hand while I do this.', 'bug', 200, 20, 2, 4),
(190, 'Greenhorn Random Disk Access Issue', 'Why does this library use twelve thousand individual files? Maybe I can play starcraft with one hand while I do this.', 'bug', 240, 24, 2, 4),
(191, 'Greenhorn Unpropagated Updates', 'Why subtract when you can just add a negative number? Maybe I can play starcraft with one hand while I do this.', 'bug', 280, 28, 2, 4),
(192, 'Greenhorn Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? Maybe I can play starcraft with one hand while I do this.', 'bug', 320, 33, 2, 4),
(193, 'Greenhorn Documentation Issue', 'Moths do not belong in the relay. Maybe I can play starcraft with one hand while I do this.', 'bug', 360, 37, 2, 4),
(194, 'Greenhorn Hard Coded', 'This needs to be dynamic. Maybe I can play starcraft with one hand while I do this.', 'bug', 400, 41, 2, 4),
(195, 'Greenhorn Business Request', 'Quite a few companies would love to see this happen. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 80, 9, -2, 4),
(196, 'Greenhorn Personal Request', 'Not many people will benefit from this, but it is rather good idea. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 120, 15, -2, 4),
(197, 'Greenhorn API', 'If we can build an API, we can allow folks to connect to it. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 160, 21, -2, 4),
(198, 'Greenhorn User Interface', 'People like to click buttons. Let\'s add those! Maybe I can play starcraft with one hand while I do this.', 'enhancement', 200, 26, -2, 4),
(199, 'Greenhorn Command Line Interface', 'Let\'s make our system script-able! Maybe I can play starcraft with one hand while I do this.', 'enhancement', 240, 32, -2, 4),
(200, 'Greenhorn Daemon', 'Our system needs to run all the time! Maybe I can play starcraft with one hand while I do this.', 'enhancement', 280, 39, -2, 4),
(201, 'Greenhorn Database', 'Our information needs to be persistent. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 320, 45, -2, 4),
(202, 'Greenhorn Threading', 'Our system needs to take advantage of multi-core processors. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 360, 51, -2, 4),
(203, 'Greenhorn Documentation', 'RTFM? WABFM. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 400, 57, -2, 4),
(204, 'Greenhorn Hardware Integration', 'We need to add a dongle. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 40, 4, -2, 4),
(205, 'Greenhorn Automated Tests', 'I\'m tired of testing. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 80, 9, -2, 4),
(206, 'Greenhorn Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 120, 15, -2, 4),
(207, 'Greenhorn Deploy Scripts', 'We need to have a public instance. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 160, 21, -2, 4),
(208, 'Greenhorn Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 200, 26, -2, 4),
(209, 'Greenhorn Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 240, 32, -2, 4),
(210, 'Greenhorn Third Party Library', 'Why reinvent the wheel? Maybe I can play starcraft with one hand while I do this.', 'enhancement', 280, 39, -2, 4),
(211, 'Greenhorn Website', 'We need a design that POPS! Maybe even comic sans! Maybe I can play starcraft with one hand while I do this.', 'enhancement', 320, 45, -2, 4),
(212, 'Greenhorn Mailing List', 'You know ... To send emails to and stuff. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 360, 51, -2, 4),
(213, 'Greenhorn Forums', 'Calling all trolls. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 400, 57, -2, 4),
(214, 'Greenhorn IRC Channel', 'Old enough to keep the technically challenged out. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 40, 4, -2, 4),
(215, 'Greenhorn Phone App', 'I need to access this from my phone. Now. Maybe I can play starcraft with one hand while I do this.', 'enhancement', 80, 9, -2, 4),
(216, 'Greenhorn Patch', 'Someone attached a patch on the issue tracker! Maybe I can play starcraft with one hand while I do this.', 'pull_request', 10, 4, -10, 1),
(217, 'Greenhorn Feature', 'Someone wrote some code and posted it! Maybe I can play starcraft with one hand while I do this.', 'pull_request', 10, 9, -10, 1),
(218, 'Greenhorn Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! Maybe I can play starcraft with one hand while I do this.', 'pull_request', 10, 15, -10, 1),
(219, 'Greenhorn Performance Boost', 'Someone was able to make your system faster! Maybe I can play starcraft with one hand while I do this.', 'pull_request', 10, 21, -10, 1),
(220, 'Novice Syntax Error', 'If you\'re happy and you know it, syntax error! Do I even need my keyboard to fix this?', 'bug', 100, 10, 2, 4),
(221, 'Novice Compilation Error', 'Typos can be a nusiance. Do I even need my keyboard to fix this?', 'bug', 150, 15, 2, 4),
(222, 'Novice Run Time Error', 'Ouch! My program didn\'t like that! Do I even need my keyboard to fix this?', 'bug', 200, 20, 2, 4),
(223, 'Novice Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? Do I even need my keyboard to fix this?', 'bug', 250, 25, 2, 4),
(224, 'Novice Latent Error', 'I was not expecting this result. Do I even need my keyboard to fix this?', 'bug', 300, 31, 2, 4),
(225, 'Novice Division by Zero Error', 'What do you mean you can\'t divide by zero? Do I even need my keyboard to fix this?', 'bug', 350, 36, 2, 4),
(226, 'Novice Overflow Bug', '1 + 1 = 0. Do I even need my keyboard to fix this?', 'bug', 400, 41, 2, 4),
(227, 'Novice Precision Error', '0.9999999999 != 1. Do I even need my keyboard to fix this?', 'bug', 450, 46, 2, 4),
(228, 'Novice Infinite Loop', 'Why won\'t this program terminate? Do I even need my keyboard to fix this?', 'bug', 500, 51, 2, 4),
(229, 'Novice Recursion Error', 'Recursion: See Recursion. Do I even need my keyboard to fix this?', 'bug', 50, 5, 2, 4),
(230, 'Novice Off By One Error', 'Leave it to a computer to be unable to count. Do I even need my keyboard to fix this?', 'bug', 100, 10, 2, 4),
(231, 'Novice Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? Do I even need my keyboard to fix this?', 'bug', 150, 15, 2, 4),
(232, 'Novice Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? Do I even need my keyboard to fix this?', 'bug', 200, 20, 2, 4),
(233, 'Novice Type Error', 'What do you mean I can\'t divide strings by a number? Do I even need my keyboard to fix this?', 'bug', 250, 25, 2, 4),
(234, 'Novice Segfault', 'Who the hell is trying to push the binary into kernel space? Do I even need my keyboard to fix this?', 'bug', 300, 31, 2, 4),
(235, 'Novice Memory Leak', 'Memory is not a black hole. Do I even need my keyboard to fix this?', 'bug', 350, 36, 2, 4),
(236, 'Novice Buffer Overflow', 'You shall not pass! Do I even need my keyboard to fix this?', 'bug', 400, 41, 2, 4),
(237, 'Novice Stack Overflow', 'Pushing but not popping. Do I even need my keyboard to fix this?', 'bug', 450, 46, 2, 4),
(238, 'Novice Deadlock', 'Why do mute philosophers need to eat with two forks anyway? Do I even need my keyboard to fix this?', 'bug', 500, 51, 2, 4),
(239, 'Novice Race Condition', 'Remove seatbelt, then leave the car. Do I even need my keyboard to fix this?', 'bug', 50, 5, 2, 4),
(240, 'Novice Incorrect API usage', 'api.exceptIncomingTransmission() Do I even need my keyboard to fix this?', 'bug', 100, 10, 2, 4),
(241, 'Novice Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? Do I even need my keyboard to fix this?', 'bug', 150, 15, 2, 4),
(242, 'Novice Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? Do I even need my keyboard to fix this?', 'bug', 200, 20, 2, 4),
(243, 'Novice Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. Do I even need my keyboard to fix this?', 'bug', 250, 25, 2, 4),
(244, 'Novice Random Disk Access Issue', 'Why does this library use twelve thousand individual files? Do I even need my keyboard to fix this?', 'bug', 300, 31, 2, 4),
(245, 'Novice Unpropagated Updates', 'Why subtract when you can just add a negative number? Do I even need my keyboard to fix this?', 'bug', 350, 36, 2, 4),
(246, 'Novice Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? Do I even need my keyboard to fix this?', 'bug', 400, 41, 2, 4),
(247, 'Novice Documentation Issue', 'Moths do not belong in the relay. Do I even need my keyboard to fix this?', 'bug', 450, 46, 2, 4),
(248, 'Novice Hard Coded', 'This needs to be dynamic. Do I even need my keyboard to fix this?', 'bug', 500, 51, 2, 4),
(249, 'Novice Business Request', 'Quite a few companies would love to see this happen. Do I even need my keyboard to fix this?', 'enhancement', 100, 12, -2, 4),
(250, 'Novice Personal Request', 'Not many people will benefit from this, but it is rather good idea. Do I even need my keyboard to fix this?', 'enhancement', 150, 19, -2, 4),
(251, 'Novice API', 'If we can build an API, we can allow folks to connect to it. Do I even need my keyboard to fix this?', 'enhancement', 200, 26, -2, 4),
(252, 'Novice User Interface', 'People like to click buttons. Let\'s add those! Do I even need my keyboard to fix this?', 'enhancement', 250, 34, -2, 4),
(253, 'Novice Command Line Interface', 'Let\'s make our system script-able! Do I even need my keyboard to fix this?', 'enhancement', 300, 42, -2, 4),
(254, 'Novice Daemon', 'Our system needs to run all the time! Do I even need my keyboard to fix this?', 'enhancement', 350, 49, -2, 4),
(255, 'Novice Database', 'Our information needs to be persistent. Do I even need my keyboard to fix this?', 'enhancement', 400, 57, -2, 4),
(256, 'Novice Threading', 'Our system needs to take advantage of multi-core processors. Do I even need my keyboard to fix this?', 'enhancement', 450, 65, -2, 4),
(257, 'Novice Documentation', 'RTFM? WABFM. Do I even need my keyboard to fix this?', 'enhancement', 500, 73, -2, 4),
(258, 'Novice Hardware Integration', 'We need to add a dongle. Do I even need my keyboard to fix this?', 'enhancement', 50, 5, -2, 4),
(259, 'Novice Automated Tests', 'I\'m tired of testing. Do I even need my keyboard to fix this?', 'enhancement', 100, 12, -2, 4),
(260, 'Novice Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. Do I even need my keyboard to fix this?', 'enhancement', 150, 19, -2, 4),
(261, 'Novice Deploy Scripts', 'We need to have a public instance. Do I even need my keyboard to fix this?', 'enhancement', 200, 26, -2, 4),
(262, 'Novice Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. Do I even need my keyboard to fix this?', 'enhancement', 250, 34, -2, 4),
(263, 'Novice Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. Do I even need my keyboard to fix this?', 'enhancement', 300, 42, -2, 4),
(264, 'Novice Third Party Library', 'Why reinvent the wheel? Do I even need my keyboard to fix this?', 'enhancement', 350, 49, -2, 4),
(265, 'Novice Website', 'We need a design that POPS! Maybe even comic sans! Do I even need my keyboard to fix this?', 'enhancement', 400, 57, -2, 4),
(266, 'Novice Mailing List', 'You know ... To send emails to and stuff. Do I even need my keyboard to fix this?', 'enhancement', 450, 65, -2, 4),
(267, 'Novice Forums', 'Calling all trolls. Do I even need my keyboard to fix this?', 'enhancement', 500, 73, -2, 4),
(268, 'Novice IRC Channel', 'Old enough to keep the technically challenged out. Do I even need my keyboard to fix this?', 'enhancement', 50, 5, -2, 4),
(269, 'Novice Phone App', 'I need to access this from my phone. Now. Do I even need my keyboard to fix this?', 'enhancement', 100, 12, -2, 4),
(270, 'Novice Patch', 'Someone attached a patch on the issue tracker! Do I even need my keyboard to fix this?', 'pull_request', 10, 5, -10, 1),
(271, 'Novice Feature', 'Someone wrote some code and posted it! Do I even need my keyboard to fix this?', 'pull_request', 10, 12, -10, 1),
(272, 'Novice Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! Do I even need my keyboard to fix this?', 'pull_request', 10, 19, -10, 1),
(273, 'Novice Performance Boost', 'Someone was able to make your system faster! Do I even need my keyboard to fix this?', 'pull_request', 10, 26, -10, 1),
(274, 'Very Easy Syntax Error', 'If you\'re happy and you know it, syntax error! While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 120, 12, 2, 4),
(275, 'Very Easy Compilation Error', 'Typos can be a nusiance. While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 180, 18, 2, 4),
(276, 'Very Easy Run Time Error', 'Ouch! My program didn\'t like that! While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 240, 24, 2, 4),
(277, 'Very Easy Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 300, 31, 2, 4),
(278, 'Very Easy Latent Error', 'I was not expecting this result. While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 360, 37, 2, 4),
(279, 'Very Easy Division by Zero Error', 'What do you mean you can\'t divide by zero? While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 420, 43, 2, 4),
(280, 'Very Easy Overflow Bug', '1 + 1 = 0. While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 480, 49, 2, 4),
(281, 'Very Easy Precision Error', '0.9999999999 != 1. While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 540, 56, 2, 4),
(282, 'Very Easy Infinite Loop', 'Why won\'t this program terminate? While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 600, 62, 2, 4),
(283, 'Very Easy Recursion Error', 'Recursion: See Recursion. While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 60, 6, 2, 4),
(284, 'Very Easy Off By One Error', 'Leave it to a computer to be unable to count. While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 120, 12, 2, 4),
(285, 'Very Easy Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 180, 18, 2, 4),
(286, 'Very Easy Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 240, 24, 2, 4),
(287, 'Very Easy Type Error', 'What do you mean I can\'t divide strings by a number? While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 300, 31, 2, 4),
(288, 'Very Easy Segfault', 'Who the hell is trying to push the binary into kernel space? While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 360, 37, 2, 4),
(289, 'Very Easy Memory Leak', 'Memory is not a black hole. While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 420, 43, 2, 4),
(290, 'Very Easy Buffer Overflow', 'You shall not pass! While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 480, 49, 2, 4),
(291, 'Very Easy Stack Overflow', 'Pushing but not popping. While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 540, 56, 2, 4),
(292, 'Very Easy Deadlock', 'Why do mute philosophers need to eat with two forks anyway? While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 600, 62, 2, 4),
(293, 'Very Easy Race Condition', 'Remove seatbelt, then leave the car. While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 60, 6, 2, 4),
(294, 'Very Easy Incorrect API usage', 'api.exceptIncomingTransmission() While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 120, 12, 2, 4),
(295, 'Very Easy Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 180, 18, 2, 4),
(296, 'Very Easy Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 240, 24, 2, 4),
(297, 'Very Easy Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 300, 31, 2, 4),
(298, 'Very Easy Random Disk Access Issue', 'Why does this library use twelve thousand individual files? While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 360, 37, 2, 4),
(299, 'Very Easy Unpropagated Updates', 'Why subtract when you can just add a negative number? While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 420, 43, 2, 4),
(300, 'Very Easy Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 480, 49, 2, 4),
(301, 'Very Easy Documentation Issue', 'Moths do not belong in the relay. While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 540, 56, 2, 4),
(302, 'Very Easy Hard Coded', 'This needs to be dynamic. While I\'m doing this, I guess I\'ll learn DVORAK.', 'bug', 600, 62, 2, 4),
(303, 'Very Easy Business Request', 'Quite a few companies would love to see this happen. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 120, 15, -2, 4),
(304, 'Very Easy Personal Request', 'Not many people will benefit from this, but it is rather good idea. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 180, 24, -2, 4),
(305, 'Very Easy API', 'If we can build an API, we can allow folks to connect to it. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 240, 32, -2, 4),
(306, 'Very Easy User Interface', 'People like to click buttons. Let\'s add those! While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 300, 42, -2, 4),
(307, 'Very Easy Command Line Interface', 'Let\'s make our system script-able! While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 360, 51, -2, 4),
(308, 'Very Easy Daemon', 'Our system needs to run all the time! While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 420, 61, -2, 4),
(309, 'Very Easy Database', 'Our information needs to be persistent. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 480, 70, -2, 4),
(310, 'Very Easy Threading', 'Our system needs to take advantage of multi-core processors. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 540, 80, -2, 4),
(311, 'Very Easy Documentation', 'RTFM? WABFM. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 600, 90, -2, 4),
(312, 'Very Easy Hardware Integration', 'We need to add a dongle. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 60, 7, -2, 4),
(313, 'Very Easy Automated Tests', 'I\'m tired of testing. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 120, 15, -2, 4),
(314, 'Very Easy Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 180, 24, -2, 4),
(315, 'Very Easy Deploy Scripts', 'We need to have a public instance. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 240, 32, -2, 4),
(316, 'Very Easy Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 300, 42, -2, 4),
(317, 'Very Easy Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 360, 51, -2, 4),
(318, 'Very Easy Third Party Library', 'Why reinvent the wheel? While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 420, 61, -2, 4),
(319, 'Very Easy Website', 'We need a design that POPS! Maybe even comic sans! While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 480, 70, -2, 4),
(320, 'Very Easy Mailing List', 'You know ... To send emails to and stuff. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 540, 80, -2, 4),
(321, 'Very Easy Forums', 'Calling all trolls. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 600, 90, -2, 4),
(322, 'Very Easy IRC Channel', 'Old enough to keep the technically challenged out. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 60, 7, -2, 4),
(323, 'Very Easy Phone App', 'I need to access this from my phone. Now. While I\'m doing this, I guess I\'ll learn DVORAK.', 'enhancement', 120, 15, -2, 4),
(324, 'Very Easy Patch', 'Someone attached a patch on the issue tracker! While I\'m doing this, I guess I\'ll learn DVORAK.', 'pull_request', 10, 7, -10, 1),
(325, 'Very Easy Feature', 'Someone wrote some code and posted it! While I\'m doing this, I guess I\'ll learn DVORAK.', 'pull_request', 10, 15, -10, 1),
(326, 'Very Easy Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! While I\'m doing this, I guess I\'ll learn DVORAK.', 'pull_request', 10, 24, -10, 1),
(327, 'Very Easy Performance Boost', 'Someone was able to make your system faster! While I\'m doing this, I guess I\'ll learn DVORAK.', 'pull_request', 10, 32, -10, 1),
(328, 'Rookie Syntax Error', 'If you\'re happy and you know it, syntax error! Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 140, 14, 2, 4),
(329, 'Rookie Compilation Error', 'Typos can be a nusiance. Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 210, 21, 2, 4),
(330, 'Rookie Run Time Error', 'Ouch! My program didn\'t like that! Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 280, 28, 2, 4),
(331, 'Rookie Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 350, 36, 2, 4),
(332, 'Rookie Latent Error', 'I was not expecting this result. Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 420, 43, 2, 4),
(333, 'Rookie Division by Zero Error', 'What do you mean you can\'t divide by zero? Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 490, 50, 2, 4),
(334, 'Rookie Overflow Bug', '1 + 1 = 0. Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 560, 58, 2, 4),
(335, 'Rookie Precision Error', '0.9999999999 != 1. Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 630, 65, 2, 4),
(336, 'Rookie Infinite Loop', 'Why won\'t this program terminate? Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 700, 73, 2, 4),
(337, 'Rookie Recursion Error', 'Recursion: See Recursion. Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 70, 7, 2, 4),
(338, 'Rookie Off By One Error', 'Leave it to a computer to be unable to count. Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 140, 14, 2, 4),
(339, 'Rookie Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 210, 21, 2, 4),
(340, 'Rookie Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 280, 28, 2, 4),
(341, 'Rookie Type Error', 'What do you mean I can\'t divide strings by a number? Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 350, 36, 2, 4),
(342, 'Rookie Segfault', 'Who the hell is trying to push the binary into kernel space? Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 420, 43, 2, 4),
(343, 'Rookie Memory Leak', 'Memory is not a black hole. Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 490, 50, 2, 4),
(344, 'Rookie Buffer Overflow', 'You shall not pass! Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 560, 58, 2, 4),
(345, 'Rookie Stack Overflow', 'Pushing but not popping. Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 630, 65, 2, 4),
(346, 'Rookie Deadlock', 'Why do mute philosophers need to eat with two forks anyway? Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 700, 73, 2, 4),
(347, 'Rookie Race Condition', 'Remove seatbelt, then leave the car. Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 70, 7, 2, 4),
(348, 'Rookie Incorrect API usage', 'api.exceptIncomingTransmission() Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 140, 14, 2, 4),
(349, 'Rookie Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 210, 21, 2, 4),
(350, 'Rookie Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 280, 28, 2, 4),
(351, 'Rookie Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 350, 36, 2, 4),
(352, 'Rookie Random Disk Access Issue', 'Why does this library use twelve thousand individual files? Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 420, 43, 2, 4),
(353, 'Rookie Unpropagated Updates', 'Why subtract when you can just add a negative number? Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 490, 50, 2, 4),
(354, 'Rookie Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 560, 58, 2, 4),
(355, 'Rookie Documentation Issue', 'Moths do not belong in the relay. Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 630, 65, 2, 4),
(356, 'Rookie Hard Coded', 'This needs to be dynamic. Wow, this is really easy to fix. Even a VB coder could fix this.', 'bug', 700, 73, 2, 4),
(357, 'Rookie Business Request', 'Quite a few companies would love to see this happen. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 140, 18, -2, 4),
(358, 'Rookie Personal Request', 'Not many people will benefit from this, but it is rather good idea. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 210, 28, -2, 4),
(359, 'Rookie API', 'If we can build an API, we can allow folks to connect to it. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 280, 39, -2, 4),
(360, 'Rookie User Interface', 'People like to click buttons. Let\'s add those! Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 350, 49, -2, 4),
(361, 'Rookie Command Line Interface', 'Let\'s make our system script-able! Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 420, 61, -2, 4),
(362, 'Rookie Daemon', 'Our system needs to run all the time! Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 490, 72, -2, 4),
(363, 'Rookie Database', 'Our information needs to be persistent. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 560, 83, -2, 4),
(364, 'Rookie Threading', 'Our system needs to take advantage of multi-core processors. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 630, 95, -2, 4),
(365, 'Rookie Documentation', 'RTFM? WABFM. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 700, 107, -2, 4),
(366, 'Rookie Hardware Integration', 'We need to add a dongle. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 70, 8, -2, 4),
(367, 'Rookie Automated Tests', 'I\'m tired of testing. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 140, 18, -2, 4),
(368, 'Rookie Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 210, 28, -2, 4),
(369, 'Rookie Deploy Scripts', 'We need to have a public instance. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 280, 39, -2, 4),
(370, 'Rookie Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 350, 49, -2, 4),
(371, 'Rookie Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 420, 61, -2, 4),
(372, 'Rookie Third Party Library', 'Why reinvent the wheel? Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 490, 72, -2, 4),
(373, 'Rookie Website', 'We need a design that POPS! Maybe even comic sans! Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 560, 83, -2, 4),
(374, 'Rookie Mailing List', 'You know ... To send emails to and stuff. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 630, 95, -2, 4),
(375, 'Rookie Forums', 'Calling all trolls. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 700, 107, -2, 4),
(376, 'Rookie IRC Channel', 'Old enough to keep the technically challenged out. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 70, 8, -2, 4),
(377, 'Rookie Phone App', 'I need to access this from my phone. Now. Wow, this is really easy to fix. Even a VB coder could fix this.', 'enhancement', 140, 18, -2, 4),
(378, 'Rookie Patch', 'Someone attached a patch on the issue tracker! Wow, this is really easy to fix. Even a VB coder could fix this.', 'pull_request', 10, 8, -10, 1),
(379, 'Rookie Feature', 'Someone wrote some code and posted it! Wow, this is really easy to fix. Even a VB coder could fix this.', 'pull_request', 10, 18, -10, 1),
(380, 'Rookie Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! Wow, this is really easy to fix. Even a VB coder could fix this.', 'pull_request', 10, 28, -10, 1),
(381, 'Rookie Performance Boost', 'Someone was able to make your system faster! Wow, this is really easy to fix. Even a VB coder could fix this.', 'pull_request', 10, 39, -10, 1),
(382, 'Amateur Syntax Error', 'If you\'re happy and you know it, syntax error! Ok, drag and drop won\'t fix this.', 'bug', 160, 16, 2, 3),
(383, 'Amateur Compilation Error', 'Typos can be a nusiance. Ok, drag and drop won\'t fix this.', 'bug', 240, 24, 2, 3),
(384, 'Amateur Run Time Error', 'Ouch! My program didn\'t like that! Ok, drag and drop won\'t fix this.', 'bug', 320, 33, 2, 3),
(385, 'Amateur Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? Ok, drag and drop won\'t fix this.', 'bug', 400, 41, 2, 3),
(386, 'Amateur Latent Error', 'I was not expecting this result. Ok, drag and drop won\'t fix this.', 'bug', 480, 49, 2, 3),
(387, 'Amateur Division by Zero Error', 'What do you mean you can\'t divide by zero? Ok, drag and drop won\'t fix this.', 'bug', 560, 58, 2, 3),
(388, 'Amateur Overflow Bug', '1 + 1 = 0. Ok, drag and drop won\'t fix this.', 'bug', 640, 66, 2, 3),
(389, 'Amateur Precision Error', '0.9999999999 != 1. Ok, drag and drop won\'t fix this.', 'bug', 720, 75, 2, 3),
(390, 'Amateur Infinite Loop', 'Why won\'t this program terminate? Ok, drag and drop won\'t fix this.', 'bug', 800, 83, 2, 3),
(391, 'Amateur Recursion Error', 'Recursion: See Recursion. Ok, drag and drop won\'t fix this.', 'bug', 80, 8, 2, 3),
(392, 'Amateur Off By One Error', 'Leave it to a computer to be unable to count. Ok, drag and drop won\'t fix this.', 'bug', 160, 16, 2, 3),
(393, 'Amateur Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? Ok, drag and drop won\'t fix this.', 'bug', 240, 24, 2, 3),
(394, 'Amateur Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? Ok, drag and drop won\'t fix this.', 'bug', 320, 33, 2, 3),
(395, 'Amateur Type Error', 'What do you mean I can\'t divide strings by a number? Ok, drag and drop won\'t fix this.', 'bug', 400, 41, 2, 3),
(396, 'Amateur Segfault', 'Who the hell is trying to push the binary into kernel space? Ok, drag and drop won\'t fix this.', 'bug', 480, 49, 2, 3),
(397, 'Amateur Memory Leak', 'Memory is not a black hole. Ok, drag and drop won\'t fix this.', 'bug', 560, 58, 2, 3),
(398, 'Amateur Buffer Overflow', 'You shall not pass! Ok, drag and drop won\'t fix this.', 'bug', 640, 66, 2, 3),
(399, 'Amateur Stack Overflow', 'Pushing but not popping. Ok, drag and drop won\'t fix this.', 'bug', 720, 75, 2, 3),
(400, 'Amateur Deadlock', 'Why do mute philosophers need to eat with two forks anyway? Ok, drag and drop won\'t fix this.', 'bug', 800, 83, 2, 3),
(401, 'Amateur Race Condition', 'Remove seatbelt, then leave the car. Ok, drag and drop won\'t fix this.', 'bug', 80, 8, 2, 3),
(402, 'Amateur Incorrect API usage', 'api.exceptIncomingTransmission() Ok, drag and drop won\'t fix this.', 'bug', 160, 16, 2, 3),
(403, 'Amateur Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? Ok, drag and drop won\'t fix this.', 'bug', 240, 24, 2, 3),
(404, 'Amateur Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? Ok, drag and drop won\'t fix this.', 'bug', 320, 33, 2, 3),
(405, 'Amateur Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. Ok, drag and drop won\'t fix this.', 'bug', 400, 41, 2, 3),
(406, 'Amateur Random Disk Access Issue', 'Why does this library use twelve thousand individual files? Ok, drag and drop won\'t fix this.', 'bug', 480, 49, 2, 3),
(407, 'Amateur Unpropagated Updates', 'Why subtract when you can just add a negative number? Ok, drag and drop won\'t fix this.', 'bug', 560, 58, 2, 3),
(408, 'Amateur Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? Ok, drag and drop won\'t fix this.', 'bug', 640, 66, 2, 3),
(409, 'Amateur Documentation Issue', 'Moths do not belong in the relay. Ok, drag and drop won\'t fix this.', 'bug', 720, 75, 2, 3),
(410, 'Amateur Hard Coded', 'This needs to be dynamic. Ok, drag and drop won\'t fix this.', 'bug', 800, 83, 2, 3),
(411, 'Amateur Business Request', 'Quite a few companies would love to see this happen. Ok, drag and drop won\'t fix this.', 'enhancement', 160, 21, -2, 3),
(412, 'Amateur Personal Request', 'Not many people will benefit from this, but it is rather good idea. Ok, drag and drop won\'t fix this.', 'enhancement', 240, 32, -2, 3),
(413, 'Amateur API', 'If we can build an API, we can allow folks to connect to it. Ok, drag and drop won\'t fix this.', 'enhancement', 320, 45, -2, 3),
(414, 'Amateur User Interface', 'People like to click buttons. Let\'s add those! Ok, drag and drop won\'t fix this.', 'enhancement', 400, 57, -2, 3),
(415, 'Amateur Command Line Interface', 'Let\'s make our system script-able! Ok, drag and drop won\'t fix this.', 'enhancement', 480, 70, -2, 3),
(416, 'Amateur Daemon', 'Our system needs to run all the time! Ok, drag and drop won\'t fix this.', 'enhancement', 560, 83, -2, 3),
(417, 'Amateur Database', 'Our information needs to be persistent. Ok, drag and drop won\'t fix this.', 'enhancement', 640, 97, -2, 3),
(418, 'Amateur Threading', 'Our system needs to take advantage of multi-core processors. Ok, drag and drop won\'t fix this.', 'enhancement', 720, 110, -2, 3),
(419, 'Amateur Documentation', 'RTFM? WABFM. Ok, drag and drop won\'t fix this.', 'enhancement', 800, 123, -2, 3),
(420, 'Amateur Hardware Integration', 'We need to add a dongle. Ok, drag and drop won\'t fix this.', 'enhancement', 80, 9, -2, 3),
(421, 'Amateur Automated Tests', 'I\'m tired of testing. Ok, drag and drop won\'t fix this.', 'enhancement', 160, 21, -2, 3),
(422, 'Amateur Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. Ok, drag and drop won\'t fix this.', 'enhancement', 240, 32, -2, 3),
(423, 'Amateur Deploy Scripts', 'We need to have a public instance. Ok, drag and drop won\'t fix this.', 'enhancement', 320, 45, -2, 3),
(424, 'Amateur Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. Ok, drag and drop won\'t fix this.', 'enhancement', 400, 57, -2, 3),
(425, 'Amateur Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. Ok, drag and drop won\'t fix this.', 'enhancement', 480, 70, -2, 3),
(426, 'Amateur Third Party Library', 'Why reinvent the wheel? Ok, drag and drop won\'t fix this.', 'enhancement', 560, 83, -2, 3),
(427, 'Amateur Website', 'We need a design that POPS! Maybe even comic sans! Ok, drag and drop won\'t fix this.', 'enhancement', 640, 97, -2, 3),
(428, 'Amateur Mailing List', 'You know ... To send emails to and stuff. Ok, drag and drop won\'t fix this.', 'enhancement', 720, 110, -2, 3),
(429, 'Amateur Forums', 'Calling all trolls. Ok, drag and drop won\'t fix this.', 'enhancement', 800, 123, -2, 3),
(430, 'Amateur IRC Channel', 'Old enough to keep the technically challenged out. Ok, drag and drop won\'t fix this.', 'enhancement', 80, 9, -2, 3),
(431, 'Amateur Phone App', 'I need to access this from my phone. Now. Ok, drag and drop won\'t fix this.', 'enhancement', 160, 21, -2, 3),
(432, 'Amateur Patch', 'Someone attached a patch on the issue tracker! Ok, drag and drop won\'t fix this.', 'pull_request', 10, 9, -10, 1),
(433, 'Amateur Feature', 'Someone wrote some code and posted it! Ok, drag and drop won\'t fix this.', 'pull_request', 10, 21, -10, 1),
(434, 'Amateur Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! Ok, drag and drop won\'t fix this.', 'pull_request', 10, 32, -10, 1),
(435, 'Amateur Performance Boost', 'Someone was able to make your system faster! Ok, drag and drop won\'t fix this.', 'pull_request', 10, 45, -10, 1),
(436, 'Apprentice Syntax Error', 'If you\'re happy and you know it, syntax error! Did someone say Excel macro?', 'bug', 180, 18, 2, 3),
(437, 'Apprentice Compilation Error', 'Typos can be a nusiance. Did someone say Excel macro?', 'bug', 270, 27, 2, 3),
(438, 'Apprentice Run Time Error', 'Ouch! My program didn\'t like that! Did someone say Excel macro?', 'bug', 360, 37, 2, 3),
(439, 'Apprentice Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? Did someone say Excel macro?', 'bug', 450, 46, 2, 3),
(440, 'Apprentice Latent Error', 'I was not expecting this result. Did someone say Excel macro?', 'bug', 540, 56, 2, 3),
(441, 'Apprentice Division by Zero Error', 'What do you mean you can\'t divide by zero? Did someone say Excel macro?', 'bug', 630, 65, 2, 3),
(442, 'Apprentice Overflow Bug', '1 + 1 = 0. Did someone say Excel macro?', 'bug', 720, 75, 2, 3),
(443, 'Apprentice Precision Error', '0.9999999999 != 1. Did someone say Excel macro?', 'bug', 810, 84, 2, 3),
(444, 'Apprentice Infinite Loop', 'Why won\'t this program terminate? Did someone say Excel macro?', 'bug', 900, 94, 2, 3),
(445, 'Apprentice Recursion Error', 'Recursion: See Recursion. Did someone say Excel macro?', 'bug', 90, 9, 2, 3),
(446, 'Apprentice Off By One Error', 'Leave it to a computer to be unable to count. Did someone say Excel macro?', 'bug', 180, 18, 2, 3),
(447, 'Apprentice Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? Did someone say Excel macro?', 'bug', 270, 27, 2, 3),
(448, 'Apprentice Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? Did someone say Excel macro?', 'bug', 360, 37, 2, 3),
(449, 'Apprentice Type Error', 'What do you mean I can\'t divide strings by a number? Did someone say Excel macro?', 'bug', 450, 46, 2, 3),
(450, 'Apprentice Segfault', 'Who the hell is trying to push the binary into kernel space? Did someone say Excel macro?', 'bug', 540, 56, 2, 3),
(451, 'Apprentice Memory Leak', 'Memory is not a black hole. Did someone say Excel macro?', 'bug', 630, 65, 2, 3),
(452, 'Apprentice Buffer Overflow', 'You shall not pass! Did someone say Excel macro?', 'bug', 720, 75, 2, 3),
(453, 'Apprentice Stack Overflow', 'Pushing but not popping. Did someone say Excel macro?', 'bug', 810, 84, 2, 3),
(454, 'Apprentice Deadlock', 'Why do mute philosophers need to eat with two forks anyway? Did someone say Excel macro?', 'bug', 900, 94, 2, 3),
(455, 'Apprentice Race Condition', 'Remove seatbelt, then leave the car. Did someone say Excel macro?', 'bug', 90, 9, 2, 3),
(456, 'Apprentice Incorrect API usage', 'api.exceptIncomingTransmission() Did someone say Excel macro?', 'bug', 180, 18, 2, 3),
(457, 'Apprentice Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? Did someone say Excel macro?', 'bug', 270, 27, 2, 3),
(458, 'Apprentice Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? Did someone say Excel macro?', 'bug', 360, 37, 2, 3),
(459, 'Apprentice Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. Did someone say Excel macro?', 'bug', 450, 46, 2, 3),
(460, 'Apprentice Random Disk Access Issue', 'Why does this library use twelve thousand individual files? Did someone say Excel macro?', 'bug', 540, 56, 2, 3),
(461, 'Apprentice Unpropagated Updates', 'Why subtract when you can just add a negative number? Did someone say Excel macro?', 'bug', 630, 65, 2, 3),
(462, 'Apprentice Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? Did someone say Excel macro?', 'bug', 720, 75, 2, 3),
(463, 'Apprentice Documentation Issue', 'Moths do not belong in the relay. Did someone say Excel macro?', 'bug', 810, 84, 2, 3),
(464, 'Apprentice Hard Coded', 'This needs to be dynamic. Did someone say Excel macro?', 'bug', 900, 94, 2, 3),
(465, 'Apprentice Business Request', 'Quite a few companies would love to see this happen. Did someone say Excel macro?', 'enhancement', 180, 24, -2, 3),
(466, 'Apprentice Personal Request', 'Not many people will benefit from this, but it is rather good idea. Did someone say Excel macro?', 'enhancement', 270, 37, -2, 3),
(467, 'Apprentice API', 'If we can build an API, we can allow folks to connect to it. Did someone say Excel macro?', 'enhancement', 360, 51, -2, 3),
(468, 'Apprentice User Interface', 'People like to click buttons. Let\'s add those! Did someone say Excel macro?', 'enhancement', 450, 65, -2, 3),
(469, 'Apprentice Command Line Interface', 'Let\'s make our system script-able! Did someone say Excel macro?', 'enhancement', 540, 80, -2, 3),
(470, 'Apprentice Daemon', 'Our system needs to run all the time! Did someone say Excel macro?', 'enhancement', 630, 95, -2, 3),
(471, 'Apprentice Database', 'Our information needs to be persistent. Did someone say Excel macro?', 'enhancement', 720, 110, -2, 3),
(472, 'Apprentice Threading', 'Our system needs to take advantage of multi-core processors. Did someone say Excel macro?', 'enhancement', 810, 125, -2, 3),
(473, 'Apprentice Documentation', 'RTFM? WABFM. Did someone say Excel macro?', 'enhancement', 900, 141, -2, 3),
(474, 'Apprentice Hardware Integration', 'We need to add a dongle. Did someone say Excel macro?', 'enhancement', 90, 11, -2, 3),
(475, 'Apprentice Automated Tests', 'I\'m tired of testing. Did someone say Excel macro?', 'enhancement', 180, 24, -2, 3),
(476, 'Apprentice Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. Did someone say Excel macro?', 'enhancement', 270, 37, -2, 3),
(477, 'Apprentice Deploy Scripts', 'We need to have a public instance. Did someone say Excel macro?', 'enhancement', 360, 51, -2, 3),
(478, 'Apprentice Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. Did someone say Excel macro?', 'enhancement', 450, 65, -2, 3),
(479, 'Apprentice Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. Did someone say Excel macro?', 'enhancement', 540, 80, -2, 3),
(480, 'Apprentice Third Party Library', 'Why reinvent the wheel? Did someone say Excel macro?', 'enhancement', 630, 95, -2, 3),
(481, 'Apprentice Website', 'We need a design that POPS! Maybe even comic sans! Did someone say Excel macro?', 'enhancement', 720, 110, -2, 3),
(482, 'Apprentice Mailing List', 'You know ... To send emails to and stuff. Did someone say Excel macro?', 'enhancement', 810, 125, -2, 3),
(483, 'Apprentice Forums', 'Calling all trolls. Did someone say Excel macro?', 'enhancement', 900, 141, -2, 3),
(484, 'Apprentice IRC Channel', 'Old enough to keep the technically challenged out. Did someone say Excel macro?', 'enhancement', 90, 11, -2, 3),
(485, 'Apprentice Phone App', 'I need to access this from my phone. Now. Did someone say Excel macro?', 'enhancement', 180, 24, -2, 3),
(486, 'Apprentice Patch', 'Someone attached a patch on the issue tracker! Did someone say Excel macro?', 'pull_request', 10, 11, -10, 1),
(487, 'Apprentice Feature', 'Someone wrote some code and posted it! Did someone say Excel macro?', 'pull_request', 10, 24, -10, 1),
(488, 'Apprentice Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! Did someone say Excel macro?', 'pull_request', 10, 37, -10, 1),
(489, 'Apprentice Performance Boost', 'Someone was able to make your system faster! Did someone say Excel macro?', 'pull_request', 10, 51, -10, 1),
(490, 'Easy Syntax Error', 'If you\'re happy and you know it, syntax error! I guess I\'ll download 300MB of IDE to fix this.', 'bug', 200, 20, 2, 3),
(491, 'Easy Compilation Error', 'Typos can be a nusiance. I guess I\'ll download 300MB of IDE to fix this.', 'bug', 300, 31, 2, 3),
(492, 'Easy Run Time Error', 'Ouch! My program didn\'t like that! I guess I\'ll download 300MB of IDE to fix this.', 'bug', 400, 41, 2, 3),
(493, 'Easy Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? I guess I\'ll download 300MB of IDE to fix this.', 'bug', 500, 51, 2, 3),
(494, 'Easy Latent Error', 'I was not expecting this result. I guess I\'ll download 300MB of IDE to fix this.', 'bug', 600, 62, 2, 3),
(495, 'Easy Division by Zero Error', 'What do you mean you can\'t divide by zero? I guess I\'ll download 300MB of IDE to fix this.', 'bug', 700, 73, 2, 3),
(496, 'Easy Overflow Bug', '1 + 1 = 0. I guess I\'ll download 300MB of IDE to fix this.', 'bug', 800, 83, 2, 3),
(497, 'Easy Precision Error', '0.9999999999 != 1. I guess I\'ll download 300MB of IDE to fix this.', 'bug', 900, 94, 2, 3),
(498, 'Easy Infinite Loop', 'Why won\'t this program terminate? I guess I\'ll download 300MB of IDE to fix this.', 'bug', 1000, 104, 2, 3),
(499, 'Easy Recursion Error', 'Recursion: See Recursion. I guess I\'ll download 300MB of IDE to fix this.', 'bug', 100, 10, 2, 3),
(500, 'Easy Off By One Error', 'Leave it to a computer to be unable to count. I guess I\'ll download 300MB of IDE to fix this.', 'bug', 200, 20, 2, 3),
(501, 'Easy Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? I guess I\'ll download 300MB of IDE to fix this.', 'bug', 300, 31, 2, 3),
(502, 'Easy Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? I guess I\'ll download 300MB of IDE to fix this.', 'bug', 400, 41, 2, 3),
(503, 'Easy Type Error', 'What do you mean I can\'t divide strings by a number? I guess I\'ll download 300MB of IDE to fix this.', 'bug', 500, 51, 2, 3),
(504, 'Easy Segfault', 'Who the hell is trying to push the binary into kernel space? I guess I\'ll download 300MB of IDE to fix this.', 'bug', 600, 62, 2, 3),
(505, 'Easy Memory Leak', 'Memory is not a black hole. I guess I\'ll download 300MB of IDE to fix this.', 'bug', 700, 73, 2, 3),
(506, 'Easy Buffer Overflow', 'You shall not pass! I guess I\'ll download 300MB of IDE to fix this.', 'bug', 800, 83, 2, 3),
(507, 'Easy Stack Overflow', 'Pushing but not popping. I guess I\'ll download 300MB of IDE to fix this.', 'bug', 900, 94, 2, 3),
(508, 'Easy Deadlock', 'Why do mute philosophers need to eat with two forks anyway? I guess I\'ll download 300MB of IDE to fix this.', 'bug', 1000, 104, 2, 3),
(509, 'Easy Race Condition', 'Remove seatbelt, then leave the car. I guess I\'ll download 300MB of IDE to fix this.', 'bug', 100, 10, 2, 3),
(510, 'Easy Incorrect API usage', 'api.exceptIncomingTransmission() I guess I\'ll download 300MB of IDE to fix this.', 'bug', 200, 20, 2, 3),
(511, 'Easy Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? I guess I\'ll download 300MB of IDE to fix this.', 'bug', 300, 31, 2, 3),
(512, 'Easy Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? I guess I\'ll download 300MB of IDE to fix this.', 'bug', 400, 41, 2, 3),
(513, 'Easy Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. I guess I\'ll download 300MB of IDE to fix this.', 'bug', 500, 51, 2, 3),
(514, 'Easy Random Disk Access Issue', 'Why does this library use twelve thousand individual files? I guess I\'ll download 300MB of IDE to fix this.', 'bug', 600, 62, 2, 3),
(515, 'Easy Unpropagated Updates', 'Why subtract when you can just add a negative number? I guess I\'ll download 300MB of IDE to fix this.', 'bug', 700, 73, 2, 3),
(516, 'Easy Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? I guess I\'ll download 300MB of IDE to fix this.', 'bug', 800, 83, 2, 3),
(517, 'Easy Documentation Issue', 'Moths do not belong in the relay. I guess I\'ll download 300MB of IDE to fix this.', 'bug', 900, 94, 2, 3),
(518, 'Easy Hard Coded', 'This needs to be dynamic. I guess I\'ll download 300MB of IDE to fix this.', 'bug', 1000, 104, 2, 3),
(519, 'Easy Business Request', 'Quite a few companies would love to see this happen. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 200, 26, -2, 3),
(520, 'Easy Personal Request', 'Not many people will benefit from this, but it is rather good idea. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 300, 42, -2, 3),
(521, 'Easy API', 'If we can build an API, we can allow folks to connect to it. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 400, 57, -2, 3),
(522, 'Easy User Interface', 'People like to click buttons. Let\'s add those! I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 500, 73, -2, 3),
(523, 'Easy Command Line Interface', 'Let\'s make our system script-able! I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 600, 90, -2, 3),
(524, 'Easy Daemon', 'Our system needs to run all the time! I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 700, 107, -2, 3),
(525, 'Easy Database', 'Our information needs to be persistent. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 800, 123, -2, 3),
(526, 'Easy Threading', 'Our system needs to take advantage of multi-core processors. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 900, 141, -2, 3),
(527, 'Easy Documentation', 'RTFM? WABFM. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 1000, 158, -2, 3),
(528, 'Easy Hardware Integration', 'We need to add a dongle. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 100, 12, -2, 3),
(529, 'Easy Automated Tests', 'I\'m tired of testing. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 200, 26, -2, 3),
(530, 'Easy Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 300, 42, -2, 3),
(531, 'Easy Deploy Scripts', 'We need to have a public instance. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 400, 57, -2, 3),
(532, 'Easy Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 500, 73, -2, 3),
(533, 'Easy Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 600, 90, -2, 3),
(534, 'Easy Third Party Library', 'Why reinvent the wheel? I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 700, 107, -2, 3),
(535, 'Easy Website', 'We need a design that POPS! Maybe even comic sans! I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 800, 123, -2, 3),
(536, 'Easy Mailing List', 'You know ... To send emails to and stuff. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 900, 141, -2, 3),
(537, 'Easy Forums', 'Calling all trolls. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 1000, 158, -2, 3),
(538, 'Easy IRC Channel', 'Old enough to keep the technically challenged out. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 100, 12, -2, 3),
(539, 'Easy Phone App', 'I need to access this from my phone. Now. I guess I\'ll download 300MB of IDE to fix this.', 'enhancement', 200, 26, -2, 3),
(540, 'Easy Patch', 'Someone attached a patch on the issue tracker! I guess I\'ll download 300MB of IDE to fix this.', 'pull_request', 10, 12, -10, 1),
(541, 'Easy Feature', 'Someone wrote some code and posted it! I guess I\'ll download 300MB of IDE to fix this.', 'pull_request', 10, 26, -10, 1),
(542, 'Easy Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! I guess I\'ll download 300MB of IDE to fix this.', 'pull_request', 10, 42, -10, 1),
(543, 'Easy Performance Boost', 'Someone was able to make your system faster! I guess I\'ll download 300MB of IDE to fix this.', 'pull_request', 10, 57, -10, 1),
(544, 'Normal Syntax Error', 'If you\'re happy and you know it, syntax error! This is a issue befitting of me.', 'bug', 220, 22, 2, 3),
(545, 'Normal Compilation Error', 'Typos can be a nusiance. This is a issue befitting of me.', 'bug', 330, 34, 2, 3),
(546, 'Normal Run Time Error', 'Ouch! My program didn\'t like that! This is a issue befitting of me.', 'bug', 440, 45, 2, 3),
(547, 'Normal Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? This is a issue befitting of me.', 'bug', 550, 57, 2, 3),
(548, 'Normal Latent Error', 'I was not expecting this result. This is a issue befitting of me.', 'bug', 660, 68, 2, 3),
(549, 'Normal Division by Zero Error', 'What do you mean you can\'t divide by zero? This is a issue befitting of me.', 'bug', 770, 80, 2, 3),
(550, 'Normal Overflow Bug', '1 + 1 = 0. This is a issue befitting of me.', 'bug', 880, 92, 2, 3),
(551, 'Normal Precision Error', '0.9999999999 != 1. This is a issue befitting of me.', 'bug', 990, 103, 2, 3),
(552, 'Normal Infinite Loop', 'Why won\'t this program terminate? This is a issue befitting of me.', 'bug', 1100, 115, 2, 3),
(553, 'Normal Recursion Error', 'Recursion: See Recursion. This is a issue befitting of me.', 'bug', 110, 11, 2, 3),
(554, 'Normal Off By One Error', 'Leave it to a computer to be unable to count. This is a issue befitting of me.', 'bug', 220, 22, 2, 3),
(555, 'Normal Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? This is a issue befitting of me.', 'bug', 330, 34, 2, 3),
(556, 'Normal Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? This is a issue befitting of me.', 'bug', 440, 45, 2, 3),
(557, 'Normal Type Error', 'What do you mean I can\'t divide strings by a number? This is a issue befitting of me.', 'bug', 550, 57, 2, 3),
(558, 'Normal Segfault', 'Who the hell is trying to push the binary into kernel space? This is a issue befitting of me.', 'bug', 660, 68, 2, 3),
(559, 'Normal Memory Leak', 'Memory is not a black hole. This is a issue befitting of me.', 'bug', 770, 80, 2, 3),
(560, 'Normal Buffer Overflow', 'You shall not pass! This is a issue befitting of me.', 'bug', 880, 92, 2, 3),
(561, 'Normal Stack Overflow', 'Pushing but not popping. This is a issue befitting of me.', 'bug', 990, 103, 2, 3),
(562, 'Normal Deadlock', 'Why do mute philosophers need to eat with two forks anyway? This is a issue befitting of me.', 'bug', 1100, 115, 2, 3),
(563, 'Normal Race Condition', 'Remove seatbelt, then leave the car. This is a issue befitting of me.', 'bug', 110, 11, 2, 3),
(564, 'Normal Incorrect API usage', 'api.exceptIncomingTransmission() This is a issue befitting of me.', 'bug', 220, 22, 2, 3),
(565, 'Normal Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? This is a issue befitting of me.', 'bug', 330, 34, 2, 3),
(566, 'Normal Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? This is a issue befitting of me.', 'bug', 440, 45, 2, 3),
(567, 'Normal Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. This is a issue befitting of me.', 'bug', 550, 57, 2, 3),
(568, 'Normal Random Disk Access Issue', 'Why does this library use twelve thousand individual files? This is a issue befitting of me.', 'bug', 660, 68, 2, 3),
(569, 'Normal Unpropagated Updates', 'Why subtract when you can just add a negative number? This is a issue befitting of me.', 'bug', 770, 80, 2, 3),
(570, 'Normal Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? This is a issue befitting of me.', 'bug', 880, 92, 2, 3),
(571, 'Normal Documentation Issue', 'Moths do not belong in the relay. This is a issue befitting of me.', 'bug', 990, 103, 2, 3),
(572, 'Normal Hard Coded', 'This needs to be dynamic. This is a issue befitting of me.', 'bug', 1100, 115, 2, 3),
(573, 'Normal Business Request', 'Quite a few companies would love to see this happen. This is a issue befitting of me.', 'enhancement', 220, 29, -2, 3),
(574, 'Normal Personal Request', 'Not many people will benefit from this, but it is rather good idea. This is a issue befitting of me.', 'enhancement', 330, 46, -2, 3),
(575, 'Normal API', 'If we can build an API, we can allow folks to connect to it. This is a issue befitting of me.', 'enhancement', 440, 64, -2, 3),
(576, 'Normal User Interface', 'People like to click buttons. Let\'s add those! This is a issue befitting of me.', 'enhancement', 550, 82, -2, 3),
(577, 'Normal Command Line Interface', 'Let\'s make our system script-able! This is a issue befitting of me.', 'enhancement', 660, 100, -2, 3),
(578, 'Normal Daemon', 'Our system needs to run all the time! This is a issue befitting of me.', 'enhancement', 770, 118, -2, 3),
(579, 'Normal Database', 'Our information needs to be persistent. This is a issue befitting of me.', 'enhancement', 880, 137, -2, 3),
(580, 'Normal Threading', 'Our system needs to take advantage of multi-core processors. This is a issue befitting of me.', 'enhancement', 990, 156, -2, 3),
(581, 'Normal Documentation', 'RTFM? WABFM. This is a issue befitting of me.', 'enhancement', 1100, 176, -2, 3),
(582, 'Normal Hardware Integration', 'We need to add a dongle. This is a issue befitting of me.', 'enhancement', 110, 13, -2, 3),
(583, 'Normal Automated Tests', 'I\'m tired of testing. This is a issue befitting of me.', 'enhancement', 220, 29, -2, 3),
(584, 'Normal Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. This is a issue befitting of me.', 'enhancement', 330, 46, -2, 3),
(585, 'Normal Deploy Scripts', 'We need to have a public instance. This is a issue befitting of me.', 'enhancement', 440, 64, -2, 3),
(586, 'Normal Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. This is a issue befitting of me.', 'enhancement', 550, 82, -2, 3),
(587, 'Normal Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. This is a issue befitting of me.', 'enhancement', 660, 100, -2, 3),
(588, 'Normal Third Party Library', 'Why reinvent the wheel? This is a issue befitting of me.', 'enhancement', 770, 118, -2, 3),
(589, 'Normal Website', 'We need a design that POPS! Maybe even comic sans! This is a issue befitting of me.', 'enhancement', 880, 137, -2, 3),
(590, 'Normal Mailing List', 'You know ... To send emails to and stuff. This is a issue befitting of me.', 'enhancement', 990, 156, -2, 3),
(591, 'Normal Forums', 'Calling all trolls. This is a issue befitting of me.', 'enhancement', 1100, 176, -2, 3),
(592, 'Normal IRC Channel', 'Old enough to keep the technically challenged out. This is a issue befitting of me.', 'enhancement', 110, 13, -2, 3),
(593, 'Normal Phone App', 'I need to access this from my phone. Now. This is a issue befitting of me.', 'enhancement', 220, 29, -2, 3),
(594, 'Normal Patch', 'Someone attached a patch on the issue tracker! This is a issue befitting of me.', 'pull_request', 10, 13, -10, 1),
(595, 'Normal Feature', 'Someone wrote some code and posted it! This is a issue befitting of me.', 'pull_request', 10, 29, -10, 1),
(596, 'Normal Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! This is a issue befitting of me.', 'pull_request', 10, 46, -10, 1),
(597, 'Normal Performance Boost', 'Someone was able to make your system faster! This is a issue befitting of me.', 'pull_request', 10, 64, -10, 1),
(598, 'Regular Syntax Error', 'If you\'re happy and you know it, syntax error! There\'s only 2,000 lines of code to sift through.', 'bug', 240, 24, 2, 3),
(599, 'Regular Compilation Error', 'Typos can be a nusiance. There\'s only 2,000 lines of code to sift through.', 'bug', 360, 37, 2, 3),
(600, 'Regular Run Time Error', 'Ouch! My program didn\'t like that! There\'s only 2,000 lines of code to sift through.', 'bug', 480, 49, 2, 3),
(601, 'Regular Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? There\'s only 2,000 lines of code to sift through.', 'bug', 600, 62, 2, 3),
(602, 'Regular Latent Error', 'I was not expecting this result. There\'s only 2,000 lines of code to sift through.', 'bug', 720, 75, 2, 3),
(603, 'Regular Division by Zero Error', 'What do you mean you can\'t divide by zero? There\'s only 2,000 lines of code to sift through.', 'bug', 840, 87, 2, 3),
(604, 'Regular Overflow Bug', '1 + 1 = 0. There\'s only 2,000 lines of code to sift through.', 'bug', 960, 100, 2, 3),
(605, 'Regular Precision Error', '0.9999999999 != 1. There\'s only 2,000 lines of code to sift through.', 'bug', 1080, 113, 2, 3),
(606, 'Regular Infinite Loop', 'Why won\'t this program terminate? There\'s only 2,000 lines of code to sift through.', 'bug', 1200, 125, 2, 3),
(607, 'Regular Recursion Error', 'Recursion: See Recursion. There\'s only 2,000 lines of code to sift through.', 'bug', 120, 12, 2, 3),
(608, 'Regular Off By One Error', 'Leave it to a computer to be unable to count. There\'s only 2,000 lines of code to sift through.', 'bug', 240, 24, 2, 3),
(609, 'Regular Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? There\'s only 2,000 lines of code to sift through.', 'bug', 360, 37, 2, 3),
(610, 'Regular Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? There\'s only 2,000 lines of code to sift through.', 'bug', 480, 49, 2, 3),
(611, 'Regular Type Error', 'What do you mean I can\'t divide strings by a number? There\'s only 2,000 lines of code to sift through.', 'bug', 600, 62, 2, 3),
(612, 'Regular Segfault', 'Who the hell is trying to push the binary into kernel space? There\'s only 2,000 lines of code to sift through.', 'bug', 720, 75, 2, 3),
(613, 'Regular Memory Leak', 'Memory is not a black hole. There\'s only 2,000 lines of code to sift through.', 'bug', 840, 87, 2, 3),
(614, 'Regular Buffer Overflow', 'You shall not pass! There\'s only 2,000 lines of code to sift through.', 'bug', 960, 100, 2, 3),
(615, 'Regular Stack Overflow', 'Pushing but not popping. There\'s only 2,000 lines of code to sift through.', 'bug', 1080, 113, 2, 3),
(616, 'Regular Deadlock', 'Why do mute philosophers need to eat with two forks anyway? There\'s only 2,000 lines of code to sift through.', 'bug', 1200, 125, 2, 3),
(617, 'Regular Race Condition', 'Remove seatbelt, then leave the car. There\'s only 2,000 lines of code to sift through.', 'bug', 120, 12, 2, 3),
(618, 'Regular Incorrect API usage', 'api.exceptIncomingTransmission() There\'s only 2,000 lines of code to sift through.', 'bug', 240, 24, 2, 3),
(619, 'Regular Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? There\'s only 2,000 lines of code to sift through.', 'bug', 360, 37, 2, 3),
(620, 'Regular Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? There\'s only 2,000 lines of code to sift through.', 'bug', 480, 49, 2, 3),
(621, 'Regular Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. There\'s only 2,000 lines of code to sift through.', 'bug', 600, 62, 2, 3),
(622, 'Regular Random Disk Access Issue', 'Why does this library use twelve thousand individual files? There\'s only 2,000 lines of code to sift through.', 'bug', 720, 75, 2, 3),
(623, 'Regular Unpropagated Updates', 'Why subtract when you can just add a negative number? There\'s only 2,000 lines of code to sift through.', 'bug', 840, 87, 2, 3),
(624, 'Regular Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? There\'s only 2,000 lines of code to sift through.', 'bug', 960, 100, 2, 3),
(625, 'Regular Documentation Issue', 'Moths do not belong in the relay. There\'s only 2,000 lines of code to sift through.', 'bug', 1080, 113, 2, 3),
(626, 'Regular Hard Coded', 'This needs to be dynamic. There\'s only 2,000 lines of code to sift through.', 'bug', 1200, 125, 2, 3),
(627, 'Regular Business Request', 'Quite a few companies would love to see this happen. There\'s only 2,000 lines of code to sift through.', 'enhancement', 240, 32, -2, 3),
(628, 'Regular Personal Request', 'Not many people will benefit from this, but it is rather good idea. There\'s only 2,000 lines of code to sift through.', 'enhancement', 360, 51, -2, 3),
(629, 'Regular API', 'If we can build an API, we can allow folks to connect to it. There\'s only 2,000 lines of code to sift through.', 'enhancement', 480, 70, -2, 3),
(630, 'Regular User Interface', 'People like to click buttons. Let\'s add those! There\'s only 2,000 lines of code to sift through.', 'enhancement', 600, 90, -2, 3),
(631, 'Regular Command Line Interface', 'Let\'s make our system script-able! There\'s only 2,000 lines of code to sift through.', 'enhancement', 720, 110, -2, 3),
(632, 'Regular Daemon', 'Our system needs to run all the time! There\'s only 2,000 lines of code to sift through.', 'enhancement', 840, 130, -2, 3),
(633, 'Regular Database', 'Our information needs to be persistent. There\'s only 2,000 lines of code to sift through.', 'enhancement', 960, 151, -2, 3),
(634, 'Regular Threading', 'Our system needs to take advantage of multi-core processors. There\'s only 2,000 lines of code to sift through.', 'enhancement', 1080, 172, -2, 3),
(635, 'Regular Documentation', 'RTFM? WABFM. There\'s only 2,000 lines of code to sift through.', 'enhancement', 1200, 193, -2, 3),
(636, 'Regular Hardware Integration', 'We need to add a dongle. There\'s only 2,000 lines of code to sift through.', 'enhancement', 120, 15, -2, 3),
(637, 'Regular Automated Tests', 'I\'m tired of testing. There\'s only 2,000 lines of code to sift through.', 'enhancement', 240, 32, -2, 3),
(638, 'Regular Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. There\'s only 2,000 lines of code to sift through.', 'enhancement', 360, 51, -2, 3),
(639, 'Regular Deploy Scripts', 'We need to have a public instance. There\'s only 2,000 lines of code to sift through.', 'enhancement', 480, 70, -2, 3),
(640, 'Regular Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. There\'s only 2,000 lines of code to sift through.', 'enhancement', 600, 90, -2, 3),
(641, 'Regular Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. There\'s only 2,000 lines of code to sift through.', 'enhancement', 720, 110, -2, 3),
(642, 'Regular Third Party Library', 'Why reinvent the wheel? There\'s only 2,000 lines of code to sift through.', 'enhancement', 840, 130, -2, 3),
(643, 'Regular Website', 'We need a design that POPS! Maybe even comic sans! There\'s only 2,000 lines of code to sift through.', 'enhancement', 960, 151, -2, 3),
(644, 'Regular Mailing List', 'You know ... To send emails to and stuff. There\'s only 2,000 lines of code to sift through.', 'enhancement', 1080, 172, -2, 3),
(645, 'Regular Forums', 'Calling all trolls. There\'s only 2,000 lines of code to sift through.', 'enhancement', 1200, 193, -2, 3),
(646, 'Regular IRC Channel', 'Old enough to keep the technically challenged out. There\'s only 2,000 lines of code to sift through.', 'enhancement', 120, 15, -2, 3),
(647, 'Regular Phone App', 'I need to access this from my phone. Now. There\'s only 2,000 lines of code to sift through.', 'enhancement', 240, 32, -2, 3),
(648, 'Regular Patch', 'Someone attached a patch on the issue tracker! There\'s only 2,000 lines of code to sift through.', 'pull_request', 10, 15, -10, 1),
(649, 'Regular Feature', 'Someone wrote some code and posted it! There\'s only 2,000 lines of code to sift through.', 'pull_request', 10, 32, -10, 1),
(650, 'Regular Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! There\'s only 2,000 lines of code to sift through.', 'pull_request', 10, 51, -10, 1),
(651, 'Regular Performance Boost', 'Someone was able to make your system faster! There\'s only 2,000 lines of code to sift through.', 'pull_request', 10, 70, -10, 1),
(652, 'Adept Syntax Error', 'If you\'re happy and you know it, syntax error! This language doesn\'t have OOP. How do I make that happen?', 'bug', 260, 26, 2, 3),
(653, 'Adept Compilation Error', 'Typos can be a nusiance. This language doesn\'t have OOP. How do I make that happen?', 'bug', 390, 40, 2, 3),
(654, 'Adept Run Time Error', 'Ouch! My program didn\'t like that! This language doesn\'t have OOP. How do I make that happen?', 'bug', 520, 54, 2, 3),
(655, 'Adept Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? This language doesn\'t have OOP. How do I make that happen?', 'bug', 650, 67, 2, 3),
(656, 'Adept Latent Error', 'I was not expecting this result. This language doesn\'t have OOP. How do I make that happen?', 'bug', 780, 81, 2, 3),
(657, 'Adept Division by Zero Error', 'What do you mean you can\'t divide by zero? This language doesn\'t have OOP. How do I make that happen?', 'bug', 910, 95, 2, 3),
(658, 'Adept Overflow Bug', '1 + 1 = 0. This language doesn\'t have OOP. How do I make that happen?', 'bug', 1040, 108, 2, 3),
(659, 'Adept Precision Error', '0.9999999999 != 1. This language doesn\'t have OOP. How do I make that happen?', 'bug', 1170, 122, 2, 3),
(660, 'Adept Infinite Loop', 'Why won\'t this program terminate? This language doesn\'t have OOP. How do I make that happen?', 'bug', 1300, 136, 2, 3),
(661, 'Adept Recursion Error', 'Recursion: See Recursion. This language doesn\'t have OOP. How do I make that happen?', 'bug', 130, 13, 2, 3),
(662, 'Adept Off By One Error', 'Leave it to a computer to be unable to count. This language doesn\'t have OOP. How do I make that happen?', 'bug', 260, 26, 2, 3),
(663, 'Adept Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? This language doesn\'t have OOP. How do I make that happen?', 'bug', 390, 40, 2, 3),
(664, 'Adept Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? This language doesn\'t have OOP. How do I make that happen?', 'bug', 520, 54, 2, 3),
(665, 'Adept Type Error', 'What do you mean I can\'t divide strings by a number? This language doesn\'t have OOP. How do I make that happen?', 'bug', 650, 67, 2, 3),
(666, 'Adept Segfault', 'Who the hell is trying to push the binary into kernel space? This language doesn\'t have OOP. How do I make that happen?', 'bug', 780, 81, 2, 3),
(667, 'Adept Memory Leak', 'Memory is not a black hole. This language doesn\'t have OOP. How do I make that happen?', 'bug', 910, 95, 2, 3),
(668, 'Adept Buffer Overflow', 'You shall not pass! This language doesn\'t have OOP. How do I make that happen?', 'bug', 1040, 108, 2, 3),
(669, 'Adept Stack Overflow', 'Pushing but not popping. This language doesn\'t have OOP. How do I make that happen?', 'bug', 1170, 122, 2, 3),
(670, 'Adept Deadlock', 'Why do mute philosophers need to eat with two forks anyway? This language doesn\'t have OOP. How do I make that happen?', 'bug', 1300, 136, 2, 3),
(671, 'Adept Race Condition', 'Remove seatbelt, then leave the car. This language doesn\'t have OOP. How do I make that happen?', 'bug', 130, 13, 2, 3),
(672, 'Adept Incorrect API usage', 'api.exceptIncomingTransmission() This language doesn\'t have OOP. How do I make that happen?', 'bug', 260, 26, 2, 3),
(673, 'Adept Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? This language doesn\'t have OOP. How do I make that happen?', 'bug', 390, 40, 2, 3),
(674, 'Adept Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? This language doesn\'t have OOP. How do I make that happen?', 'bug', 520, 54, 2, 3),
(675, 'Adept Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. This language doesn\'t have OOP. How do I make that happen?', 'bug', 650, 67, 2, 3),
(676, 'Adept Random Disk Access Issue', 'Why does this library use twelve thousand individual files? This language doesn\'t have OOP. How do I make that happen?', 'bug', 780, 81, 2, 3),
(677, 'Adept Unpropagated Updates', 'Why subtract when you can just add a negative number? This language doesn\'t have OOP. How do I make that happen?', 'bug', 910, 95, 2, 3),
(678, 'Adept Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? This language doesn\'t have OOP. How do I make that happen?', 'bug', 1040, 108, 2, 3),
(679, 'Adept Documentation Issue', 'Moths do not belong in the relay. This language doesn\'t have OOP. How do I make that happen?', 'bug', 1170, 122, 2, 3),
(680, 'Adept Hard Coded', 'This needs to be dynamic. This language doesn\'t have OOP. How do I make that happen?', 'bug', 1300, 136, 2, 3),
(681, 'Adept Business Request', 'Quite a few companies would love to see this happen. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 260, 36, -2, 3),
(682, 'Adept Personal Request', 'Not many people will benefit from this, but it is rather good idea. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 390, 56, -2, 3),
(683, 'Adept API', 'If we can build an API, we can allow folks to connect to it. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 520, 77, -2, 3),
(684, 'Adept User Interface', 'People like to click buttons. Let\'s add those! This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 650, 98, -2, 3),
(685, 'Adept Command Line Interface', 'Let\'s make our system script-able! This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 780, 120, -2, 3),
(686, 'Adept Daemon', 'Our system needs to run all the time! This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 910, 142, -2, 3),
(687, 'Adept Database', 'Our information needs to be persistent. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 1040, 165, -2, 3),
(688, 'Adept Threading', 'Our system needs to take advantage of multi-core processors. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 1170, 188, -2, 3),
(689, 'Adept Documentation', 'RTFM? WABFM. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 1300, 211, -2, 3),
(690, 'Adept Hardware Integration', 'We need to add a dongle. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 130, 16, -2, 3),
(691, 'Adept Automated Tests', 'I\'m tired of testing. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 260, 36, -2, 3),
(692, 'Adept Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 390, 56, -2, 3),
(693, 'Adept Deploy Scripts', 'We need to have a public instance. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 520, 77, -2, 3),
(694, 'Adept Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 650, 98, -2, 3),
(695, 'Adept Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 780, 120, -2, 3),
(696, 'Adept Third Party Library', 'Why reinvent the wheel? This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 910, 142, -2, 3),
(697, 'Adept Website', 'We need a design that POPS! Maybe even comic sans! This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 1040, 165, -2, 3),
(698, 'Adept Mailing List', 'You know ... To send emails to and stuff. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 1170, 188, -2, 3),
(699, 'Adept Forums', 'Calling all trolls. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 1300, 211, -2, 3),
(700, 'Adept IRC Channel', 'Old enough to keep the technically challenged out. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 130, 16, -2, 3),
(701, 'Adept Phone App', 'I need to access this from my phone. Now. This language doesn\'t have OOP. How do I make that happen?', 'enhancement', 260, 36, -2, 3),
(702, 'Adept Patch', 'Someone attached a patch on the issue tracker! This language doesn\'t have OOP. How do I make that happen?', 'pull_request', 10, 16, -10, 1),
(703, 'Adept Feature', 'Someone wrote some code and posted it! This language doesn\'t have OOP. How do I make that happen?', 'pull_request', 10, 36, -10, 1),
(704, 'Adept Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! This language doesn\'t have OOP. How do I make that happen?', 'pull_request', 10, 56, -10, 1),
(705, 'Adept Performance Boost', 'Someone was able to make your system faster! This language doesn\'t have OOP. How do I make that happen?', 'pull_request', 10, 77, -10, 1),
(706, 'Medium Syntax Error', 'If you\'re happy and you know it, syntax error! The last guy got fired over this code.', 'bug', 280, 28, 2, 3),
(707, 'Medium Compilation Error', 'Typos can be a nusiance. The last guy got fired over this code.', 'bug', 420, 43, 2, 3),
(708, 'Medium Run Time Error', 'Ouch! My program didn\'t like that! The last guy got fired over this code.', 'bug', 560, 58, 2, 3),
(709, 'Medium Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? The last guy got fired over this code.', 'bug', 700, 73, 2, 3),
(710, 'Medium Latent Error', 'I was not expecting this result. The last guy got fired over this code.', 'bug', 840, 87, 2, 3),
(711, 'Medium Division by Zero Error', 'What do you mean you can\'t divide by zero? The last guy got fired over this code.', 'bug', 980, 102, 2, 3),
(712, 'Medium Overflow Bug', '1 + 1 = 0. The last guy got fired over this code.', 'bug', 1120, 117, 2, 3),
(713, 'Medium Precision Error', '0.9999999999 != 1. The last guy got fired over this code.', 'bug', 1260, 132, 2, 3),
(714, 'Medium Infinite Loop', 'Why won\'t this program terminate? The last guy got fired over this code.', 'bug', 1400, 147, 2, 3),
(715, 'Medium Recursion Error', 'Recursion: See Recursion. The last guy got fired over this code.', 'bug', 140, 14, 2, 3),
(716, 'Medium Off By One Error', 'Leave it to a computer to be unable to count. The last guy got fired over this code.', 'bug', 280, 28, 2, 3),
(717, 'Medium Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? The last guy got fired over this code.', 'bug', 420, 43, 2, 3),
(718, 'Medium Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? The last guy got fired over this code.', 'bug', 560, 58, 2, 3),
(719, 'Medium Type Error', 'What do you mean I can\'t divide strings by a number? The last guy got fired over this code.', 'bug', 700, 73, 2, 3),
(720, 'Medium Segfault', 'Who the hell is trying to push the binary into kernel space? The last guy got fired over this code.', 'bug', 840, 87, 2, 3),
(721, 'Medium Memory Leak', 'Memory is not a black hole. The last guy got fired over this code.', 'bug', 980, 102, 2, 3),
(722, 'Medium Buffer Overflow', 'You shall not pass! The last guy got fired over this code.', 'bug', 1120, 117, 2, 3),
(723, 'Medium Stack Overflow', 'Pushing but not popping. The last guy got fired over this code.', 'bug', 1260, 132, 2, 3),
(724, 'Medium Deadlock', 'Why do mute philosophers need to eat with two forks anyway? The last guy got fired over this code.', 'bug', 1400, 147, 2, 3),
(725, 'Medium Race Condition', 'Remove seatbelt, then leave the car. The last guy got fired over this code.', 'bug', 140, 14, 2, 3),
(726, 'Medium Incorrect API usage', 'api.exceptIncomingTransmission() The last guy got fired over this code.', 'bug', 280, 28, 2, 3),
(727, 'Medium Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? The last guy got fired over this code.', 'bug', 420, 43, 2, 3),
(728, 'Medium Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? The last guy got fired over this code.', 'bug', 560, 58, 2, 3),
(729, 'Medium Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. The last guy got fired over this code.', 'bug', 700, 73, 2, 3),
(730, 'Medium Random Disk Access Issue', 'Why does this library use twelve thousand individual files? The last guy got fired over this code.', 'bug', 840, 87, 2, 3),
(731, 'Medium Unpropagated Updates', 'Why subtract when you can just add a negative number? The last guy got fired over this code.', 'bug', 980, 102, 2, 3),
(732, 'Medium Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? The last guy got fired over this code.', 'bug', 1120, 117, 2, 3),
(733, 'Medium Documentation Issue', 'Moths do not belong in the relay. The last guy got fired over this code.', 'bug', 1260, 132, 2, 3),
(734, 'Medium Hard Coded', 'This needs to be dynamic. The last guy got fired over this code.', 'bug', 1400, 147, 2, 3),
(735, 'Medium Business Request', 'Quite a few companies would love to see this happen. The last guy got fired over this code.', 'enhancement', 280, 39, -2, 3),
(736, 'Medium Personal Request', 'Not many people will benefit from this, but it is rather good idea. The last guy got fired over this code.', 'enhancement', 420, 61, -2, 3),
(737, 'Medium API', 'If we can build an API, we can allow folks to connect to it. The last guy got fired over this code.', 'enhancement', 560, 83, -2, 3),
(738, 'Medium User Interface', 'People like to click buttons. Let\'s add those! The last guy got fired over this code.', 'enhancement', 700, 107, -2, 3),
(739, 'Medium Command Line Interface', 'Let\'s make our system script-able! The last guy got fired over this code.', 'enhancement', 840, 130, -2, 3),
(740, 'Medium Daemon', 'Our system needs to run all the time! The last guy got fired over this code.', 'enhancement', 980, 155, -2, 3),
(741, 'Medium Database', 'Our information needs to be persistent. The last guy got fired over this code.', 'enhancement', 1120, 179, -2, 3),
(742, 'Medium Threading', 'Our system needs to take advantage of multi-core processors. The last guy got fired over this code.', 'enhancement', 1260, 204, -2, 3),
(743, 'Medium Documentation', 'RTFM? WABFM. The last guy got fired over this code.', 'enhancement', 1400, 229, -2, 3),
(744, 'Medium Hardware Integration', 'We need to add a dongle. The last guy got fired over this code.', 'enhancement', 140, 18, -2, 3),
(745, 'Medium Automated Tests', 'I\'m tired of testing. The last guy got fired over this code.', 'enhancement', 280, 39, -2, 3),
(746, 'Medium Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. The last guy got fired over this code.', 'enhancement', 420, 61, -2, 3),
(747, 'Medium Deploy Scripts', 'We need to have a public instance. The last guy got fired over this code.', 'enhancement', 560, 83, -2, 3),
(748, 'Medium Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. The last guy got fired over this code.', 'enhancement', 700, 107, -2, 3),
(749, 'Medium Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. The last guy got fired over this code.', 'enhancement', 840, 130, -2, 3),
(750, 'Medium Third Party Library', 'Why reinvent the wheel? The last guy got fired over this code.', 'enhancement', 980, 155, -2, 3),
(751, 'Medium Website', 'We need a design that POPS! Maybe even comic sans! The last guy got fired over this code.', 'enhancement', 1120, 179, -2, 3),
(752, 'Medium Mailing List', 'You know ... To send emails to and stuff. The last guy got fired over this code.', 'enhancement', 1260, 204, -2, 3),
(753, 'Medium Forums', 'Calling all trolls. The last guy got fired over this code.', 'enhancement', 1400, 229, -2, 3),
(754, 'Medium IRC Channel', 'Old enough to keep the technically challenged out. The last guy got fired over this code.', 'enhancement', 140, 18, -2, 3),
(755, 'Medium Phone App', 'I need to access this from my phone. Now. The last guy got fired over this code.', 'enhancement', 280, 39, -2, 3),
(756, 'Medium Patch', 'Someone attached a patch on the issue tracker! The last guy got fired over this code.', 'pull_request', 10, 18, -10, 1),
(757, 'Medium Feature', 'Someone wrote some code and posted it! The last guy got fired over this code.', 'pull_request', 10, 39, -10, 1),
(758, 'Medium Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! The last guy got fired over this code.', 'pull_request', 10, 61, -10, 1),
(759, 'Medium Performance Boost', 'Someone was able to make your system faster! The last guy got fired over this code.', 'pull_request', 10, 83, -10, 1),
(760, 'Hard Syntax Error', 'If you\'re happy and you know it, syntax error! Better get a new pot of coffee brewing.', 'bug', 300, 31, 2, 3),
(761, 'Hard Compilation Error', 'Typos can be a nusiance. Better get a new pot of coffee brewing.', 'bug', 450, 46, 2, 3),
(762, 'Hard Run Time Error', 'Ouch! My program didn\'t like that! Better get a new pot of coffee brewing.', 'bug', 600, 62, 2, 3),
(763, 'Hard Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? Better get a new pot of coffee brewing.', 'bug', 750, 78, 2, 3),
(764, 'Hard Latent Error', 'I was not expecting this result. Better get a new pot of coffee brewing.', 'bug', 900, 94, 2, 3),
(765, 'Hard Division by Zero Error', 'What do you mean you can\'t divide by zero? Better get a new pot of coffee brewing.', 'bug', 1050, 110, 2, 3),
(766, 'Hard Overflow Bug', '1 + 1 = 0. Better get a new pot of coffee brewing.', 'bug', 1200, 125, 2, 3),
(767, 'Hard Precision Error', '0.9999999999 != 1. Better get a new pot of coffee brewing.', 'bug', 1350, 141, 2, 3),
(768, 'Hard Infinite Loop', 'Why won\'t this program terminate? Better get a new pot of coffee brewing.', 'bug', 1500, 157, 2, 3),
(769, 'Hard Recursion Error', 'Recursion: See Recursion. Better get a new pot of coffee brewing.', 'bug', 150, 15, 2, 3),
(770, 'Hard Off By One Error', 'Leave it to a computer to be unable to count. Better get a new pot of coffee brewing.', 'bug', 300, 31, 2, 3),
(771, 'Hard Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? Better get a new pot of coffee brewing.', 'bug', 450, 46, 2, 3),
(772, 'Hard Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? Better get a new pot of coffee brewing.', 'bug', 600, 62, 2, 3),
(773, 'Hard Type Error', 'What do you mean I can\'t divide strings by a number? Better get a new pot of coffee brewing.', 'bug', 750, 78, 2, 3),
(774, 'Hard Segfault', 'Who the hell is trying to push the binary into kernel space? Better get a new pot of coffee brewing.', 'bug', 900, 94, 2, 3),
(775, 'Hard Memory Leak', 'Memory is not a black hole. Better get a new pot of coffee brewing.', 'bug', 1050, 110, 2, 3),
(776, 'Hard Buffer Overflow', 'You shall not pass! Better get a new pot of coffee brewing.', 'bug', 1200, 125, 2, 3),
(777, 'Hard Stack Overflow', 'Pushing but not popping. Better get a new pot of coffee brewing.', 'bug', 1350, 141, 2, 3),
(778, 'Hard Deadlock', 'Why do mute philosophers need to eat with two forks anyway? Better get a new pot of coffee brewing.', 'bug', 1500, 157, 2, 3),
(779, 'Hard Race Condition', 'Remove seatbelt, then leave the car. Better get a new pot of coffee brewing.', 'bug', 150, 15, 2, 3),
(780, 'Hard Incorrect API usage', 'api.exceptIncomingTransmission() Better get a new pot of coffee brewing.', 'bug', 300, 31, 2, 3),
(781, 'Hard Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? Better get a new pot of coffee brewing.', 'bug', 450, 46, 2, 3),
(782, 'Hard Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? Better get a new pot of coffee brewing.', 'bug', 600, 62, 2, 3),
(783, 'Hard Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. Better get a new pot of coffee brewing.', 'bug', 750, 78, 2, 3),
(784, 'Hard Random Disk Access Issue', 'Why does this library use twelve thousand individual files? Better get a new pot of coffee brewing.', 'bug', 900, 94, 2, 3),
(785, 'Hard Unpropagated Updates', 'Why subtract when you can just add a negative number? Better get a new pot of coffee brewing.', 'bug', 1050, 110, 2, 3),
(786, 'Hard Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? Better get a new pot of coffee brewing.', 'bug', 1200, 125, 2, 3),
(787, 'Hard Documentation Issue', 'Moths do not belong in the relay. Better get a new pot of coffee brewing.', 'bug', 1350, 141, 2, 3),
(788, 'Hard Hard Coded', 'This needs to be dynamic. Better get a new pot of coffee brewing.', 'bug', 1500, 157, 2, 3),
(789, 'Hard Business Request', 'Quite a few companies would love to see this happen. Better get a new pot of coffee brewing.', 'enhancement', 300, 42, -2, 3),
(790, 'Hard Personal Request', 'Not many people will benefit from this, but it is rather good idea. Better get a new pot of coffee brewing.', 'enhancement', 450, 65, -2, 3),
(791, 'Hard API', 'If we can build an API, we can allow folks to connect to it. Better get a new pot of coffee brewing.', 'enhancement', 600, 90, -2, 3),
(792, 'Hard User Interface', 'People like to click buttons. Let\'s add those! Better get a new pot of coffee brewing.', 'enhancement', 750, 115, -2, 3),
(793, 'Hard Command Line Interface', 'Let\'s make our system script-able! Better get a new pot of coffee brewing.', 'enhancement', 900, 141, -2, 3),
(794, 'Hard Daemon', 'Our system needs to run all the time! Better get a new pot of coffee brewing.', 'enhancement', 1050, 167, -2, 3),
(795, 'Hard Database', 'Our information needs to be persistent. Better get a new pot of coffee brewing.', 'enhancement', 1200, 193, -2, 3),
(796, 'Hard Threading', 'Our system needs to take advantage of multi-core processors. Better get a new pot of coffee brewing.', 'enhancement', 1350, 220, -2, 3),
(797, 'Hard Documentation', 'RTFM? WABFM. Better get a new pot of coffee brewing.', 'enhancement', 1500, 247, -2, 3),
(798, 'Hard Hardware Integration', 'We need to add a dongle. Better get a new pot of coffee brewing.', 'enhancement', 150, 19, -2, 3),
(799, 'Hard Automated Tests', 'I\'m tired of testing. Better get a new pot of coffee brewing.', 'enhancement', 300, 42, -2, 3),
(800, 'Hard Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. Better get a new pot of coffee brewing.', 'enhancement', 450, 65, -2, 3),
(801, 'Hard Deploy Scripts', 'We need to have a public instance. Better get a new pot of coffee brewing.', 'enhancement', 600, 90, -2, 3),
(802, 'Hard Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. Better get a new pot of coffee brewing.', 'enhancement', 750, 115, -2, 3),
(803, 'Hard Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. Better get a new pot of coffee brewing.', 'enhancement', 900, 141, -2, 3),
(804, 'Hard Third Party Library', 'Why reinvent the wheel? Better get a new pot of coffee brewing.', 'enhancement', 1050, 167, -2, 3),
(805, 'Hard Website', 'We need a design that POPS! Maybe even comic sans! Better get a new pot of coffee brewing.', 'enhancement', 1200, 193, -2, 3),
(806, 'Hard Mailing List', 'You know ... To send emails to and stuff. Better get a new pot of coffee brewing.', 'enhancement', 1350, 220, -2, 3),
(807, 'Hard Forums', 'Calling all trolls. Better get a new pot of coffee brewing.', 'enhancement', 1500, 247, -2, 3),
(808, 'Hard IRC Channel', 'Old enough to keep the technically challenged out. Better get a new pot of coffee brewing.', 'enhancement', 150, 19, -2, 3),
(809, 'Hard Phone App', 'I need to access this from my phone. Now. Better get a new pot of coffee brewing.', 'enhancement', 300, 42, -2, 3),
(810, 'Hard Patch', 'Someone attached a patch on the issue tracker! Better get a new pot of coffee brewing.', 'pull_request', 10, 19, -10, 1),
(811, 'Hard Feature', 'Someone wrote some code and posted it! Better get a new pot of coffee brewing.', 'pull_request', 10, 42, -10, 1),
(812, 'Hard Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! Better get a new pot of coffee brewing.', 'pull_request', 10, 65, -10, 1),
(813, 'Hard Performance Boost', 'Someone was able to make your system faster! Better get a new pot of coffee brewing.', 'pull_request', 10, 90, -10, 1),
(814, 'Very Hard Syntax Error', 'If you\'re happy and you know it, syntax error! Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 320, 33, 2, 3),
(815, 'Very Hard Compilation Error', 'Typos can be a nusiance. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 480, 49, 2, 3),
(816, 'Very Hard Run Time Error', 'Ouch! My program didn\'t like that! Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 640, 66, 2, 3),
(817, 'Very Hard Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 800, 83, 2, 3),
(818, 'Very Hard Latent Error', 'I was not expecting this result. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 960, 100, 2, 3),
(819, 'Very Hard Division by Zero Error', 'What do you mean you can\'t divide by zero? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 1120, 117, 2, 3),
(820, 'Very Hard Overflow Bug', '1 + 1 = 0. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 1280, 134, 2, 3),
(821, 'Very Hard Precision Error', '0.9999999999 != 1. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 1440, 151, 2, 3),
(822, 'Very Hard Infinite Loop', 'Why won\'t this program terminate? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 1600, 168, 2, 3),
(823, 'Very Hard Recursion Error', 'Recursion: See Recursion. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 160, 16, 2, 3),
(824, 'Very Hard Off By One Error', 'Leave it to a computer to be unable to count. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 320, 33, 2, 3),
(825, 'Very Hard Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 480, 49, 2, 3),
(826, 'Very Hard Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 640, 66, 2, 3),
(827, 'Very Hard Type Error', 'What do you mean I can\'t divide strings by a number? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 800, 83, 2, 3),
(828, 'Very Hard Segfault', 'Who the hell is trying to push the binary into kernel space? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 960, 100, 2, 3),
(829, 'Very Hard Memory Leak', 'Memory is not a black hole. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 1120, 117, 2, 3),
(830, 'Very Hard Buffer Overflow', 'You shall not pass! Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 1280, 134, 2, 3),
(831, 'Very Hard Stack Overflow', 'Pushing but not popping. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 1440, 151, 2, 3),
(832, 'Very Hard Deadlock', 'Why do mute philosophers need to eat with two forks anyway? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 1600, 168, 2, 3),
(833, 'Very Hard Race Condition', 'Remove seatbelt, then leave the car. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 160, 16, 2, 3),
(834, 'Very Hard Incorrect API usage', 'api.exceptIncomingTransmission() Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 320, 33, 2, 3),
(835, 'Very Hard Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 480, 49, 2, 3),
(836, 'Very Hard Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 640, 66, 2, 3),
(837, 'Very Hard Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 800, 83, 2, 3),
(838, 'Very Hard Random Disk Access Issue', 'Why does this library use twelve thousand individual files? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 960, 100, 2, 3),
(839, 'Very Hard Unpropagated Updates', 'Why subtract when you can just add a negative number? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 1120, 117, 2, 3),
(840, 'Very Hard Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 1280, 134, 2, 3),
(841, 'Very Hard Documentation Issue', 'Moths do not belong in the relay. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 1440, 151, 2, 3),
(842, 'Very Hard Hard Coded', 'This needs to be dynamic. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'bug', 1600, 168, 2, 3),
(843, 'Very Hard Business Request', 'Quite a few companies would love to see this happen. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 320, 45, -2, 3),
(844, 'Very Hard Personal Request', 'Not many people will benefit from this, but it is rather good idea. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 480, 70, -2, 3),
(845, 'Very Hard API', 'If we can build an API, we can allow folks to connect to it. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 640, 97, -2, 3),
(846, 'Very Hard User Interface', 'People like to click buttons. Let\'s add those! Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 800, 123, -2, 3),
(847, 'Very Hard Command Line Interface', 'Let\'s make our system script-able! Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 960, 151, -2, 3),
(848, 'Very Hard Daemon', 'Our system needs to run all the time! Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 1120, 179, -2, 3),
(849, 'Very Hard Database', 'Our information needs to be persistent. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 1280, 207, -2, 3),
(850, 'Very Hard Threading', 'Our system needs to take advantage of multi-core processors. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 1440, 236, -2, 3),
(851, 'Very Hard Documentation', 'RTFM? WABFM. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 1600, 265, -2, 3),
(852, 'Very Hard Hardware Integration', 'We need to add a dongle. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 160, 21, -2, 3),
(853, 'Very Hard Automated Tests', 'I\'m tired of testing. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 320, 45, -2, 3),
(854, 'Very Hard Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 480, 70, -2, 3),
(855, 'Very Hard Deploy Scripts', 'We need to have a public instance. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 640, 97, -2, 3),
(856, 'Very Hard Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 800, 123, -2, 3),
(857, 'Very Hard Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 960, 151, -2, 3),
(858, 'Very Hard Third Party Library', 'Why reinvent the wheel? Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 1120, 179, -2, 3),
(859, 'Very Hard Website', 'We need a design that POPS! Maybe even comic sans! Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 1280, 207, -2, 3),
(860, 'Very Hard Mailing List', 'You know ... To send emails to and stuff. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 1440, 236, -2, 3),
(861, 'Very Hard Forums', 'Calling all trolls. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 1600, 265, -2, 3),
(862, 'Very Hard IRC Channel', 'Old enough to keep the technically challenged out. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 160, 21, -2, 3),
(863, 'Very Hard Phone App', 'I need to access this from my phone. Now. Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'enhancement', 320, 45, -2, 3),
(864, 'Very Hard Patch', 'Someone attached a patch on the issue tracker! Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'pull_request', 10, 21, -10, 1),
(865, 'Very Hard Feature', 'Someone wrote some code and posted it! Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'pull_request', 10, 45, -10, 1),
(866, 'Very Hard Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'pull_request', 10, 70, -10, 1),
(867, 'Very Hard Performance Boost', 'Someone was able to make your system faster! Naming conventions? Badges? We don\'t need no stinkin\' naming conventions!', 'pull_request', 10, 97, -10, 1),
(868, 'Challenging Syntax Error', 'If you\'re happy and you know it, syntax error! I might as well beat Contra while I\'m at it.', 'bug', 340, 35, 2, 3),
(869, 'Challenging Compilation Error', 'Typos can be a nusiance. I might as well beat Contra while I\'m at it.', 'bug', 510, 53, 2, 3),
(870, 'Challenging Run Time Error', 'Ouch! My program didn\'t like that! I might as well beat Contra while I\'m at it.', 'bug', 680, 70, 2, 3),
(871, 'Challenging Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? I might as well beat Contra while I\'m at it.', 'bug', 850, 88, 2, 3),
(872, 'Challenging Latent Error', 'I was not expecting this result. I might as well beat Contra while I\'m at it.', 'bug', 1020, 106, 2, 3),
(873, 'Challenging Division by Zero Error', 'What do you mean you can\'t divide by zero? I might as well beat Contra while I\'m at it.', 'bug', 1190, 124, 2, 3),
(874, 'Challenging Overflow Bug', '1 + 1 = 0. I might as well beat Contra while I\'m at it.', 'bug', 1360, 142, 2, 3),
(875, 'Challenging Precision Error', '0.9999999999 != 1. I might as well beat Contra while I\'m at it.', 'bug', 1530, 160, 2, 3),
(876, 'Challenging Infinite Loop', 'Why won\'t this program terminate? I might as well beat Contra while I\'m at it.', 'bug', 1700, 178, 2, 3),
(877, 'Challenging Recursion Error', 'Recursion: See Recursion. I might as well beat Contra while I\'m at it.', 'bug', 170, 17, 2, 3),
(878, 'Challenging Off By One Error', 'Leave it to a computer to be unable to count. I might as well beat Contra while I\'m at it.', 'bug', 340, 35, 2, 3),
(879, 'Challenging Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? I might as well beat Contra while I\'m at it.', 'bug', 510, 53, 2, 3),
(880, 'Challenging Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? I might as well beat Contra while I\'m at it.', 'bug', 680, 70, 2, 3),
(881, 'Challenging Type Error', 'What do you mean I can\'t divide strings by a number? I might as well beat Contra while I\'m at it.', 'bug', 850, 88, 2, 3),
(882, 'Challenging Segfault', 'Who the hell is trying to push the binary into kernel space? I might as well beat Contra while I\'m at it.', 'bug', 1020, 106, 2, 3),
(883, 'Challenging Memory Leak', 'Memory is not a black hole. I might as well beat Contra while I\'m at it.', 'bug', 1190, 124, 2, 3),
(884, 'Challenging Buffer Overflow', 'You shall not pass! I might as well beat Contra while I\'m at it.', 'bug', 1360, 142, 2, 3),
(885, 'Challenging Stack Overflow', 'Pushing but not popping. I might as well beat Contra while I\'m at it.', 'bug', 1530, 160, 2, 3),
(886, 'Challenging Deadlock', 'Why do mute philosophers need to eat with two forks anyway? I might as well beat Contra while I\'m at it.', 'bug', 1700, 178, 2, 3),
(887, 'Challenging Race Condition', 'Remove seatbelt, then leave the car. I might as well beat Contra while I\'m at it.', 'bug', 170, 17, 2, 3),
(888, 'Challenging Incorrect API usage', 'api.exceptIncomingTransmission() I might as well beat Contra while I\'m at it.', 'bug', 340, 35, 2, 3),
(889, 'Challenging Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? I might as well beat Contra while I\'m at it.', 'bug', 510, 53, 2, 3),
(890, 'Challenging Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? I might as well beat Contra while I\'m at it.', 'bug', 680, 70, 2, 3),
(891, 'Challenging Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. I might as well beat Contra while I\'m at it.', 'bug', 850, 88, 2, 3),
(892, 'Challenging Random Disk Access Issue', 'Why does this library use twelve thousand individual files? I might as well beat Contra while I\'m at it.', 'bug', 1020, 106, 2, 3),
(893, 'Challenging Unpropagated Updates', 'Why subtract when you can just add a negative number? I might as well beat Contra while I\'m at it.', 'bug', 1190, 124, 2, 3),
(894, 'Challenging Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? I might as well beat Contra while I\'m at it.', 'bug', 1360, 142, 2, 3),
(895, 'Challenging Documentation Issue', 'Moths do not belong in the relay. I might as well beat Contra while I\'m at it.', 'bug', 1530, 160, 2, 3),
(896, 'Challenging Hard Coded', 'This needs to be dynamic. I might as well beat Contra while I\'m at it.', 'bug', 1700, 178, 2, 3),
(897, 'Challenging Business Request', 'Quite a few companies would love to see this happen. I might as well beat Contra while I\'m at it.', 'enhancement', 340, 48, -2, 3),
(898, 'Challenging Personal Request', 'Not many people will benefit from this, but it is rather good idea. I might as well beat Contra while I\'m at it.', 'enhancement', 510, 75, -2, 3),
(899, 'Challenging API', 'If we can build an API, we can allow folks to connect to it. I might as well beat Contra while I\'m at it.', 'enhancement', 680, 103, -2, 3),
(900, 'Challenging User Interface', 'People like to click buttons. Let\'s add those! I might as well beat Contra while I\'m at it.', 'enhancement', 850, 132, -2, 3),
(901, 'Challenging Command Line Interface', 'Let\'s make our system script-able! I might as well beat Contra while I\'m at it.', 'enhancement', 1020, 161, -2, 3),
(902, 'Challenging Daemon', 'Our system needs to run all the time! I might as well beat Contra while I\'m at it.', 'enhancement', 1190, 191, -2, 3),
(903, 'Challenging Database', 'Our information needs to be persistent. I might as well beat Contra while I\'m at it.', 'enhancement', 1360, 222, -2, 3),
(904, 'Challenging Threading', 'Our system needs to take advantage of multi-core processors. I might as well beat Contra while I\'m at it.', 'enhancement', 1530, 253, -2, 3),
(905, 'Challenging Documentation', 'RTFM? WABFM. I might as well beat Contra while I\'m at it.', 'enhancement', 1700, 284, -2, 3),
(906, 'Challenging Hardware Integration', 'We need to add a dongle. I might as well beat Contra while I\'m at it.', 'enhancement', 170, 22, -2, 3),
(907, 'Challenging Automated Tests', 'I\'m tired of testing. I might as well beat Contra while I\'m at it.', 'enhancement', 340, 48, -2, 3),
(908, 'Challenging Makefile', 'When you have eight cores, it\'s nice to have the `-j` flag. I might as well beat Contra while I\'m at it.', 'enhancement', 510, 75, -2, 3),
(909, 'Challenging Deploy Scripts', 'We need to have a public instance. I might as well beat Contra while I\'m at it.', 'enhancement', 680, 103, -2, 3),
(910, 'Challenging Backup Scripts', 'Keeping stuff stored in /dev/null isn\'t going to work anymore. I might as well beat Contra while I\'m at it.', 'enhancement', 850, 132, -2, 3),
(911, 'Challenging Internal Logic', 'Logic will get you from A to B. Imagination will take you everywhere. I might as well beat Contra while I\'m at it.', 'enhancement', 1020, 161, -2, 3),
(912, 'Challenging Third Party Library', 'Why reinvent the wheel? I might as well beat Contra while I\'m at it.', 'enhancement', 1190, 191, -2, 3),
(913, 'Challenging Website', 'We need a design that POPS! Maybe even comic sans! I might as well beat Contra while I\'m at it.', 'enhancement', 1360, 222, -2, 3),
(914, 'Challenging Mailing List', 'You know ... To send emails to and stuff. I might as well beat Contra while I\'m at it.', 'enhancement', 1530, 253, -2, 3),
(915, 'Challenging Forums', 'Calling all trolls. I might as well beat Contra while I\'m at it.', 'enhancement', 1700, 284, -2, 3),
(916, 'Challenging IRC Channel', 'Old enough to keep the technically challenged out. I might as well beat Contra while I\'m at it.', 'enhancement', 170, 22, -2, 3),
(917, 'Challenging Phone App', 'I need to access this from my phone. Now. I might as well beat Contra while I\'m at it.', 'enhancement', 340, 48, -2, 3),
(918, 'Challenging Patch', 'Someone attached a patch on the issue tracker! I might as well beat Contra while I\'m at it.', 'pull_request', 10, 22, -10, 1),
(919, 'Challenging Feature', 'Someone wrote some code and posted it! I might as well beat Contra while I\'m at it.', 'pull_request', 10, 48, -10, 1),
(920, 'Challenging Bugfix', 'Someone figured out the problem to a bug and shows how to fix it! I might as well beat Contra while I\'m at it.', 'pull_request', 10, 75, -10, 1),
(921, 'Challenging Performance Boost', 'Someone was able to make your system faster! I might as well beat Contra while I\'m at it.', 'pull_request', 10, 103, -10, 1),
(922, 'Tough Syntax Error', 'If you\'re happy and you know it, syntax error! Why do I need to alter the C compiler to do this?', 'bug', 360, 37, 2, 2),
(923, 'Tough Compilation Error', 'Typos can be a nusiance. Why do I need to alter the C compiler to do this?', 'bug', 540, 56, 2, 2),
(924, 'Tough Run Time Error', 'Ouch! My program didn\'t like that! Why do I need to alter the C compiler to do this?', 'bug', 720, 75, 2, 2),
(925, 'Tough Logic Error', 'Why isn\'t this section doing what it\'s supposed to be doing? Why do I need to alter the C compiler to do this?', 'bug', 900, 94, 2, 2),
(926, 'Tough Latent Error', 'I was not expecting this result. Why do I need to alter the C compiler to do this?', 'bug', 1080, 113, 2, 2),
(927, 'Tough Division by Zero Error', 'What do you mean you can\'t divide by zero? Why do I need to alter the C compiler to do this?', 'bug', 1260, 132, 2, 2),
(928, 'Tough Overflow Bug', '1 + 1 = 0. Why do I need to alter the C compiler to do this?', 'bug', 1440, 151, 2, 2),
(929, 'Tough Precision Error', '0.9999999999 != 1. Why do I need to alter the C compiler to do this?', 'bug', 1620, 170, 2, 2),
(930, 'Tough Infinite Loop', 'Why won\'t this program terminate? Why do I need to alter the C compiler to do this?', 'bug', 1800, 189, 2, 2),
(931, 'Tough Recursion Error', 'Recursion: See Recursion. Why do I need to alter the C compiler to do this?', 'bug', 180, 18, 2, 2),
(932, 'Tough Off By One Error', 'Leave it to a computer to be unable to count. Why do I need to alter the C compiler to do this?', 'bug', 360, 37, 2, 2),
(933, 'Tough Null Pointer Error', 'This pointer is not pointing to anything. It should be, but it isn\'t. Why isn\'t it? Why do I need to alter the C compiler to do this?', 'bug', 540, 56, 2, 2),
(934, 'Tough Uninitialized Variable Error', 'What the hell is `i_like_to_move_it_move_it`, and why isn\'t it defined? Why do I need to alter the C compiler to do this?', 'bug', 720, 75, 2, 2),
(935, 'Tough Type Error', 'What do you mean I can\'t divide strings by a number? Why do I need to alter the C compiler to do this?', 'bug', 900, 94, 2, 2),
(936, 'Tough Segfault', 'Who the hell is trying to push the binary into kernel space? Why do I need to alter the C compiler to do this?', 'bug', 1080, 113, 2, 2),
(937, 'Tough Memory Leak', 'Memory is not a black hole. Why do I need to alter the C compiler to do this?', 'bug', 1260, 132, 2, 2),
(938, 'Tough Buffer Overflow', 'You shall not pass! Why do I need to alter the C compiler to do this?', 'bug', 1440, 151, 2, 2),
(939, 'Tough Stack Overflow', 'Pushing but not popping. Why do I need to alter the C compiler to do this?', 'bug', 1620, 170, 2, 2),
(940, 'Tough Deadlock', 'Why do mute philosophers need to eat with two forks anyway? Why do I need to alter the C compiler to do this?', 'bug', 1800, 189, 2, 2),
(941, 'Tough Race Condition', 'Remove seatbelt, then leave the car. Why do I need to alter the C compiler to do this?', 'bug', 180, 18, 2, 2),
(942, 'Tough Incorrect API usage', 'api.exceptIncomingTransmission() Why do I need to alter the C compiler to do this?', 'bug', 360, 37, 2, 2),
(943, 'Tough Incorrect Protocol Implementation', 'Do I *need* HTML to make XML? Why do I need to alter the C compiler to do this?', 'bug', 540, 56, 2, 2),
(944, 'Tough Incorrect Hardware Handling', 'Why does this function play the imperial march on my floppy drive? Why do I need to alter the C compiler to do this?', 'bug', 720, 75, 2, 2),
(945, 'Tough Performance Issue', 'This process may take anywhere from 0.01 to 9000 seconds. Why do I need to alter the C compiler to do this?', 'bug', 900, 94, 2, 2),
(946, 'Tough Random Disk Access Issue', 'Why does this library use twelve thousand individual files? Why do I need to alter the C compiler to do this?', 'bug', 1080, 113, 2, 2),
(947, 'Tough Unpropagated Updates', 'Why subtract when you can just add a negative number? Why do I need to alter the C compiler to do this?', 'bug', 1260, 132, 2, 2),
(948, 'Tough Comments Illegible', '//Has anyone really been far even as decided to use even go want to do look more like? Why do I need to alter the C compiler to do this?', 'bug', 1440, 151, 2, 2),
(949, 'Tough Documentation Issue', 'Moths do not belong in the relay. Why do I need to alter the C compiler to do this?', 'bug', 1620, 170, 2, 2),
(950, 'Tough Hard Coded', 'This needs to be dynamic. Why do I need to alter the C compiler to do this?', 'bug', 1800, 189, 2, 2),
(951, 'Tough Business Request', 'Quite a few companies would love to see this happen. Why do I need to alter the C compiler to do this?', 'enhancement', 360, 51, -2, 2),
(952, 'Tough Personal Request', 'Not many people will benefit from this, but it is rather good idea. Why do I need to alter the C compiler to do this?', 'enhancement', 540, 80, -2, 2),
(953, 'Tough API', 'If we can build an API, we can allow folks to connect to it. Why do I need to alter the C compiler to do this?', 'enhancement', 720, 110, -2, 2),
(954, 'Tough User Interface', 'People like to click buttons. Let\'s add those! Why do I need to alter the C compiler to do this?', 'enhancement', 900, 141, -2, 2),
(955, 'Tough Command Line Interface', 'Let\'s make our system script-able! Why do I need to alter the C compiler to do this?', 'enhancement', 1080, 172, -2, 2),
(956, 'Tough Daemon', 'Our system needs to run all the time! Why do I need to alter the C compiler to do this?', 'enhancement', 1260, 204, -2, 2),