-
Notifications
You must be signed in to change notification settings - Fork 28
/
wordpress-export.xml
6423 lines (5904 loc) · 483 KB
/
wordpress-export.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/3.3.1" created="2014-08-17 13:50" -->
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.1/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.1/"
>
<channel>
<title>Tales from behind the browser</title>
<link>http://mono.servicestack.net/mythz_blog</link>
<description>adventures in code</description>
<pubDate>Sun, 17 Aug 2014 13:50:38 +0000</pubDate>
<language>en</language>
<wp:wxr_version>1.1</wp:wxr_version>
<wp:base_site_url>http://mono.servicestack.net/mythz_blog</wp:base_site_url>
<wp:base_blog_url>http://mono.servicestack.net/mythz_blog</wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login>admin</wp:author_login><wp:author_email>demis.bellot@gmail.com</wp:author_email><wp:author_display_name><![CDATA[admin]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>2</wp:author_id><wp:author_login>mythz</wp:author_login><wp:author_email></wp:author_email><wp:author_display_name><![CDATA[mythz]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:category><wp:term_id>1</wp:term_id><wp:category_nicename>uncategorized</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name></wp:category>
<generator>http://wordpress.org/?v=3.3.1</generator>
<item>
<title>Black256-703543</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=84</link>
<pubDate>Mon, 22 Mar 2010 19:01:03 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/03/Black256-703543.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Download Mflow]]></excerpt:encoded>
<wp:post_id>84</wp:post_id>
<wp:post_date>2010-03-22 22:01:03</wp:post_date>
<wp:post_date_gmt>2010-03-22 19:01:03</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>black256-703543</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>83</wp:post_parent>
<wp:menu_order>1</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/03/Black256-703543.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/03/Black256-703543.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"256";s:6:"height";s:3:"256";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:27:"2010/03/Black256-703543.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:3:{s:4:"file";s:27:"Black256-703543-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>itunes-logo</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=95</link>
<pubDate>Tue, 23 Mar 2010 01:18:01 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/03/itunes-logo.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[itunes logo]]></excerpt:encoded>
<wp:post_id>95</wp:post_id>
<wp:post_date>2010-03-23 04:18:01</wp:post_date>
<wp:post_date_gmt>2010-03-23 01:18:01</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>itunes-logo</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>83</wp:post_parent>
<wp:menu_order>1</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/03/itunes-logo.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/03/itunes-logo.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"137";s:6:"height";s:3:"153";s:14:"hwstring_small";s:22:"height='96' width='85'";s:4:"file";s:23:"2010/03/itunes-logo.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"itunes-logo-137x150.png";s:5:"width";s:3:"137";s:6:"height";s:3:"150";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>spotify-logo</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=102</link>
<pubDate>Tue, 23 Mar 2010 01:24:29 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/03/spotify-logo-1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[spotify logo]]></excerpt:encoded>
<wp:post_id>102</wp:post_id>
<wp:post_date>2010-03-23 04:24:29</wp:post_date>
<wp:post_date_gmt>2010-03-23 01:24:29</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>spotify-logo-1</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>83</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/03/spotify-logo-1.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/03/spotify-logo-1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"300";s:6:"height";s:3:"225";s:14:"hwstring_small";s:23:"height='96' width='128'";s:4:"file";s:26:"2010/03/spotify-logo-1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:3:{s:4:"file";s:26:"spotify-logo-1-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>nosql_thumb.gif</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=126</link>
<pubDate>Mon, 29 Mar 2010 22:17:06 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/03/nosql_thumb.gif</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>126</wp:post_id>
<wp:post_date>2010-03-30 01:17:06</wp:post_date>
<wp:post_date_gmt>2010-03-29 22:17:06</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>nosql_thumb-gif</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>381</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/03/nosql_thumb.gif</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/03/nosql_thumb.gif]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"180";s:6:"height";s:3:"120";s:14:"hwstring_small";s:23:"height='85' width='128'";s:4:"file";s:23:"2010/03/nosql_thumb.gif";s:5:"sizes";a:1:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"nosql_thumb-150x120.gif";s:5:"width";s:3:"150";s:6:"height";s:3:"120";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>nosql_thumb_thumb.gif</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=127</link>
<pubDate>Mon, 29 Mar 2010 22:17:06 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/03/nosql_thumb_thumb.gif</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>127</wp:post_id>
<wp:post_date>2010-03-30 01:17:06</wp:post_date>
<wp:post_date_gmt>2010-03-29 22:17:06</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>nosql_thumb_thumb-gif</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/03/nosql_thumb_thumb.gif</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/03/nosql_thumb_thumb.gif]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"180";s:6:"height";s:3:"120";s:14:"hwstring_small";s:23:"height='85' width='128'";s:4:"file";s:29:"2010/03/nosql_thumb_thumb.gif";s:5:"sizes";a:1:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"nosql_thumb_thumb-150x120.gif";s:5:"width";s:3:"150";s:6:"height";s:3:"120";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>redis.png</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=128</link>
<pubDate>Mon, 29 Mar 2010 22:17:06 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/03/redis.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>128</wp:post_id>
<wp:post_date>2010-03-30 01:17:06</wp:post_date>
<wp:post_date_gmt>2010-03-29 22:17:06</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>redis-png</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>381</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/03/redis.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/03/redis.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";s:3:"112";s:6:"height";s:2:"86";s:14:"hwstring_small";s:23:"height='86' width='112'";s:4:"file";s:17:"2010/03/redis.png";s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>JsvFragment</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=187</link>
<pubDate>Sat, 10 Apr 2010 01:27:32 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/04/JsvFragment.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>187</wp:post_id>
<wp:post_date>2010-04-10 04:27:32</wp:post_date>
<wp:post_date_gmt>2010-04-10 01:27:32</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>jsvfragment</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>176</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/04/JsvFragment.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/04/JsvFragment.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"592";s:6:"height";s:3:"694";s:14:"hwstring_small";s:22:"height='96' width='81'";s:4:"file";s:23:"2010/04/JsvFragment.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"JsvFragment-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"JsvFragment-255x300.png";s:5:"width";s:3:"255";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:23:"JsvFragment-592x288.png";s:5:"width";s:3:"592";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:23:"JsvFragment-592x288.png";s:5:"width";s:3:"592";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:23:"JsvFragment-255x300.png";s:5:"width";s:3:"255";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>XmlFragment</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=188</link>
<pubDate>Sat, 10 Apr 2010 01:27:57 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/04/XmlFragment.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>188</wp:post_id>
<wp:post_date>2010-04-10 04:27:57</wp:post_date>
<wp:post_date_gmt>2010-04-10 01:27:57</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>xmlfragment</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>176</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/04/XmlFragment.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/04/XmlFragment.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"590";s:6:"height";s:3:"689";s:14:"hwstring_small";s:22:"height='96' width='82'";s:4:"file";s:23:"2010/04/XmlFragment.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"XmlFragment-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"XmlFragment-256x300.png";s:5:"width";s:3:"256";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:23:"XmlFragment-590x288.png";s:5:"width";s:3:"590";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:23:"XmlFragment-590x288.png";s:5:"width";s:3:"590";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:23:"XmlFragment-256x300.png";s:5:"width";s:3:"256";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>new-mflow-homepage</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=236</link>
<pubDate>Tue, 18 May 2010 19:39:47 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/05/new-mflow-homepage.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[New look mflow with tonnes new features!]]></excerpt:encoded>
<wp:post_id>236</wp:post_id>
<wp:post_date>2010-05-18 22:39:47</wp:post_date>
<wp:post_date_gmt>2010-05-18 19:39:47</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>new-mflow-homepage</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/05/new-mflow-homepage.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/05/new-mflow-homepage.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:4:"1229";s:6:"height";s:3:"958";s:14:"hwstring_small";s:23:"height='96' width='123'";s:4:"file";s:30:"2010/05/new-mflow-homepage.png";s:5:"sizes";a:6:{s:9:"thumbnail";a:3:{s:4:"file";s:30:"new-mflow-homepage-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:30:"new-mflow-homepage-300x233.png";s:5:"width";s:3:"300";s:6:"height";s:3:"233";}s:5:"large";a:3:{s:4:"file";s:31:"new-mflow-homepage-1024x798.png";s:5:"width";s:4:"1024";s:6:"height";s:3:"798";}s:14:"post-thumbnail";a:3:{s:4:"file";s:31:"new-mflow-homepage-1000x288.png";s:5:"width";s:4:"1000";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:31:"new-mflow-homepage-1000x288.png";s:5:"width";s:4:"1000";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:30:"new-mflow-homepage-384x300.png";s:5:"width";s:3:"384";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[new mflow homepage]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>new-mflow-homepage-thumb</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=238</link>
<pubDate>Tue, 18 May 2010 19:41:56 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/05/new-mflow-homepage-thumb.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>238</wp:post_id>
<wp:post_date>2010-05-18 22:41:56</wp:post_date>
<wp:post_date_gmt>2010-05-18 19:41:56</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>new-mflow-homepage-thumb</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/05/new-mflow-homepage-thumb.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/05/new-mflow-homepage-thumb.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"500";s:6:"height";s:3:"390";s:14:"hwstring_small";s:23:"height='96' width='123'";s:4:"file";s:36:"2010/05/new-mflow-homepage-thumb.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:36:"new-mflow-homepage-thumb-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:36:"new-mflow-homepage-thumb-300x234.png";s:5:"width";s:3:"300";s:6:"height";s:3:"234";}s:14:"post-thumbnail";a:3:{s:4:"file";s:36:"new-mflow-homepage-thumb-500x288.png";s:5:"width";s:3:"500";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:36:"new-mflow-homepage-thumb-500x288.png";s:5:"width";s:3:"500";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:36:"new-mflow-homepage-thumb-384x300.png";s:5:"width";s:3:"384";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
<wp:meta_value><![CDATA[preview of new mflow homepage]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>mvc2-empty-project</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=260</link>
<pubDate>Thu, 24 Jun 2010 23:12:22 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/06/mvc2-empty-project.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>260</wp:post_id>
<wp:post_date>2010-06-25 02:12:22</wp:post_date>
<wp:post_date_gmt>2010-06-24 23:12:22</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>mvc2-empty-project</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>251</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/06/mvc2-empty-project.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/06/mvc2-empty-project.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"251";s:6:"height";s:3:"443";s:14:"hwstring_small";s:22:"height='96' width='54'";s:4:"file";s:30:"2010/06/mvc2-empty-project.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:30:"mvc2-empty-project-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:30:"mvc2-empty-project-169x300.png";s:5:"width";s:3:"169";s:6:"height";s:3:"300";}s:14:"post-thumbnail";a:3:{s:4:"file";s:30:"mvc2-empty-project-251x288.png";s:5:"width";s:3:"251";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:30:"mvc2-empty-project-251x288.png";s:5:"width";s:3:"251";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:30:"mvc2-empty-project-169x300.png";s:5:"width";s:3:"169";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>home-controller</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=261</link>
<pubDate>Thu, 24 Jun 2010 23:59:47 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/06/home-controller.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>261</wp:post_id>
<wp:post_date>2010-06-25 02:59:47</wp:post_date>
<wp:post_date_gmt>2010-06-24 23:59:47</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>home-controller</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>251</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/06/home-controller.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/06/home-controller.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"409";s:6:"height";s:3:"249";s:14:"hwstring_small";s:23:"height='77' width='128'";s:4:"file";s:27:"2010/06/home-controller.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:27:"home-controller-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:27:"home-controller-300x182.png";s:5:"width";s:3:"300";s:6:"height";s:3:"182";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>asp.net_logo_small</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=266</link>
<pubDate>Mon, 28 Jun 2010 21:38:00 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/06/asp.net_logo_small.gif</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>266</wp:post_id>
<wp:post_date>2010-06-29 00:38:00</wp:post_date>
<wp:post_date_gmt>2010-06-28 21:38:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>asp-net_logo_small</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>251</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/06/asp.net_logo_small.gif</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/06/asp.net_logo_small.gif]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";s:3:"149";s:6:"height";s:2:"58";s:14:"hwstring_small";s:23:"height='49' width='128'";s:4:"file";s:30:"2010/06/asp.net_logo_small.gif";s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>java-logo</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=267</link>
<pubDate>Mon, 28 Jun 2010 21:38:01 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/06/java-logo.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>267</wp:post_id>
<wp:post_date>2010-06-29 00:38:01</wp:post_date>
<wp:post_date_gmt>2010-06-28 21:38:01</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>java-logo</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>251</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/06/java-logo.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/06/java-logo.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";s:2:"96";s:6:"height";s:2:"96";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:21:"2010/06/java-logo.jpg";s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>logo_asp</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=268</link>
<pubDate>Mon, 28 Jun 2010 21:38:01 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/06/logo_asp.gif</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>268</wp:post_id>
<wp:post_date>2010-06-29 00:38:01</wp:post_date>
<wp:post_date_gmt>2010-06-28 21:38:01</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>logo_asp</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>251</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/06/logo_asp.gif</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/06/logo_asp.gif]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";s:3:"140";s:6:"height";s:2:"57";s:14:"hwstring_small";s:23:"height='52' width='128'";s:4:"file";s:20:"2010/06/logo_asp.gif";s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>asp-net-mvc</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=269</link>
<pubDate>Mon, 28 Jun 2010 21:40:44 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/06/asp-net-mvc.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>269</wp:post_id>
<wp:post_date>2010-06-29 00:40:44</wp:post_date>
<wp:post_date_gmt>2010-06-28 21:40:44</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>asp-net-mvc</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>251</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/06/asp-net-mvc.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/06/asp-net-mvc.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"323";s:6:"height";s:3:"310";s:14:"hwstring_small";s:23:"height='96' width='100'";s:4:"file";s:23:"2010/06/asp-net-mvc.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"asp-net-mvc-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"asp-net-mvc-300x287.png";s:5:"width";s:3:"300";s:6:"height";s:3:"287";}s:14:"post-thumbnail";a:3:{s:4:"file";s:23:"asp-net-mvc-323x288.png";s:5:"width";s:3:"323";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:23:"asp-net-mvc-323x288.png";s:5:"width";s:3:"323";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:23:"asp-net-mvc-312x300.png";s:5:"width";s:3:"312";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Net Logo with ASP.NET</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=270</link>
<pubDate>Mon, 28 Jun 2010 21:45:45 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/06/Net-Logo-with-ASP.NET_7E879BE1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>270</wp:post_id>
<wp:post_date>2010-06-29 00:45:45</wp:post_date>
<wp:post_date_gmt>2010-06-28 21:45:45</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>net-logo-with-asp-net_7e879be1</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>251</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/06/Net-Logo-with-ASP.NET_7E879BE1.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/06/Net-Logo-with-ASP.NET_7E879BE1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"376";s:6:"height";s:2:"72";s:14:"hwstring_small";s:23:"height='24' width='128'";s:4:"file";s:42:"2010/06/Net-Logo-with-ASP.NET_7E879BE1.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:41:"Net-Logo-with-ASP.NET_7E879BE1-150x72.jpg";s:5:"width";s:3:"150";s:6:"height";s:2:"72";}s:6:"medium";a:3:{s:4:"file";s:41:"Net-Logo-with-ASP.NET_7E879BE1-300x57.jpg";s:5:"width";s:3:"300";s:6:"height";s:2:"57";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Admin_Tab</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=399</link>
<pubDate>Thu, 26 Aug 2010 10:27:36 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/08/Admin_Tab.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>399</wp:post_id>
<wp:post_date>2010-08-26 13:27:36</wp:post_date>
<wp:post_date_gmt>2010-08-26 10:27:36</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>admin_tab</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>381</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/08/Admin_Tab.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/08/Admin_Tab.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:4:"1005";s:6:"height";s:3:"841";s:14:"hwstring_small";s:23:"height='96' width='114'";s:4:"file";s:21:"2010/08/Admin_Tab.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"Admin_Tab-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"Admin_Tab-300x251.png";s:5:"width";s:3:"300";s:6:"height";s:3:"251";}s:14:"post-thumbnail";a:3:{s:4:"file";s:22:"Admin_Tab-1000x288.png";s:5:"width";s:4:"1000";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:22:"Admin_Tab-1000x288.png";s:5:"width";s:4:"1000";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:21:"Admin_Tab-358x300.png";s:5:"width";s:3:"358";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>View Key Group</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=400</link>
<pubDate>Thu, 26 Aug 2010 10:32:52 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/08/View_Key_Group.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>400</wp:post_id>
<wp:post_date>2010-08-26 13:32:52</wp:post_date>
<wp:post_date_gmt>2010-08-26 10:32:52</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>view_key_group</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>381</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/08/View_Key_Group.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/08/View_Key_Group.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:4:"1005";s:6:"height";s:3:"841";s:14:"hwstring_small";s:23:"height='96' width='114'";s:4:"file";s:26:"2010/08/View_Key_Group.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:26:"View_Key_Group-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:26:"View_Key_Group-300x251.png";s:5:"width";s:3:"300";s:6:"height";s:3:"251";}s:14:"post-thumbnail";a:3:{s:4:"file";s:27:"View_Key_Group-1000x288.png";s:5:"width";s:4:"1000";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:27:"View_Key_Group-1000x288.png";s:5:"width";s:4:"1000";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:26:"View_Key_Group-358x300.png";s:5:"width";s:3:"358";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>View Complex Type</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=401</link>
<pubDate>Thu, 26 Aug 2010 10:38:31 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/08/View_Complex_Type.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[View single complex type]]></excerpt:encoded>
<wp:post_id>401</wp:post_id>
<wp:post_date>2010-08-26 13:38:31</wp:post_date>
<wp:post_date_gmt>2010-08-26 10:38:31</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>view_complex_type</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>381</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/08/View_Complex_Type.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/08/View_Complex_Type.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:4:"1005";s:6:"height";s:3:"841";s:14:"hwstring_small";s:23:"height='96' width='114'";s:4:"file";s:29:"2010/08/View_Complex_Type.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"View_Complex_Type-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"View_Complex_Type-300x251.png";s:5:"width";s:3:"300";s:6:"height";s:3:"251";}s:14:"post-thumbnail";a:3:{s:4:"file";s:30:"View_Complex_Type-1000x288.png";s:5:"width";s:4:"1000";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:30:"View_Complex_Type-1000x288.png";s:5:"width";s:4:"1000";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:29:"View_Complex_Type-358x300.png";s:5:"width";s:3:"358";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>HttpJsonWebServices</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=418</link>
<pubDate>Tue, 07 Sep 2010 19:12:02 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/09/HttpJsonWebServices.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>418</wp:post_id>
<wp:post_date>2010-09-07 22:12:02</wp:post_date>
<wp:post_date_gmt>2010-09-07 19:12:02</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>httpjsonwebservices</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>417</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/09/HttpJsonWebServices.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/09/HttpJsonWebServices.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"477";s:6:"height";s:3:"467";s:14:"hwstring_small";s:22:"height='96' width='98'";s:4:"file";s:31:"2010/09/HttpJsonWebServices.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:31:"HttpJsonWebServices-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:31:"HttpJsonWebServices-300x293.png";s:5:"width";s:3:"300";s:6:"height";s:3:"293";}s:14:"post-thumbnail";a:3:{s:4:"file";s:31:"HttpJsonWebServices-477x288.png";s:5:"width";s:3:"477";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:31:"HttpJsonWebServices-477x288.png";s:5:"width";s:3:"477";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:31:"HttpJsonWebServices-306x300.png";s:5:"width";s:3:"306";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>ContactsService</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=419</link>
<pubDate>Tue, 07 Sep 2010 19:38:53 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/09/ContactsService.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>419</wp:post_id>
<wp:post_date>2010-09-07 22:38:53</wp:post_date>
<wp:post_date_gmt>2010-09-07 19:38:53</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>contactsservice</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>417</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/09/ContactsService.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/09/ContactsService.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"483";s:6:"height";s:3:"403";s:14:"hwstring_small";s:23:"height='96' width='115'";s:4:"file";s:27:"2010/09/ContactsService.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:27:"ContactsService-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:27:"ContactsService-300x250.png";s:5:"width";s:3:"300";s:6:"height";s:3:"250";}s:14:"post-thumbnail";a:3:{s:4:"file";s:27:"ContactsService-483x288.png";s:5:"width";s:3:"483";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:27:"ContactsService-483x288.png";s:5:"width";s:3:"483";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:27:"ContactsService-359x300.png";s:5:"width";s:3:"359";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>JsonXmlResults</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=420</link>
<pubDate>Tue, 07 Sep 2010 19:41:45 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/09/JsonXmlResults.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>420</wp:post_id>
<wp:post_date>2010-09-07 22:41:45</wp:post_date>
<wp:post_date_gmt>2010-09-07 19:41:45</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>jsonxmlresults</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>417</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/09/JsonXmlResults.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/09/JsonXmlResults.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"747";s:6:"height";s:3:"600";s:14:"hwstring_small";s:23:"height='96' width='119'";s:4:"file";s:26:"2010/09/JsonXmlResults.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:26:"JsonXmlResults-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:26:"JsonXmlResults-300x240.png";s:5:"width";s:3:"300";s:6:"height";s:3:"240";}s:14:"post-thumbnail";a:3:{s:4:"file";s:26:"JsonXmlResults-747x288.png";s:5:"width";s:3:"747";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:26:"JsonXmlResults-747x288.png";s:5:"width";s:3:"747";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:26:"JsonXmlResults-373x300.png";s:5:"width";s:3:"373";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>AjaxResultsOutput</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=421</link>
<pubDate>Tue, 07 Sep 2010 19:52:17 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/09/AjaxResultsOutput.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>421</wp:post_id>
<wp:post_date>2010-09-07 22:52:17</wp:post_date>
<wp:post_date_gmt>2010-09-07 19:52:17</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>ajaxresultsoutput</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>417</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/09/AjaxResultsOutput.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/09/AjaxResultsOutput.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"790";s:6:"height";s:3:"285";s:14:"hwstring_small";s:23:"height='46' width='128'";s:4:"file";s:29:"2010/09/AjaxResultsOutput.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"AjaxResultsOutput-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"AjaxResultsOutput-300x108.png";s:5:"width";s:3:"300";s:6:"height";s:3:"108";}s:13:"small-feature";a:3:{s:4:"file";s:29:"AjaxResultsOutput-500x180.png";s:5:"width";s:3:"500";s:6:"height";s:3:"180";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>BuildActionContent</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=429</link>
<pubDate>Tue, 07 Sep 2010 21:09:21 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/09/BuildActionContent.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>429</wp:post_id>
<wp:post_date>2010-09-08 00:09:21</wp:post_date>
<wp:post_date_gmt>2010-09-07 21:09:21</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>buildactioncontent</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>417</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/09/BuildActionContent.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/09/BuildActionContent.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"454";s:6:"height";s:3:"402";s:14:"hwstring_small";s:23:"height='96' width='108'";s:4:"file";s:30:"2010/09/BuildActionContent.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:30:"BuildActionContent-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:30:"BuildActionContent-300x265.png";s:5:"width";s:3:"300";s:6:"height";s:3:"265";}s:14:"post-thumbnail";a:3:{s:4:"file";s:30:"BuildActionContent-454x288.png";s:5:"width";s:3:"454";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:30:"BuildActionContent-454x288.png";s:5:"width";s:3:"454";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:30:"BuildActionContent-338x300.png";s:5:"width";s:3:"338";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>MonoTouch-Solution</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=438</link>
<pubDate>Tue, 07 Sep 2010 21:24:13 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/09/MonoTouch-Solution.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>438</wp:post_id>
<wp:post_date>2010-09-08 00:24:13</wp:post_date>
<wp:post_date_gmt>2010-09-07 21:24:13</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>monotouch-solution</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>417</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/09/MonoTouch-Solution.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/09/MonoTouch-Solution.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"285";s:6:"height";s:3:"291";s:14:"hwstring_small";s:22:"height='96' width='94'";s:4:"file";s:30:"2010/09/MonoTouch-Solution.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:30:"MonoTouch-Solution-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:14:"post-thumbnail";a:3:{s:4:"file";s:30:"MonoTouch-Solution-285x288.png";s:5:"width";s:3:"285";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:30:"MonoTouch-Solution-285x288.png";s:5:"width";s:3:"285";s:6:"height";s:3:"288";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>EmbeddedWebPage-large</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=459</link>
<pubDate>Tue, 07 Sep 2010 22:03:09 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/09/EmbeddedWebPage-large.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>459</wp:post_id>
<wp:post_date>2010-09-08 01:03:09</wp:post_date>
<wp:post_date_gmt>2010-09-07 22:03:09</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>embeddedwebpage-large</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>417</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/09/EmbeddedWebPage-large.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/09/EmbeddedWebPage-large.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"796";s:6:"height";s:3:"772";s:14:"hwstring_small";s:22:"height='96' width='98'";s:4:"file";s:33:"2010/09/EmbeddedWebPage-large.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:33:"EmbeddedWebPage-large-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:33:"EmbeddedWebPage-large-300x290.png";s:5:"width";s:3:"300";s:6:"height";s:3:"290";}s:14:"post-thumbnail";a:3:{s:4:"file";s:33:"EmbeddedWebPage-large-796x288.png";s:5:"width";s:3:"796";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:33:"EmbeddedWebPage-large-796x288.png";s:5:"width";s:3:"796";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:33:"EmbeddedWebPage-large-309x300.png";s:5:"width";s:3:"309";s:6:"height";s:3:"300";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>benchmarks</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=478</link>
<pubDate>Wed, 08 Sep 2010 20:15:45 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/09/benchmarks.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>478</wp:post_id>
<wp:post_date>2010-09-08 23:15:45</wp:post_date>
<wp:post_date_gmt>2010-09-08 20:15:45</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>benchmarks</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>474</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/09/benchmarks.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/09/benchmarks.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"668";s:6:"height";s:3:"332";s:14:"hwstring_small";s:23:"height='63' width='128'";s:4:"file";s:22:"2010/09/benchmarks.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"benchmarks-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"benchmarks-300x149.png";s:5:"width";s:3:"300";s:6:"height";s:3:"149";}s:14:"post-thumbnail";a:3:{s:4:"file";s:22:"benchmarks-668x288.png";s:5:"width";s:3:"668";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:22:"benchmarks-668x288.png";s:5:"width";s:3:"668";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:22:"benchmarks-500x248.png";s:5:"width";s:3:"500";s:6:"height";s:3:"248";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>benchmarks-appendfsync</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=536</link>
<pubDate>Thu, 09 Sep 2010 21:29:12 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/09/benchmarks-appendfsync.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>536</wp:post_id>
<wp:post_date>2010-09-10 00:29:12</wp:post_date>
<wp:post_date_gmt>2010-09-09 21:29:12</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>benchmarks-appendfsync</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>474</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/09/benchmarks-appendfsync.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/09/benchmarks-appendfsync.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"668";s:6:"height";s:3:"331";s:14:"hwstring_small";s:23:"height='63' width='128'";s:4:"file";s:34:"2010/09/benchmarks-appendfsync.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:34:"benchmarks-appendfsync-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:34:"benchmarks-appendfsync-300x148.png";s:5:"width";s:3:"300";s:6:"height";s:3:"148";}s:14:"post-thumbnail";a:3:{s:4:"file";s:34:"benchmarks-appendfsync-668x288.png";s:5:"width";s:3:"668";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:34:"benchmarks-appendfsync-668x288.png";s:5:"width";s:3:"668";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:34:"benchmarks-appendfsync-500x247.png";s:5:"width";s:3:"500";s:6:"height";s:3:"247";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>benchmarks-no-append</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=537</link>
<pubDate>Thu, 09 Sep 2010 21:29:19 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/09/benchmarks-no-append.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>537</wp:post_id>
<wp:post_date>2010-09-10 00:29:19</wp:post_date>
<wp:post_date_gmt>2010-09-09 21:29:19</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>benchmarks-no-append</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>474</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://ww2.servicestack.net/wp-uploads/2010/09/benchmarks-no-append.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2010/09/benchmarks-no-append.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"668";s:6:"height";s:3:"331";s:14:"hwstring_small";s:23:"height='63' width='128'";s:4:"file";s:32:"2010/09/benchmarks-no-append.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:32:"benchmarks-no-append-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:32:"benchmarks-no-append-300x148.png";s:5:"width";s:3:"300";s:6:"height";s:3:"148";}s:14:"post-thumbnail";a:3:{s:4:"file";s:32:"benchmarks-no-append-668x288.png";s:5:"width";s:3:"668";s:6:"height";s:3:"288";}s:13:"large-feature";a:3:{s:4:"file";s:32:"benchmarks-no-append-668x288.png";s:5:"width";s:3:"668";s:6:"height";s:3:"288";}s:13:"small-feature";a:3:{s:4:"file";s:32:"benchmarks-no-append-500x247.png";s:5:"width";s:3:"500";s:6:"height";s:3:"247";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Word Mate icon</title>
<link>http://mono.servicestack.net/mythz_blog/?attachment_id=578</link>
<pubDate>Tue, 14 Sep 2010 22:54:23 +0000</pubDate>
<dc:creator>mythz</dc:creator>
<guid isPermaLink="false">http://ww2.servicestack.net/wp-uploads/2010/09/WordMate_175x175-75.jpeg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>578</wp:post_id>
<wp:post_date>2010-09-15 01:54:23</wp:post_date>
<wp:post_date_gmt>2010-09-14 22:54:23</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>wordmate_175x175-75</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>572</wp:post_parent>
<wp:menu_order>0</wp:menu_order>