-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwordpress.xml
3851 lines (3756 loc) · 214 KB
/
wordpress.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
This is a WordPress eXtended RSS file generated by WordPress as an export of your site.
It contains information about your site's posts, pages, comments, categories, and other content.
You may use this file to transfer that content from one site to another.
This file is not intended to serve as a complete backup of your site.
To import this information into a WordPress site follow these steps:
1. Log in to that site as an administrator.
2. Go to Tools: Import in the WordPress admin panel.
3. Install the "WordPress" importer from the list.
4. Activate & Run Importer.
5. Upload this file using the form provided on that page.
6. You will first be asked to map the authors in this export file to users
on the site. For each author, you may choose to map to an
existing user on the site or to create a new user.
7. WordPress will then import each of the posts, pages, comments, categories, etc.
contained in this file into your site.
-->
<!-- generator="WordPress.com" created="2013-05-22 02:13"-->
<rss version="2.0" xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:wp="http://wordpress.org/export/1.2/">
<channel>
<title>Chris Missal</title>
<link>http://chrismissal.wordpress.com</link>
<description>The online portfolio and resume of Chris Missal</description>
<pubDate>Wed, 22 May 2013 02:13:52 +0000</pubDate>
<language>en</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>http://wordpress.com/</wp:base_site_url>
<wp:base_blog_url>http://chrismissal.wordpress.com</wp:base_blog_url>
<wp:wp_author>
<wp:author_login>cmissal</wp:author_login>
<wp:author_email>[email protected]</wp:author_email>
<wp:author_display_name><![CDATA[Chris Missal]]></wp:author_display_name>
<wp:author_first_name><![CDATA[]]></wp:author_first_name>
<wp:author_last_name><![CDATA[]]></wp:author_last_name>
</wp:wp_author>
<wp:category>
<wp:term_id>91</wp:term_id>
<wp:category_nicename>blogging</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Blogging]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>14560</wp:term_id>
<wp:category_nicename>career</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Career]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>2528</wp:term_id>
<wp:category_nicename>community</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Community]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>15352</wp:term_id>
<wp:category_nicename>discussion</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Discussion]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>8853</wp:term_id>
<wp:category_nicename>holiday</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Holiday]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>556</wp:term_id>
<wp:category_nicename>information</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Information]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>2200</wp:term_id>
<wp:category_nicename>links</wp:category_nicename>
<wp:category_parent>information</wp:category_parent>
<wp:cat_name><![CDATA[Links]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>64</wp:term_id>
<wp:category_nicename>personal</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Personal]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>196</wp:term_id>
<wp:category_nicename>programming</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Programming]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>173</wp:term_id>
<wp:category_nicename>science</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[science]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>599182</wp:term_id>
<wp:category_nicename>twitter</wp:category_nicename>
<wp:category_parent>community</wp:category_parent>
<wp:cat_name><![CDATA[Twitter]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>1</wp:term_id>
<wp:category_nicename>uncategorized</wp:category_nicename>
<wp:category_parent/>
<wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
</wp:category>
<wp:tag>
<wp:term_id>2427</wp:term_id>
<wp:tag_slug>net</wp:tag_slug>
<wp:tag_name><![CDATA[.Net]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>1899</wp:term_id>
<wp:tag_slug>austin</wp:tag_slug>
<wp:tag_name><![CDATA[Austin]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>6483</wp:term_id>
<wp:tag_slug>bars</wp:tag_slug>
<wp:tag_name><![CDATA[bars]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>1917</wp:term_id>
<wp:tag_slug>beer</wp:tag_slug>
<wp:tag_name><![CDATA[beer]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>2185</wp:term_id>
<wp:tag_slug>best-practices</wp:tag_slug>
<wp:tag_name><![CDATA[Best Practices]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>7215</wp:term_id>
<wp:tag_slug>book-review</wp:tag_slug>
<wp:tag_name><![CDATA[Book Review]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>16205</wp:term_id>
<wp:tag_slug>breakfast</wp:tag_slug>
<wp:tag_name><![CDATA[breakfast]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>376204</wp:term_id>
<wp:tag_slug>camels</wp:tag_slug>
<wp:tag_name><![CDATA[camels]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>99902</wp:term_id>
<wp:tag_slug>code-camp</wp:tag_slug>
<wp:tag_name><![CDATA[Code Camp]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>8609</wp:term_id>
<wp:tag_slug>concert</wp:tag_slug>
<wp:tag_name><![CDATA[concert]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>157834</wp:term_id>
<wp:tag_slug>craftsmanship</wp:tag_slug>
<wp:tag_name><![CDATA[Craftsmanship]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>11049734</wp:term_id>
<wp:tag_slug>crineta</wp:tag_slug>
<wp:tag_name><![CDATA[CRineta]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>15661055</wp:term_id>
<wp:tag_slug>cvineta</wp:tag_slug>
<wp:tag_name><![CDATA[CVineta]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>3990</wp:term_id>
<wp:tag_slug>dance</wp:tag_slug>
<wp:tag_name><![CDATA[dance]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>52967</wp:term_id>
<wp:tag_slug>deer</wp:tag_slug>
<wp:tag_name><![CDATA[deer]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>9881</wp:term_id>
<wp:tag_slug>e-commerce</wp:tag_slug>
<wp:tag_name><![CDATA[E-Commerce]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>163</wp:term_id>
<wp:tag_slug>email</wp:tag_slug>
<wp:tag_name><![CDATA[Email]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>406</wp:term_id>
<wp:tag_slug>family</wp:tag_slug>
<wp:tag_name><![CDATA[Family]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>1134</wp:term_id>
<wp:tag_slug>football</wp:tag_slug>
<wp:tag_name><![CDATA[Football]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>6168</wp:term_id>
<wp:tag_slug>halloween</wp:tag_slug>
<wp:tag_name><![CDATA[Halloween]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>36263</wp:term_id>
<wp:tag_slug>hints</wp:tag_slug>
<wp:tag_name><![CDATA[hints]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>113932</wp:term_id>
<wp:tag_slug>hiring</wp:tag_slug>
<wp:tag_name><![CDATA[Hiring]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>23846</wp:term_id>
<wp:tag_slug>home-improvement</wp:tag_slug>
<wp:tag_name><![CDATA[home improvement]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>885</wp:term_id>
<wp:tag_slug>introduction</wp:tag_slug>
<wp:tag_name><![CDATA[introduction]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>59348</wp:term_id>
<wp:tag_slug>iowa</wp:tag_slug>
<wp:tag_name><![CDATA[Iowa]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>157699</wp:term_id>
<wp:tag_slug>iowa-city</wp:tag_slug>
<wp:tag_name><![CDATA[Iowa City]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>457</wp:term_id>
<wp:tag_slug>javascript</wp:tag_slug>
<wp:tag_name><![CDATA[javascript]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>203308</wp:term_id>
<wp:tag_slug>jquery</wp:tag_slug>
<wp:tag_name><![CDATA[jQuery]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>604613</wp:term_id>
<wp:tag_slug>kotaku</wp:tag_slug>
<wp:tag_name><![CDATA[kotaku]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>264</wp:term_id>
<wp:tag_slug>learning</wp:tag_slug>
<wp:tag_name><![CDATA[Learning]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>124</wp:term_id>
<wp:tag_slug>life</wp:tag_slug>
<wp:tag_name><![CDATA[life]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>2200</wp:term_id>
<wp:tag_slug>links</wp:tag_slug>
<wp:tag_name><![CDATA[Links]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>55247040</wp:term_id>
<wp:tag_slug>made-up-stats</wp:tag_slug>
<wp:tag_name><![CDATA[Made Up Stats]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>223</wp:term_id>
<wp:tag_slug>mars</wp:tag_slug>
<wp:tag_name><![CDATA[Mars]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>44909891</wp:term_id>
<wp:tag_slug>marscuriosity</wp:tag_slug>
<wp:tag_name><![CDATA[MarsCuriosity]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>1972675</wp:term_id>
<wp:tag_slug>msl</wp:tag_slug>
<wp:tag_name><![CDATA[MSL]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>1836</wp:term_id>
<wp:tag_slug>nasa</wp:tag_slug>
<wp:tag_name><![CDATA[NASA]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>25</wp:term_id>
<wp:tag_slug>open-source</wp:tag_slug>
<wp:tag_name><![CDATA[Open Source]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>1880174</wp:term_id>
<wp:tag_slug>personal-2</wp:tag_slug>
<wp:tag_name><![CDATA[personal]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>510</wp:term_id>
<wp:tag_slug>project-management</wp:tag_slug>
<wp:tag_name><![CDATA[Project Management]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>1489142</wp:term_id>
<wp:tag_slug>rhino-mocks</wp:tag_slug>
<wp:tag_name><![CDATA[Rhino Mocks]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>4872</wp:term_id>
<wp:tag_slug>ruby</wp:tag_slug>
<wp:tag_name><![CDATA[Ruby]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>4745641</wp:term_id>
<wp:tag_slug>self-description</wp:tag_slug>
<wp:tag_name><![CDATA[self-description]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>1958</wp:term_id>
<wp:tag_slug>seo</wp:tag_slug>
<wp:tag_name><![CDATA[SEO]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>18068</wp:term_id>
<wp:tag_slug>shortcuts</wp:tag_slug>
<wp:tag_name><![CDATA[shortcuts]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>7916</wp:term_id>
<wp:tag_slug>stats</wp:tag_slug>
<wp:tag_name><![CDATA[stats]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>12</wp:term_id>
<wp:tag_slug>testing</wp:tag_slug>
<wp:tag_name><![CDATA[Testing]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>1575</wp:term_id>
<wp:tag_slug>texas</wp:tag_slug>
<wp:tag_name><![CDATA[Texas]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>8742</wp:term_id>
<wp:tag_slug>time-management</wp:tag_slug>
<wp:tag_name><![CDATA[Time Management]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>1788</wp:term_id>
<wp:tag_slug>tips</wp:tag_slug>
<wp:tag_name><![CDATA[tips]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>4841</wp:term_id>
<wp:tag_slug>tricks</wp:tag_slug>
<wp:tag_name><![CDATA[tricks]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>11320090</wp:term_id>
<wp:tag_slug>twitter-2</wp:tag_slug>
<wp:tag_name><![CDATA[twitter]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>1914</wp:term_id>
<wp:tag_slug>video-games</wp:tag_slug>
<wp:tag_name><![CDATA[video games]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>20998</wp:term_id>
<wp:tag_slug>whats-up</wp:tag_slug>
<wp:tag_name><![CDATA[What's Up]]></wp:tag_name>
</wp:tag>
<generator>http://wordpress.com/</generator>
<image>
<url>http://s2.wp.com/i/buttonw-com.png</url>
<title>Chris MissalChris Missal</title>
<link>http://chrismissal.wordpress.com</link>
</image>
<item>
<title>About Chris Missal</title>
<link>http://chrismissal.wordpress.com/2009/06/03/about-me/</link>
<pubDate>Thu, 04 Jun 2009 03:09:56 +0000</pubDate>
<dc:creator>cmissal</dc:creator>
<guid isPermaLink="false">http://chrismissal.wordpress.com/?p=4</guid>
<description/>
<content:encoded><![CDATA[<div class="aboutme">
<img class="alignright" style="margin-left:5px;margin-right:5px;" title="Chris Missal" src="http://www.gravatar.com/avatar/3c4478e6ae6c60b73d21c9fa0d1785ea?s=128&d=identicon&r=PG" alt="" width="128" height="128" />My name is Chris Missal, currently I'm a software developer in Cedar Rapids, Iowa. I have a passion for creating software that <strong>works well</strong>. I have a very strong opinion that testing software is the most important piece of delivering quality projects, and delivering them on time. Not only does it provide the peace of mind that the application does what it is supposed to do, but provides faster turnaround times when adding new features and functionality.
</div>
<h2>My Background</h2>
<div class="background">
Most of my background is in web development using ASP.NET with C#. I have developed several web sites in PHP and related technologies, although lately, I've been focusing more towards .Net and its Open Source frameworks and libraries. Major strengths of mine include XHTML, CSS & the jQuery JavaScript library. I do my best work in web development, but have some experience in desktop applications and Windows services. I have started learning Ruby more recently and can write Ruby, but haven't put it towards any large projects yet.
</div>
<h2>Skills</h2>
<div class="skills">
The following is a list of skills of which I am comfortable sharing my perceived skill level. These will be either beginner, intermediate, advanced, or expert.
<dl> <dt><strong>ASP.NET WebForms</strong> (Intermediate)</dt> <dd>I've been working in ASP.NET for 3 years using VB.Net and C#.</dd> <dt><strong>ASP.NET MVC</strong> (Advanced)</dt> <dd>I've been working extensively with ASP.NET MVC since Community Preview 3 in June 2008.</dd> <dt><strong>C#</strong> (Advanced)</dt> <dd>I do most of my coding in C# and I'm comfortable using all features up to version 3.0</dd> <dt><strong>VB.Net</strong> (Intermediate)</dt> <dd>I've used VB.Net on various web and windows applications, but little experience of the language in great depth or detail.</dd> <dt><strong>(X)HTML</strong> (Expert)</dt> <dd>I've been actively using XHTML for over 10 years and keep up to date with W3C recommendations and improvements.</dd> <dt><strong>CSS</strong> (Advanced)</dt> <dd>Proficient in applying CSS to new and existing web pages. Extensive knowledge of cross-browser complient styling.</dd> <dt><strong>jQuery</strong> (Advanced)</dt> <dd>I'm very comfortable with jQuery for dynamic web content as well as many of its plug-ins.</dd> </dl></div>
<h2>Contributions to Open Source Projects</h2>
<div class="opensourceprojects">
I like to contribute to open source software whenever I can. Here are some projects that I've helped out with:
<ul>
<li><a href="http://github.com/CoryFoy/DotNetKoans">DotNetKoans</a> : A set of Koans to teach the DotNet language. Based off of EdgeCase's RubyKoans</li>
<li><a href="http://github.com/TimBarcz/groop">Groop </a>: User Group Site</li>
<li><a href="http://plugins.jquery.com/project/horiz-bar-graph">jQuery Horizontal Bar Graph</a> : The Horizontal Bar Graph allows you to display a set of data semantically while giving it some visual appeal.</li>
<li><a href="http://github.com/BlogSharp/Blogsharp/tree/master">Blogsharp</a> : A .Net blog engine.</li>
<li><a class="external" title="Docu" href="http://docu.jagregory.com">Docu</a> : A .Net documentation generation tool</li>
<li><a href="http://castleproject.org/">Castle Project</a> : .Net tools, libraries and frameworks.</li>
<li><a href="http://plugins.jquery.com/project/validate">jQuery Validate</a> : A client side jQuery validation tool.</li>
</ul>
</div>
<h2>Non-Professional / Miscellaneous</h2>
<div class="miscellaneous">
Some other things about me that I'd like to share is that I'm a <em>newly</em> avid disc golfer. I picked it up semi-seriously at the beginning of summer in 2008 and have been playing quite a bit since then. Additionally, I'm a big fan of movies. I like to watch them, collect them and pick them apart.
</div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>4</wp:post_id>
<wp:post_date>2009-06-03 22:09:56</wp:post_date>
<wp:post_date_gmt>2009-06-04 03:09:56</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>about-me</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="information"><![CDATA[Information]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4942425]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>What I'm Doing in June 2009</title>
<link>http://chrismissal.wordpress.com/2009/06/24/what-im-doing-in-june-2009/</link>
<pubDate>Thu, 25 Jun 2009 01:11:14 +0000</pubDate>
<dc:creator>cmissal</dc:creator>
<guid isPermaLink="false">http://chrismissal.com/2009/06/24/what-im-doing-in-june-2009/</guid>
<description/>
<content:encoded><![CDATA[As of lately, I've been working on a bunch features to add to an ASP.NET MVC site for SEO (Search Engine Optimization). For those that don't know, SEO is improving your ranking in search engines. This helps new people find your web site through the use of a search engine like Google.
Technically, using the MVC stack, there's a lot of nice features we've been taking advantage of, including Routing. This isn't exclusive to ASP.NET MVC, but gives better URL structure to some links that you might need some attention when given keywords.
Aside from the professional details, I'm enjoying some (mostly) nice Iowa weather and looking forward to a wedding and vacation in the next month.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>14</wp:post_id>
<wp:post_date>2009-06-24 20:11:14</wp:post_date>
<wp:post_date_gmt>2009-06-25 01:11:14</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>what-im-doing-in-june-2009</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="information"><![CDATA[Information]]></category>
<category domain="post_tag" nicename="whats-up"><![CDATA[What's Up]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4942425]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Vacation & Ruby on Rails</title>
<link>http://chrismissal.wordpress.com/2009/07/09/vacation-ruby-on-rails/</link>
<pubDate>Fri, 10 Jul 2009 02:13:53 +0000</pubDate>
<dc:creator>cmissal</dc:creator>
<guid isPermaLink="false">http://chrismissal.com/2009/07/09/vacation-ruby-on-rails/</guid>
<description/>
<content:encoded><![CDATA[I've decided to start teaching myself RoR as a way to keep my mind fresh, open my mind to new ideas in development and broaden my programming talents. Also, I'm taking two and a half days off this month... About the max I can stand without Internet. Camping in Minnesota from a Thursday to Sunday, should be a good time!]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>15</wp:post_id>
<wp:post_date>2009-07-09 21:13:53</wp:post_date>
<wp:post_date_gmt>2009-07-10 02:13:53</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>vacation-ruby-on-rails</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="information"><![CDATA[Information]]></category>
<category domain="post_tag" nicename="whats-up"><![CDATA[What's Up]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4942425]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>More or Less Privacy with Facebook</title>
<link>http://chrismissal.wordpress.com/2009/07/27/more-or-less-privacy-with-facebook/</link>
<pubDate>Tue, 28 Jul 2009 04:39:13 +0000</pubDate>
<dc:creator>cmissal</dc:creator>
<guid isPermaLink="false">http://chrismissal.com/?p=18</guid>
<description/>
<content:encoded><![CDATA[In case you're on Facebook, you might want to check this post out:
<a title="More or Less Privacy with Facebook" href="http://missals.wordpress.com/2009/07/27/more-or-less-privacy-with-facebook/">http://missals.wordpress.com/2009/07/27/more-or-less-privacy-with-facebook/</a>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>18</wp:post_id>
<wp:post_date>2009-07-27 23:39:13</wp:post_date>
<wp:post_date_gmt>2009-07-28 04:39:13</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>more-or-less-privacy-with-facebook</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="information"><![CDATA[Information]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4942425]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Tools I Use</title>
<link>http://chrismissal.wordpress.com/tools/</link>
<pubDate>Sat, 08 Aug 2009 14:33:11 +0000</pubDate>
<dc:creator>cmissal</dc:creator>
<guid isPermaLink="false">http://chrismissal.com/?page_id=20</guid>
<description/>
<content:encoded><![CDATA[The following is a list of tools that I find very helpful. There's several reasons to use these tools, but primarily they make my life easier and I trust them. I'm using these tools because they are worth the price (most are free), or I haven't found something better yet!
<h2><strong>Testing Tools</strong></h2>
The following are tools that I use to create unit tests and account for code coverage. Unit testing and code coverage are important to me because they ensure that my code works as I intended it to and future changes that can break my functionality will alert me right away, not in production.
<ul>
<li><a href="http://www.nunit.org/">NUnit</a>, <a href="http://xunit.codeplex.com">XUnit</a>, <a href="http://www.mbunit.com">MbUnit</a></li>
<li><a href="http://shouldly.github.com/">Shouldly</a></li>
<li><a href="http://www.testdriven.net">TestDriven.Net</a></li>
<li><a href="http://www.ncover.com">NCover</a></li>
<li><a href="http://watin.sourceforge.net">WatiN</a></li>
<li><a href="http://github.com/machine/machine.specifications">MSpec</a></li>
<li><a href="http://qunitjs.com/">QUnit</a></li>
</ul>
<h2><strong>Isolation/Mocking/Testing Frameworks</strong></h2>
Isolation Frameworks (or sometimes referred to as mocking frameworks) aid in testing. They provide the ability to setup objects quickly to give your tests an expected outcome. When you write your code to work with abstractions, isolation frameworks are key to testing the behavior of your custom code with these abstracted libraries.
<ul>
<li><a title="Rhino Mocks" href="http://hibernatingrhinos.com/open-source/rhino-mocks">Rhino Mocks</a></li>
<li><a href="http://nsubstitute.github.com/">NSubstitute</a></li>
<li><a href="http://code.google.com/p/moq/">Moq</a></li>
</ul>
<h2>IDEs & Text Editors</h2>
Editors are the life of code and the plug-ins they come with are the blood. I do all of my professional work in .Net (and other various MS technologies), so I use Visual Studio nearly all the time. I always try to keep up to date with the most recent version, as of this update, I'm using VS2008 Pro, but it's not really Visual Studio that I use, it basically hosts ReSharper for me. JetBrains's ReSharper is a necessity for any .Net programmer that thinks of their job as a serious craft for enabling quality software. When it comes to basic/general/all-purpose text editors, I choose Sublime 2.
<ul>
<li><a href="http://msdn.microsoft.com/en-us/vstudio/default.aspx">Visual Studio</a> with:
<ul>
<li><a href="http://www.jetbrains.com/resharper/">ReSharper</a></li>
<li><a href="http://submain.com/products/ghostdoc.aspx">GhostDoc</a></li>
<li><a href="http://www.testdriven.net">TestDriven.net</a></li>
</ul>
</li>
<li><a href="http://www.sublimetext.com/2">Sublime 2</a></li>
<li><a href="http://notepad-plus.sourceforge.net">Notepad++</a></li>
<li><a href="http://www.scootersoftware.com/download.php">Beyond Compare</a></li>
<li><a href="http://www.jetbrains.com/pycharm/">PyCharm</a></li>
</ul>
<h2>Productivity</h2>
Automating a tedious task can save boat loads of time over the lifetime of a project. If there's something that causes any friction, I try to find a better way to avoid the slowness or pain. Here are some tools I use to allow me to be more productive.
<ul>
<li><a href="http://www.jetbrains.com/resharper/">ReSharper</a></li>
<li><a href="http://www.linqpad.net/">LINQPad</a></li>
<li><a href="http://evernote.com/">Evernote</a></li>
<li><a href="http://nant.sourceforge.net/">Nant</a></li>
<li><a href="http://launchy.sourceforge.net/">Launchy</a></li>
</ul>
<h2>Photo/Image Editing</h2>
By no means am I a power user when it comes to photo or image editing software. I primarily use them for screen capturing or simple web image editing. When I need to open something up for some quick edits or basic cropping, I use Paint.Net. I'm slowly weaning myself off of GIMP because the shortcuts aren't as natural to me as Paint.Net.
<ul>
<li><a href="http://www.paint.net">Paint.Net</a></li>
</ul>
<h2>.NET Code Libraries</h2>
There's no point in re-inventing the wheel, right? For that reason, it's pointless to write a brand new ORM with every new project. There are many open source libraries out there to help you hook up a lot of the tedious plumbing that's required to build an application. The time I could spend writing all this code would essentially be stealing. For this reason I rely on these tools to help save me time and get my projects done faster. The final reason I use other libraries in my code is that I'm not going to be around forever to maintain this code, if I can give somebody a widely used and highly available codebase to work from, they're going to have a lot easier of a time working with it than if they came in and had to piece together what my brain was building at that time.
<ul>
<li><a href="http://nhforge.org">NHibernate</a></li>
<li><a href="http://structuremap.sourceforge.net/Default.htm">StructureMap</a></li>
<li><a href="http://castleproject.org">Castle Windsor, Castle Validators</a></li>
<li><a href="http://logging.apache.org/log4net/index.html">log4net</a></li>
<li><a href="http://github.com/mvccontrib/MvcContrib">MvcContrib</a></li>
<li><a href="http://sparkviewengine.com/">Spark View Engine</a></li>
<li>Razor View Engine</li>
<li><a href="http://code.google.com/p/dapper-dot-net/">Dapper</a></li>
<li><a href="http://nservicebus.com/">NServiceBus</a></li>
<li><a href="http://ravendb.net">RavenDB</a></li>
</ul>
<h2>Python Packages</h2>
What do I use in when working with Python?
<ul>
<li>South</li>
<li>Django</li>
<li>Flask</li>
</ul>
<h2>Front-End Web Development</h2>
<ul>
<li><a href="http://jquery.com">jQuery</a></li>
<li><a href="http://www.sencha.com/products/extjs">Ext JS</a></li>
<li><a href="http://requirejs.org/">RequireJS</a></li>
</ul>
<h2>Browsers</h2>
<ul>
<li>Chrome</li>
<li>Firefox</li>
</ul>
<h2>Version Control Systems</h2>
Also known as Source Code Management or Revision Control. Here are the systems I am familiar with using. Subversion is very widely used and pretty good; the support and tooling around it is great. Git seems to be the best solution I've used, and while adoption rate hasn't quite reached "mainstream" in .NET, it is growing every day.
<ul>
<li><a href="http://git-scm.com/">Git</a> <em>(<a href="http://chrismissal.github.com/git-achievements/">My Git Achievements</a>) - I'm not using this any longer, but still using git almost everywhere</em></li>
<li><a href="http://mercurial.selenic.com/">Mercurial</a></li>
<li><a href="http://subversion.tigris.org/">Subversion</a></li>
</ul>
<h2>Debugging</h2>
Sometimes you need to look a little deeper to find the solutions to some problems. Sometimes I'll use tools to expose problems that aren't very easy to see. Fiddler2 is great for seeing all web requests that are made from the computer it's running on. While looking into reasons .Net applications crash, WinDBG has provided to be useful for analyzing crash dump files. Additionally, I've used JetBrains' DotTrace for profiling applications and finding bottlenecks and poor performing code.
<ul>
<li><a href="http://en.wikipedia.org/wiki/WinDbg">WinDBG</a></li>
<li><a href="http://www.fiddlertool.com/fiddler2/version.asp">Fiddler2</a></li>
<li><a href="http://www.jetbrains.com/profiler/">JetBrains DotTrace</a></li>
<li>JetBrains dotPeek</li>
<li>log4net</li>
</ul>
<h2>Project Management</h2>
<ul>
<li>AgileZen</li>
<li>PivotalTracker</li>
<li>Teamwork</li>
</ul>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>20</wp:post_id>
<wp:post_date>2009-08-08 09:33:11</wp:post_date>
<wp:post_date_gmt>2009-08-08 14:33:11</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>tools</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>page</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4942425]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Craftsmanship</title>
<link>http://chrismissal.wordpress.com/2009/08/08/craftsmanship/</link>
<pubDate>Sat, 08 Aug 2009 14:08:16 +0000</pubDate>
<dc:creator>cmissal</dc:creator>
<guid isPermaLink="false">http://chrismissal.com/?p=22</guid>
<description/>
<content:encoded><![CDATA[I just came across a really good quote that was not intended for software development, but completely rings true.
<blockquote>"Neither talent without instruction, nor instruction without talent can produce the perfect craftsman."
<em>- Vitruvius</em></blockquote>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>22</wp:post_id>
<wp:post_date>2009-08-08 09:08:16</wp:post_date>
<wp:post_date_gmt>2009-08-08 14:08:16</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>craftsmanship</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="post_tag" nicename="craftsmanship"><![CDATA[Craftsmanship]]></category>
<category domain="category" nicename="information"><![CDATA[Information]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4942425]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Speaking Engagements</title>
<link>http://chrismissal.wordpress.com/speaker/</link>
<pubDate>Sat, 08 Aug 2009 14:46:35 +0000</pubDate>
<dc:creator>cmissal</dc:creator>
<guid isPermaLink="false">http://chrismissal.com/?page_id=28</guid>
<description/>
<content:encoded><![CDATA[I don't spend lots of time speaking and traveling for meetings/presentations, but I will occasionally try to squeeze some in.
<h3><span style="text-decoration:underline;">Previous Presentations</span></h3>
<p style="padding-left:30px;"><strong>Using jQuery to Create Rich Internet Applications</strong>
<a href="http://crineta.org">CRineta</a> - Cedar Rapids, IA - March 2nd, 2009</p>
<p style="padding-left:30px;"><strong>Beginner's Guide to Unit Tests</strong> (with <a href="http://devlicio.us/blogs/tim_barcz/">Tim Barcz</a>)<strong>
</strong><a href="http://iowacodecamp.com">Iowa Code Camp</a> - Cedar Rapids, IA - May 2nd, 2009</p>
<p style="padding-left:30px;"><strong>Open Spaces Convener</strong>
<a href="http://iowacodecamp.com">Iowa Code Camp</a> - Cedar Rapids, IA - May 2nd, 2009</p>
<p style="padding-left:30px;"><strong>How to do Virtually Anything With JQuery</strong><span style="text-decoration:underline;">
</span><a href="http://iowacodecamp.com/">Iowa Code Camp</a> - West Des Moines, IA - November 7th, 2009</p>
<p style="padding-left:30px;"><strong>Using jQuery to Create Rich Internet Applications
</strong><a href="http://cvineta.org">CVineta</a> - Cedar Falls, IA - November 10th, 2009</p>
<p style="padding-left:30px;"><strong>Open Spaces Convener
</strong><a href="http://iowacodecamp.com/">Iowa Code Camp</a> - West Des Moines, IA - November 6th, 2010</p>
<p style="padding-left:30px;"><strong>Better Today: Your First Unit Tests</strong>
<a href="http://iowacodecamp.com">Iowa Code Camp</a> - Cedar Rapids, IA - April 30th, 2011</p>
<h3><span style="text-decoration:underline;">Topics I Enjoy Talking About</span></h3>
<p style="padding-left:30px;">Front-End Web Development with JavaScript/jQuery
Unit Testing & Frameworks used in Testing
HTML/CSS Best Practices and Guidelines
The ASP.NET MVC Framework</p>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>28</wp:post_id>
<wp:post_date>2009-08-08 09:46:35</wp:post_date>
<wp:post_date_gmt>2009-08-08 14:46:35</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>speaker</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>page</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4942425]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Community Involvement</title>
<link>http://chrismissal.wordpress.com/community-involvement/</link>
<pubDate>Thu, 13 Aug 2009 03:50:37 +0000</pubDate>
<dc:creator>cmissal</dc:creator>
<guid isPermaLink="false">http://chrismissal.com/?page_id=46</guid>
<description/>
<content:encoded><![CDATA[<h2>Iowa Code Camp</h2>
<strong>Web site:</strong> <a href="http://www.iowacodecamp.com">http://www.iowacodecamp.com</a>
<strong>Title:</strong> Vice President
<strong>Duration: </strong>Fall 2009 - Present
Any kind of help that is needed with the code camp involves all leaders, but working with sponsorhip I'm required to find area businesses and companies and allow them to sponsor our code camp.
<h2>CRineta</h2>
<strong>Web site:</strong> <a href="http://www.crineta.org">http://www.crineta.org</a>
<strong>Title:</strong> Webmaster/Communications
<strong>Duration:</strong> January 2008 - Present
My primary duties involved managing the email communication to the hundreds of users in the mailing list. Usually three times per month, emails are sent out keeping the members up to date with reminders and notices on upcoming meetings and any information from previous meetings in follow-up messages.
<h2>IowaJS</h2>
<strong>Web site:</strong> <a href="http://iowajs.org">http://iowajs.org</a>
<strong>Title:</strong> None/Organizers
<strong>Duration:</strong> May 2011 - Present
IowaJS started as a topic at the Spring 2011 Iowa Code Camp and a couple weeks later had the first meeting. The organization is still very young, but we're getting lots of people to show up that are very interested in JavaScript. Our meetings are more like meetups than presentations, everything is very informal by design.
<h2>BarcampICR</h2>
<strong>Web site:</strong> <a href="http://barcampicr.com">http://barcampicr.com
</a><strong>Title:</strong> Barcamp CTO
<strong>Duration:</strong> August 2011 - Present
Barcamps stray outside my normal community of software people, but there's enough overlap and diversity to make it something that I'm happy to be a part of.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>46</wp:post_id>
<wp:post_date>2009-08-12 22:50:37</wp:post_date>
<wp:post_date_gmt>2009-08-13 03:50:37</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>community-involvement</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>page</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4942425]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>One Reason I've Improved as a Developer</title>
<link>http://chrismissal.wordpress.com/2009/11/21/one-reason-ive-improved-as-a-developer/</link>
<pubDate>Sat, 21 Nov 2009 14:56:51 +0000</pubDate>
<dc:creator>cmissal</dc:creator>
<guid isPermaLink="false">http://chrismissal.com/?p=119</guid>
<description/>
<content:encoded><![CDATA[I'm pretty sure that there is a direct correlation between the time I started really growing as a developer and the time I stopped subscribing to television. Since then I've been able to spend a lot more time on projects, coding and reading. I remember when working on projects before that time. I always seemed to not have enough hours in the day to work on them. I still feel that way, but I'm actually putting in way more time than I was before I was TV-less.
There are times when I wish I had cable television, but they're far and few between. Most shows I watch, I can catch online with a day or two of their airing. Sports on TV are the only times I miss my idiot box.
I think it takes a lot of discipline to really try to improve as a software developer. By freeing yourself from "time-sucks", you'll be able to spend more time improving your craft. What are some other time wasters that people could consider removing from their life?]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>119</wp:post_id>
<wp:post_date>2009-11-21 09:56:51</wp:post_date>
<wp:post_date_gmt>2009-11-21 14:56:51</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>one-reason-ive-improved-as-a-developer</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="post_tag" nicename="craftsmanship"><![CDATA[Craftsmanship]]></category>
<category domain="category" nicename="discussion"><![CDATA[Discussion]]></category>
<category domain="post_tag" nicename="learning"><![CDATA[Learning]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4942425]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>delicious</wp:meta_key>
<wp:meta_value><![CDATA[a:3:{s:5:"count";s:1:"0";s:9:"post_tags";s:0:"";s:4:"time";s:10:"1270830331";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>reddit</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:5:"count";s:1:"0";s:4:"time";s:10:"1271765467";}]]></wp:meta_value>
</wp:postmeta>
<wp:comment>
<wp:comment_id>18</wp:comment_id>
<wp:comment_author><![CDATA[James Gregory]]></wp:comment_author>
<wp:comment_author_email>[email protected]</wp:comment_author_email>
<wp:comment_author_url>http://jagregory.com</wp:comment_author_url>
<wp:comment_author_IP>81.23.54.145</wp:comment_author_IP>
<wp:comment_date>2009-11-21 10:37:51</wp:comment_date>
<wp:comment_date_gmt>2009-11-21 15:37:51</wp:comment_date_gmt>
<wp:comment_content><![CDATA[I've had a similar experience too. Over the past couple of years (coincidently also the time my OSS work has boomed) I've stopped watching TV completely, except for a dedicated "TV night" where I spend a few hours catching up with my favourite programs. This effectively means two things, I don't miss out on the TV shows I enjoy, and that I can plan around it. I'm now down one night instead of several smaller time-chunks throughout the week, which while the actual time is probably similar, not losing focus every few hours is great.]]></wp:comment_content>
<wp:comment_approved>1</wp:comment_approved>
<wp:comment_type/>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>0</wp:comment_user_id>
</wp:comment>
<wp:comment>
<wp:comment_id>19</wp:comment_id>
<wp:comment_author><![CDATA[Jeremy Wiebe]]></wp:comment_author>
<wp:comment_author_email>[email protected]</wp:comment_author_email>
<wp:comment_author_url/>
<wp:comment_author_IP>74.14.111.249</wp:comment_author_IP>
<wp:comment_date>2009-11-21 12:06:01</wp:comment_date>
<wp:comment_date_gmt>2009-11-21 17:06:01</wp:comment_date_gmt>
<wp:comment_content><![CDATA[I find that reading blogs and technical materials online can suck up alot of time. Those are good, but I think you also need to read and write code alot more in order to "internalize" what you read and learn about.]]></wp:comment_content>
<wp:comment_approved>1</wp:comment_approved>
<wp:comment_type/>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>0</wp:comment_user_id>
</wp:comment>
<wp:comment>
<wp:comment_id>20</wp:comment_id>
<wp:comment_author><![CDATA[Greg]]></wp:comment_author>
<wp:comment_author_email>[email protected]</wp:comment_author_email>
<wp:comment_author_url/>
<wp:comment_author_IP>173.21.13.150</wp:comment_author_IP>
<wp:comment_date>2009-11-21 16:21:11</wp:comment_date>
<wp:comment_date_gmt>2009-11-21 21:21:11</wp:comment_date_gmt>
<wp:comment_content><![CDATA[Move into a condo or apartment and avoid yard work.
Don't get married. Skip women (or visa-versa) all together.
Don't have children, especially if you aren't married.
Avoid any social life.
Avoid heavy drinking or anything that could make you incapable of studying Microsof't's next data access pattern.
Hire someone to clean your condo or apartment.]]></wp:comment_content>
<wp:comment_approved>1</wp:comment_approved>
<wp:comment_type/>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>0</wp:comment_user_id>
</wp:comment>
<wp:comment>
<wp:comment_id>21</wp:comment_id>
<wp:comment_author><![CDATA[Chris Missal]]></wp:comment_author>
<wp:comment_author_email>[email protected]</wp:comment_author_email>
<wp:comment_author_url>http://chrismissal.com</wp:comment_author_url>
<wp:comment_author_IP>75.167.199.202</wp:comment_author_IP>
<wp:comment_date>2009-11-22 14:08:41</wp:comment_date>
<wp:comment_date_gmt>2009-11-22 19:08:41</wp:comment_date_gmt>
<wp:comment_content><![CDATA[Kind of extreme Greg, but to each, his own. :)]]></wp:comment_content>
<wp:comment_approved>1</wp:comment_approved>
<wp:comment_type/>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>4942425</wp:comment_user_id>
</wp:comment>
</item>
<item>
<title>One Post Per Day</title>
<link>http://chrismissal.wordpress.com/2009/10/21/one-post-per-day/</link>
<pubDate>Thu, 22 Oct 2009 02:12:55 +0000</pubDate>
<dc:creator>cmissal</dc:creator>
<guid isPermaLink="false">http://chrismissal.com/?p=60</guid>
<description/>
<content:encoded><![CDATA[I've decided that I'm going to post here at least once per day now. I have my other blogs that I concentrate on, primary <a href="http://www.lostechies.com">LosTechies</a>, but the goal is to keep these short and sweet and share something that I've learned each and every day.
<a href="http://twitter.com/chrismissal">Twitter</a> is a good way to "micro-blog" if you will, but my posts here aren't quite going to make the 140 character cut-off.
For today's topic, if you do anything with a public facing web site, you really need to check out some of the video content that is put out by <a href="http://www.mattcutts.com/blog/">Matt Cutts</a>. Matt works for Google's Spam team (which really means anti-spam) and has excellent topics on how to improve the Page Rank, reputation and relevance of your site.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>60</wp:post_id>
<wp:post_date>2009-10-21 21:12:55</wp:post_date>
<wp:post_date_gmt>2009-10-22 02:12:55</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>one-post-per-day</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="information"><![CDATA[Information]]></category>
<category domain="category" nicename="links"><![CDATA[Links]]></category>
<category domain="post_tag" nicename="seo"><![CDATA[SEO]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4942425]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>reddit</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:5:"count";s:1:"0";s:4:"time";s:10:"1256180771";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>delicious</wp:meta_key>
<wp:meta_value><![CDATA[a:3:{s:5:"count";s:1:"0";s:9:"post_tags";s:0:"";s:4:"time";s:10:"1256180771";}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>How Much is One Percent Worth?</title>
<link>http://chrismissal.wordpress.com/2009/10/22/how-much-is-one-percent-worth/</link>
<pubDate>Fri, 23 Oct 2009 03:16:24 +0000</pubDate>
<dc:creator>cmissal</dc:creator>
<guid isPermaLink="false">http://chrismissal.com/?p=71</guid>
<description/>
<content:encoded><![CDATA[Today at work we were talking about how tiny improvements in e-commerce can yield big results. Take the following example:
<blockquote>You sell widgets on your web site and through email campaigns your average order is $50. Your email list is 50,000 subscribers strong; you can send them marketing emails to them all to entice them to purchase. At a 1% conversion rate you'll get 5 more orders for every percent you can decrease your bounce rate.</blockquote>
Obviously the key here is having a large list, but in our example above one percent will increase our revenue by $250, not bad!]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>71</wp:post_id>
<wp:post_date>2009-10-22 22:16:24</wp:post_date>
<wp:post_date_gmt>2009-10-23 03:16:24</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>how-much-is-one-percent-worth</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="discussion"><![CDATA[Discussion]]></category>
<category domain="post_tag" nicename="e-commerce"><![CDATA[E-Commerce]]></category>
<category domain="post_tag" nicename="email"><![CDATA[Email]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4942425]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>delicious</wp:meta_key>
<wp:meta_value><![CDATA[a:3:{s:5:"count";i:0;s:9:"post_tags";s:0:"";s:4:"time";i:1349471390;}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>reddit</wp:meta_key>
<wp:meta_value><![CDATA[a:2:{s:5:"count";i:0;s:4:"time";i:1343464928;}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Twin Cities Code Camp</title>
<link>http://chrismissal.wordpress.com/2009/10/23/twin-cities-code-camp/</link>
<pubDate>Fri, 23 Oct 2009 19:33:47 +0000</pubDate>
<dc:creator>cmissal</dc:creator>
<guid isPermaLink="false">http://chrismissal.com/?p=73</guid>
<description/>
<content:encoded><![CDATA[I'm off to the University of Minnesota to attend the <a href="http://twincitiescodecamp.com">Twin Cities Code Camp</a>! I'm really looking forward to sessions on JavaScript, Ruby, MVC, DDD and learning more about Pex.
I don't think I'll be able to attend all the sessions I'd like to, but not being able to attend all I want is a better problem than not having enough good ones to choose from. I haven't been to a TCCC yet. I'm confident that it will live up to the expectations.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>73</wp:post_id>
<wp:post_date>2009-10-23 14:33:47</wp:post_date>
<wp:post_date_gmt>2009-10-23 19:33:47</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>twin-cities-code-camp</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password/>