-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordpress.xml
8161 lines (7993 loc) · 441 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. -->
<!--Theme by MyThemeShop.com-->
<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>Mark's blog</title>
<link>http://blog.nadigs.net/mark</link>
<description>Just another Nadig's Blogs Sites site</description>
<pubDate>Fri, 27 Jun 2014 23:55:07 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>http://blog.nadigs.net/</wp:base_site_url>
<wp:base_blog_url>http://blog.nadigs.net/mark</wp:base_blog_url>
<wp:author><wp:author_id>3</wp:author_id><wp:author_login>nadigwpadmin</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[Web Master]]></wp:author_display_name><wp:author_first_name><![CDATA[Web]]></wp:author_first_name><wp:author_last_name><![CDATA[Master]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>4</wp:author_id><wp:author_login>marknadig</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[Mark Nadig]]></wp:author_display_name><wp:author_first_name><![CDATA[Mark]]></wp:author_first_name><wp:author_last_name><![CDATA[Nadig]]></wp:author_last_name></wp:author>
<wp:category><wp:term_id>33</wp:term_id><wp:category_nicename>angularjs</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[AngularJS]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>18</wp:term_id><wp:category_nicename>beta</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Beta]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>21</wp:term_id><wp:category_nicename>bible</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Bible]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>23</wp:term_id><wp:category_nicename>chrome</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Chrome]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>11</wp:term_id><wp:category_nicename>coding</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Coding]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>36</wp:term_id><wp:category_nicename>dvd</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[DVD]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>19</wp:term_id><wp:category_nicename>git</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[git]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>20</wp:term_id><wp:category_nicename>iis</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[IIS]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>8</wp:term_id><wp:category_nicename>ipad</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[iPad]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>22</wp:term_id><wp:category_nicename>mobile</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Mobile]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>14</wp:term_id><wp:category_nicename>oracle</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Oracle]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>9</wp:term_id><wp:category_nicename>osx</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[OS X]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>32</wp:term_id><wp:category_nicename>oss</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[OSS]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>24</wp:term_id><wp:category_nicename>regex</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[regex]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>35</wp:term_id><wp:category_nicename>ruby</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Ruby]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>25</wp:term_id><wp:category_nicename>ruby-on-rails</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Ruby on Rails]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>34</wp:term_id><wp:category_nicename>testing</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[testing]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>15</wp:term_id><wp:category_nicename>tfs</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[TFS]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>26</wp:term_id><wp:category_nicename>ubuntu</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[ubuntu]]></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:category_parent><wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>10</wp:term_id><wp:category_nicename>virtualization</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Virtualization]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>17</wp:term_id><wp:category_nicename>vs2008</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[VS2008]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>16</wp:term_id><wp:category_nicename>vs2010</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[VS2010]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>13</wp:term_id><wp:category_nicename>windows-7</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Windows 7]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>4</wp:term_id><wp:category_nicename>wordpress</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[WordPress]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>5</wp:term_id><wp:category_nicename>work</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Work]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>37</wp:term_id><wp:category_nicename>zsh</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[zsh]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>12</wp:term_id><wp:category_nicename>android</wp:category_nicename><wp:category_parent>mobile</wp:category_parent><wp:cat_name><![CDATA[Android]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>7</wp:term_id><wp:category_nicename>ios</wp:category_nicename><wp:category_parent>mobile</wp:category_parent><wp:cat_name><![CDATA[iOS]]></wp:cat_name></wp:category>
<wp:tag><wp:term_id>28</wp:term_id><wp:tag_slug>css</wp:tag_slug><wp:tag_name><![CDATA[CSS]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>7</wp:term_id><wp:tag_slug>ios</wp:tag_slug><wp:tag_name><![CDATA[iOS]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>29</wp:term_id><wp:tag_slug>launchctl</wp:tag_slug><wp:tag_name><![CDATA[launchctl]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>30</wp:term_id><wp:tag_slug>ulimit-n</wp:tag_slug><wp:tag_name><![CDATA[ulimit -n]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>27</wp:term_id><wp:tag_slug>windows-8</wp:tag_slug><wp:tag_name><![CDATA[Windows 8]]></wp:tag_name></wp:tag>
<wp:term><wp:term_id>31</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug>main</wp:term_slug><wp:term_name><![CDATA[Main]]></wp:term_name></wp:term>
<!--Theme by MyThemeShop.com-->
<item>
<title>About Me</title>
<link>http://blog.nadigs.net/mark/sample-page/</link>
<pubDate>Wed, 29 Feb 2012 03:52:01 +0000</pubDate>
<dc:creator></dc:creator>
<guid isPermaLink="false">http://blog.nadigs.net/mark/?page_id=2</guid>
<description></description>
<content:encoded><![CDATA[<img class="size-full wp-image-96 alignright" style="border-style: initial; border-color: initial;" title="Profile picture" src="http://blog.nadigs.net/mark/files/2012/02/rubynation_small.jpg" alt="" width="138" height="138" />
I'm a redeemed child of God, by the blood of His Son Jesus, not because I was good enough or smart enough, by His grace alone. I'm a husband and father of three wonderful kids. I spend my days solving problems, usually with code. The best part of my job is the continual learning. Software development is always changing and
it is fun to keep up.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2</wp:post_id>
<wp:post_date>2012-02-29 03:52:01</wp:post_date>
<wp:post_date_gmt>2012-02-29 03:52:01</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>sample-page</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key>_wp_page_template</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>layout</wp:meta_key>
<wp:meta_value><![CDATA[list-post]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>page_layout</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_page_title</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>section_categories</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>display_content</wp:meta_key>
<wp:meta_value><![CDATA[excerpt]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_title</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>unlink_title</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_date</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_meta</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_image</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>unlink_image</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_navigation</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Publishing PM Compass ClickOnce locally on Windows 7</title>
<link>http://blog.nadigs.net/mark/2010/12/13/publishing-pm-compass-clickonce-locally-on-windows-7/</link>
<pubDate>Mon, 13 Dec 2010 15:55:29 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=168</guid>
<description></description>
<content:encoded><![CDATA[<div> <div class="ExternalClass454D135870BA43FF90F9E1A7E51A0866"><ol><li><span style="color:#0d0d0d"><span style="font-size:10pt">In Windows Explorer (WE), create a MakoClient folder under Web. In IIS create a new Application in IIS (not just virtual dir) pointing to this new folder.. </span>
</span></li><li><span style="color:#0d0d0d"><span style="font-size:10pt">Add read permissions to local IIS user to this folder. In WE, right-click on the new MakoClient folder and select Properties. Click Security tab and Edit button. Click add and select IIS_IUSRS.<sup>1</sup>
</span>
</span></li><li><span style="color:#0d0d0d"><span style="font-size:10pt">Change Web\Client\DeltekPMCompass.* to read-write. You cannot check these files out as TFS will lock for checkout regardless. </span>
</span></li><li><div><span style="color:#0d0d0d"><span style="font-size:10pt">Open Client\Main\DeltekPMCompass.vbproj, open properties for project.</span>
</span></div><ol><li><span style="color:#0d0d0d"><span style="font-size:10pt">Remove Sign property checkbox (under signing tab). </span>
</span></li><li><span style="color:#0d0d0d"><span style="font-size:10pt">Open Publish: Application Files dialog and click Show All and explicitly include any PDBs for framework files automatically included in the boostrap app and DeltekPMCompass.pdb. These are excluded by default for clickonce.</span>
</span></li><li><span style="color:#0d0d0d"><span style="font-size:10pt">Exclude TXTextControl class and all TX references. </span>
</span></li></ol></li><li><span style="color:#0d0d0d"><span style="font-size:10pt">Publish to local <em>folder</em> c:\Development\Deltek .Net Mako\Main\Web\MakoClient . Note: Do not publish to url, rather use file path. </span>
</span></li><li><span style="color:#0d0d0d"><span style="font-size:10pt">Zip up everything in Web\Client and then remove:<br />Deltek.Framework.Controls.Client.dll<br />Deltek.Framework.Deployment.Client.dll<br />Deltek.Framework.Errors.Common.dll<br />Deltek.Framework.Frame.Client.dll<br />Deltek.Framework.Globals.Common.dll<br />Deltek.Framework.Globals.Common.XmlSerializers.dll<br />Deltek.Framework.Lookup.Common.dll<br />Deltek.Framework.Lookup.Common.XmlSerializers.dll<br />Deltek.PMCompass.Controls.Client.dll<br />Deltek.PMCompass.Frame.Client.dll<br />Deltek.PMCompass.Globals.Common.dll<br />Deltek.Product.Enumerations.Common.dll<br />EPM.Security.Toolkit.dll<br />Ionic.Utils.Zip.dll<br />Microsoft.mshtml.dll<br />Microsoft.ReportingServices.Interfaces.dll<br />CompressionChannel.dll<br />TX*.dll<br />DeltekPMCompass.* </span>
</span></li><li><span style="color:#0d0d0d"><span style="font-size:10pt">Rename zip DeltekPMCompassClient.zip and put in Web\MakoClient </span>
</span></li><li><span style="color:#0d0d0d"><span style="font-size:10pt">Copy DeploymentManifest.xml and DeltekPMCompassClient_frFR.zip from <a href="///\\hq1apdev64vm\Mako\WebClient">\\hq1apdev64vm\Mako\WebClient into MakoClient folder. </a></span>
</span></li></ol><p><span style="font-size:10pt"><span style="color:#0d0d0d">You should now be able to navigate to <a href="http://localhost/MakoClient/DeltekPMCompass.application"></span>http://localhost/MakoClient/DeltekPMCompass.application<span style="color:#0d0d0d"> and launch clickonce. </span></span>
</p><p><span style="color:#0d0d0d"><span style="font-size:10pt">As you make code changes, copy the affected dlls back into ZIP <em>in the Client folder</em> and then re-copy it over to the MakoClient folder. Run mage –cc to from a command prompt to clear clickonce cache. </span>
</span></p><p><span style="color:#0d0d0d"><span style="font-size:8pt">1 Note: This step seemed a little tricky. Sometimes it seemed to work and others not. I would get a 401 unauthorized error when HDM tried to download the zip. Finally, I granted myself full control over that folder as well as IIS user with read access and it still would flake out. Then, I found that I was updating the zip in the MakoClient folder which seemed to wonk the permissions. If I update the zip in Web\Client and then copy over to MakoClient it is fine.</span>
</span></p></div></div>
<div><b>Published:</b> 12/13/2010 10:55 AM</div>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>42</wp:post_id>
<wp:post_date>2010-12-13 15:55:29</wp:post_date>
<wp:post_date_gmt>2010-12-13 15:55:29</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>publishing-pm-compass-clickonce-locally-on-windows-7</wp:post_name>
<wp:status>private</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Visual Studio Regex addin (now for 2008)</title>
<link>http://blog.nadigs.net/mark/2009/05/26/visual-studio-regex-addin-now-for-2008/</link>
<pubDate>Tue, 26 May 2009 19:10:01 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=54</guid>
<description></description>
<content:encoded><![CDATA[<div> <div class="ExternalClassE6556196BAB247F5AF9C458D924F7600">
<div>Visual Studio's regex implementation is non-standard. Thankfully, there's an open source add-in for VS2008 that allows you to use "standard" regular expressions found <a href="http://www.codeproject.com/KB/macros/VS2008RegexAddIn.aspx">here</a>.</div>
<div> </div>
<div>“Why do I care?” Here’s a very useful example of why regex is so cool: Say you wanted to replace all calls to a function, like <font face="Courier New">IsNothing(…)</font> and replace it with a native sytnax … <font face="Courier New">Is Nothing (and Not IsNothing(…) with … IsNot Nothing)</font></div>
<div><font face="Courier New"></font> </div>
<div>You can just use this search string (set ignore pattern whitepace):</div>
<div>(?Not(?:\s))?IsNothing\((?(?>[^()]+|\((?)|\)(?))*(?(number)(?!)))\)</div>
<div> </div>
<div>Expanded:<br /><font face="Courier New">(?Not(?:\s))?<br />IsNothing\((?<br /> (?><br /> [^()]+ <br /> | \( (?)<br /> | \) (?)<br /> )*<br /> (?(number)(?!))<br /> )<br />\)</font></div>
<div> </div>
<div>With this replace string:<br /><font face="Courier New">${inner} Is${prefix} Nothing<br /></font></div></div></div>
<div><b>Category:</b> Work</div>
<div><b>Published:</b> 5/26/2009 3:05 PM</div>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>62</wp:post_id>
<wp:post_date>2009-05-26 19:10:01</wp:post_date>
<wp:post_date_gmt>2009-05-26 19:10:01</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>visual-studio-regex-addin-now-for-2008</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="work"><![CDATA[Work]]></category>
</item>
<item>
<title>Publishing Mako ClickOnce locally on Windows 7</title>
<link>http://blog.nadigs.net/mark/2010/08/12/publishing-mako-clickonce-locally-on-windows-7/</link>
<pubDate>Thu, 12 Aug 2010 22:45:21 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=146</guid>
<description></description>
<content:encoded><![CDATA[<div> <div class="ExternalClass1E60F523C20147D38214E0B722E08BE2"><p>
</p><ol><li>Create a MakoClient folder under Web. Configure as Application in IIS (not just virtual dir).
</li><li>Add read permissions to local IIS user to this folder. Note: This step seemed a little tricky. Sometimes it seemed to work and others not. I would get a 401 unauthorized error when HDM tried to download the zip. Finally, I granted myself full control over that folder as well as IIS user with read access and it still would flake out. Then, I found that I was updating the zip in the MakoClient folder which seemed to wonk the permissions. If I update the zip in Web\Client and then copy over to MakoClient it is fine.
</li><li>Change Web\Client\DeltekMako.* to read-write. You cannot check these files out as TFS will lock for checkout regardless.
</li><li>Open DeltekMako.sln, open properties for project and remove Sign property checkbox (under signing tab). Exclude TXTextControl class and all TX references.
</li><li>Publish to local folder c:\Development\Deltek .Net Mako\Main\Web\MakoClient
</li><li>Zip up everything in Web\Client and then remove:<br />Deltek.Framework.Deployment.Client.dll<br />Deltek.Framework.Controls.Client.dll<br />Deltek.Framework.Errors.Common.dll<br />Deltek.Framework.Frame.Client.dll<br />Deltek.Framework.Globals.Common.dll<br />Deltek.Framework.Globals.Common.XmlSerializers.dll<br />Deltek.Framework.Lookup.Common.dll<br />Deltek.Framework.Lookup.Common.XmlSerializers.dll<br />Deltek.Mako.Controls.Client.dll<br />Deltek.Mako.Frame.Client.dll<br />Deltek.Mako.Globals.Common.dll<br />Deltek.Product.Enumerations.Common.dll<br />EPM.Security.Toolkit.dll<br />Ionic.Utils.Zip.dll<br />Microsoft.mshtml.dll<br />Microsoft.ReportingServices.Interfaces.dll<br />CompressionChannel.dll<br />TX*.dll<br />DeltekMako.*
</li><li>Rename zip DeltekMakoClient.zip and put in Web\MakoClient
</li><li>Copy DeploymentManifest.xml and DeltekMakoClient_frFR.zip from <a href="///\\hq1apdev64vm\Mako\WebClient">\\hq1apdev64vm\Mako\WebClient</a> into MakoClient folder.
</li></ol><p>You should now be able to navigate to <a href="http://localhost/MakoClient">http://localhost/MakoClient</a> and launch clickonce.
</p><p>As you make code changes, copy the affected dlls back into ZIP. Run <span style="font-family:Courier New"><strong>mage –cc </strong></span>to from a command prompt to clear clickonce cache.
</p></div></div>
<div><b>Category:</b> Windows 7</div>
<div><b>Published:</b> 8/12/2010 6:45 PM</div>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>64</wp:post_id>
<wp:post_date>2010-08-12 22:45:21</wp:post_date>
<wp:post_date_gmt>2010-08-12 22:45:21</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>publishing-mako-clickonce-locally-on-windows-7</wp:post_name>
<wp:status>private</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="windows-7"><![CDATA[Windows 7]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>ISO mount, burn, etc. - FREE - Windows * (xp, Vista, 7 etc.)</title>
<link>http://blog.nadigs.net/mark/2009/08/14/iso-mount-burn-etc-free-windows-xp-vista-7-etc/</link>
<pubDate>Fri, 14 Aug 2009 23:08:48 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=74</guid>
<description></description>
<content:encoded><![CDATA[<div> <div class="ExternalClass94AFF30CCA5C40448E18C25F3DCF22D2">
<div>Windows 7 has built in "burn disk image" capability. Just right-click on the ISO and select "burn...". Note: If you've registered any other program with an ISO extension, you may have lost this as I did. See HKCR\Windows.IsoFile\Shell\Burn for path and parms to IsoBurn.exe in Windows 7.</div>
<div> </div>
<div>For other versions of Windows use this to burn</div>
<div><a href="http://www.imgburn.com/">http://www.imgburn.com/</a></div>
<div><a href="http://isorecorder.alexfeinman.com/isorecorder.htm">http://isorecorder.alexfeinman.com/isorecorder.htm</a></div>
<div> </div>
<div>For mounting</div>
<div><a href="http://www.poweriso.com/index.htm">http://www.poweriso.com/index.htm</a> (PowerISO is freeware so there shouldn’t be any problem. Its only limitations is the screen that asks you to register it and a limit of 300Mb when creating or editing files. Mounting files doesn’t come with limitations however.)</div>
<div> </div>
<div><a href="http://www.slysoft.com/en/download.html">http://www.slysoft.com/en/download.html</a></div>
<div> </div>
<div><a href="http://www.magiciso.com/tutorials/miso-magicdisc-overview.htm">http://www.magiciso.com/tutorials/miso-magicdisc-overview.htm</a></div>
<div> </div>
<div>Or UltraISO (paid)</div></div></div>
<div><b>Category:</b> Work</div>
<div><b>Published:</b> 8/14/2009 7:07 PM</div>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>69</wp:post_id>
<wp:post_date>2009-08-14 23:08:48</wp:post_date>
<wp:post_date_gmt>2009-08-14 23:08:48</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>iso-mount-burn-etc-free-windows-xp-vista-7-etc</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="work"><![CDATA[Work]]></category>
</item>
<item>
<title>Collaborating</title>
<link>http://blog.nadigs.net/mark/2010/06/11/collaborating/</link>
<pubDate>Fri, 11 Jun 2010 20:19:28 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=138</guid>
<description></description>
<content:encoded><![CDATA[<div>
<div class="ExternalClass5C87C1611201402DB2E92F7CBEE119AE">
Fort Collins / Loveland Mako Summit
Doug, Aileen & Hardik
<img src="/personal/marknadig/Blog/Lists/Photos/061110_2019_Collaborati1.jpg" alt="" />
Jay, Caulene and Doug – in the "timeout" room :)
<img src="/personal/marknadig/Blog/Lists/Photos/061110_2019_Collaborati2.jpg" alt="" />
</div>
</div>
<div><strong>Published:</strong> 6/11/2010 4:19 PM</div>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>73</wp:post_id>
<wp:post_date>2010-06-11 20:19:28</wp:post_date>
<wp:post_date_gmt>2010-06-11 20:19:28</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>collaborating</wp:post_name>
<wp:status>private</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>layout</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_post_title</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>unlink_post_title</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_post_meta</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_post_date</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_post_image</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>unlink_post_image</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>IIS killing worker process during debugging</title>
<link>http://blog.nadigs.net/mark/2010/05/25/iis-killing-worker-process-during-debugging/</link>
<pubDate>Tue, 25 May 2010 15:13:47 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=136</guid>
<description></description>
<content:encoded><![CDATA[<div> <div class="ExternalClass766660C1D63148759A4495E12A35E586"><p style="background:white"><span style="color:#333333;font-family:Trebuchet MS;font-size:11pt">Windows 7 runs IIS 7.5 and introduces a few changes in debugging. One issue that comes up is if your code hit some breakpoint and if you leave the program in 'break' mode for more than 90 seconds, Visual Studio shows the following message:
</span></p><p style="background:white"><a href="http://lh6.ggpht.com/_nq57k-zaB5A/Sa-XQKl2Y1I/AAAAAAAACSM/qZxLx60vwbw/s1600-h/image[2].png"><img src="/personal/marknadig/Blog/Lists/Photos/052510_1513_IISkillingw1.png" alt="" border="0"></a><span style="color:#333333;font-family:Trebuchet MS;font-size:11pt">
</span></p><p style="background:white"><span style="color:#333333;font-family:Trebuchet MS;font-size:11pt">As help indicates you can either set Ping Enabled=False or increase the Ping Maximum Response Time from the default of 90s:
</span></p><ol><li><div style="background:white"><a href="http://lh4.ggpht.com/_nq57k-zaB5A/Sa-XVe5jcUI/AAAAAAAACSU/l3L3iD3I69Y/s1600-h/image[10].png"><span style="color:#333333;font-family:Trebuchet MS;font-size:11pt">Open <strong>Internet Information Services (IIS) Manager</strong>.
</span></div></li><li><div style="background:white"><span style="color:#333333;font-family:Trebuchet MS;font-size:11pt">From the server tree (the item with the name as the server name), choose <strong>Application Pools</strong>.
</span></div></li><li><div style="background:white"><span style="color:#333333;font-family:Trebuchet MS;font-size:11pt">Choose the Application Pool corresponding to your testing IIS website (typically DefaultAppPool)
</span></div></li><li><div style="background:white"><span style="color:#333333;font-family:Trebuchet MS;font-size:11pt">Click <strong>Advanced Settings</strong>.
</span></div></li><li><div style="background:white"><span style="color:#333333;font-family:Trebuchet MS;font-size:11pt">From the <strong>Process Model</strong> node, change the the <strong>Ping Enabled</strong> property to <em>False</em><strong>
</strong>or increase <strong>Ping Maximum Response Time (seconds)</strong> (900s = 15 min).
</span></div></li></ol><p style="background:white"><img src="/personal/marknadig/Blog/Lists/Photos/052510_1513_IISkillingw2.png" alt=""><span style="color:#333333;font-family:Trebuchet MS;font-size:11pt">
</span></p><p style="background:white"><span style="color:#333333;font-family:Trebuchet MS;font-size:11pt">The server keeps pinging the worker process and waits for a response. When in debugging mode, the worker process is affectively suspended, which results in the ping not being responded.
</span></p></div></div>
<div><b>Category:</b> Windows 7</div>
<div><b>Published:</b> 5/25/2010 11:13 AM</div>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>75</wp:post_id>
<wp:post_date>2010-05-25 15:13:47</wp:post_date>
<wp:post_date_gmt>2010-05-25 15:13:47</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>iis-killing-worker-process-during-debugging</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="windows-7"><![CDATA[Windows 7]]></category>
</item>
<item>
<title>T61 Bluetooth Radio and Windows 7</title>
<link>http://blog.nadigs.net/mark/2010/05/25/t61-bluetooth-radio-and-windows-7/</link>
<pubDate>Tue, 25 May 2010 14:30:37 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=135</guid>
<description></description>
<content:encoded><![CDATA[<div> <div class="ExternalClass9F5DE5FD6F794DB3A80F631B5A3114D6"><div>Run c:\program files\lenovo\hotkey\tpfnf5.exe to toggle radios.</div>
<div> </div>
<div><a href="http://forums.lenovo.com/t5/T61-and-prior-T-series-ThinkPad/Bluetooth-radio-defaults-to-Off-state/m-p/169391;jsessionid=BDE85ADCD309FEC70BF444383795414D">http://forums.lenovo.com/t5/T61-and-prior-T-series-ThinkPad/Bluetooth-radio-defaults-to-Off-state/m-p/169391;jsessionid=BDE85ADCD309FEC70BF444383795414D</a></div>
<div> </div></div></div>
<div><b>Category:</b> Windows 7</div>
<div><b>Published:</b> 5/25/2010 10:29 AM</div>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>76</wp:post_id>
<wp:post_date>2010-05-25 14:30:37</wp:post_date>
<wp:post_date_gmt>2010-05-25 14:30:37</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>t61-bluetooth-radio-and-windows-7</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="windows-7"><![CDATA[Windows 7]]></category>
</item>
<item>
<title>Print email without header/footer</title>
<link>http://blog.nadigs.net/mark/2010/05/21/print-email-without-headerfooter/</link>
<pubDate>Fri, 21 May 2010 16:32:20 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=134</guid>
<description></description>
<content:encoded><![CDATA[<div> <div class="ExternalClass51597F8DC1E241AD8A19989414438B7C"><div>I've often been frusted with printing emails from Outlook, specifically when I don't want the header info (from/to/date). For example, printing a receipt email to me. Today I found that within Oultook 2007 you can select View in Browser from Actions in the Ribbon. This opens the email in the browser and provides a cleaner way to print.</div></div></div>
<div><b>Category:</b> Work</div>
<div><b>Published:</b> 5/21/2010 12:18 PM</div>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>77</wp:post_id>
<wp:post_date>2010-05-21 16:32:20</wp:post_date>
<wp:post_date_gmt>2010-05-21 16:32:20</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>print-email-without-headerfooter</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="work"><![CDATA[Work]]></category>
</item>
<item>
<title>rubynation_small</title>
<link>http://blog.nadigs.net/mark/?attachment_id=95</link>
<pubDate>Fri, 09 Mar 2012 17:38:25 +0000</pubDate>
<dc:creator></dc:creator>
<guid isPermaLink="false">http://blog.nadigs.net/mark/files/2012/03/rubynation_small.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Profile picture]]></excerpt:encoded>
<wp:post_id>95</wp:post_id>
<wp:post_date>2012-03-09 17:38:25</wp:post_date>
<wp:post_date_gmt>2012-03-09 17:38:25</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>rubynation_small</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://blog.nadigs.net/mark/files/2012/03/rubynation_small.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/03/rubynation_small.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:3:"138";s:6:"height";s:3:"138";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:28:"2012/03/rubynation_small.jpg";s:10:"image_meta";a:10:{s:8:"aperture";s:3:"2.2";s:6:"credit";s:0:"";s:6:"camera";s:12:"Canon EOS 7D";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1301733994";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"50";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:5:"0.004";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Profile picture</title>
<link>http://blog.nadigs.net/mark/sample-page/rubynation_small-2/</link>
<pubDate>Fri, 09 Mar 2012 17:39:02 +0000</pubDate>
<dc:creator></dc:creator>
<guid isPermaLink="false">http://blog.nadigs.net/mark/files/2012/02/rubynation_small.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>96</wp:post_id>
<wp:post_date>2012-03-09 17:39:02</wp:post_date>
<wp:post_date_gmt>2012-03-09 17:39:02</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>rubynation_small-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>2</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://blog.nadigs.net/mark/files/2012/02/rubynation_small.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/02/rubynation_small.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:3:"138";s:6:"height";s:3:"138";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:28:"2012/02/rubynation_small.jpg";s:10:"image_meta";a:10:{s:8:"aperture";s:3:"2.2";s:6:"credit";s:0:"";s:6:"camera";s:12:"Canon EOS 7D";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1301733994";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"50";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:5:"0.004";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>android</title>
<link>http://blog.nadigs.net/mark/2012/05/12/debugging-in-android-browser-view-uncaught-javascript-errors/android/</link>
<pubDate>Sat, 12 May 2012 17:04:55 +0000</pubDate>
<dc:creator></dc:creator>
<guid isPermaLink="false">http://blog.nadigs.net/mark/files/2012/05/android.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>155</wp:post_id>
<wp:post_date>2012-05-12 17:04:55</wp:post_date>
<wp:post_date_gmt>2012-05-12 17:04:55</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>android</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>154</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://blog.nadigs.net/mark/files/2012/05/android.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/05/android.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:"394";s:6:"height";s:3:"179";s:14:"hwstring_small";s:23:"height='58' width='128'";s:4:"file";s:19:"2012/05/android.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"android-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"android-300x136.png";s:5:"width";s:3:"300";s:6:"height";s:3:"136";}}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>iOS simulator on OSx</title>
<link>http://blog.nadigs.net/mark/?p=181</link>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://blog.nadigs.net/mark/?p=181</guid>
<description></description>
<content:encoded><![CDATA[Install iOS5 SDK ($$). Run simulator from SDK and then run this script:
<pre><code>pid=$(ps x | egrep "MobileSafari|Web.app" | grep -v grep | awk '{ print $1 }') if [ "$pid" == "" ]; then echo "Safari.app must be running in the Simulator to enable the remote inspector." else cat <<EOS | gdb -quiet > /dev/null attach $pid p (void *)[WebView _enableRemoteInspector] detach EOS osascript <<EOS > /dev/null 2>&1 tell application "Safari" activate do JavaScript "window.open('http://localhost:9999')" in document 1 end tell EOS fi</code></pre>
gist <a href="https://gist.github.com/3c3aaacea3cd1a32b022" target="_blank">https://gist.github.com/3c3aaacea3cd1a32b022</a>
thanks <a href="http://www.codeography.com/2012/03/30/remote-debugging-mobile-safari-inspector-ios-simulator.html" target="_blank">http://www.codeography.com/2012/03/30/remote-debugging-mobile-safari-inspector-ios-simulator.html</a>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>181</wp:post_id>
<wp:post_date>2013-08-12 15:36:20</wp:post_date>
<wp:post_date_gmt>0000-00-00 00:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name></wp:post_name>
<wp:status>draft</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="ios"><![CDATA[iOS]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>layout</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_post_title</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>unlink_post_title</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_post_meta</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_post_date</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>hide_post_image</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>unlink_post_image</wp:meta_key>
<wp:meta_value><![CDATA[default]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>AVD edit</title>
<link>http://blog.nadigs.net/mark/2012/06/25/getting-photos-into-the-gallery-on-android-avd/screen-shot-2012-06-25-at-5-50-10-pm/</link>
<pubDate>Mon, 25 Jun 2012 23:51:05 +0000</pubDate>
<dc:creator></dc:creator>
<guid isPermaLink="false">http://blog.nadigs.net/mark/files/2012/06/Screen-Shot-2012-06-25-at-5.50.10-PM.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[AVD Edit]]></excerpt:encoded>
<wp:post_id>195</wp:post_id>
<wp:post_date>2012-06-25 23:51:05</wp:post_date>
<wp:post_date_gmt>2012-06-25 23:51:05</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>screen-shot-2012-06-25-at-5-50-10-pm</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>193</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://blog.nadigs.net/mark/files/2012/06/Screen-Shot-2012-06-25-at-5.50.10-PM.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2012/06/Screen-Shot-2012-06-25-at-5.50.10-PM.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:"420";s:6:"height";s:3:"631";s:14:"hwstring_small";s:22:"height='96' width='63'";s:4:"file";s:48:"2012/06/Screen-Shot-2012-06-25-at-5.50.10-PM.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:48:"Screen-Shot-2012-06-25-at-5.50.10-PM-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:48:"Screen-Shot-2012-06-25-at-5.50.10-PM-199x300.png";s:5:"width";s:3:"199";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>Android emulator and performance</title>
<link>http://blog.nadigs.net/mark/?p=337</link>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://blog.nadigs.net/mark/?p=337</guid>
<description></description>
<content:encoded><![CDATA[Eclipse - Window: Android SDK Manager. In SDK packages list, install Intel x86 Emulator Accelerator (HAXM) (very bottom). Note: This just downloads. To install: cd /[androidsdk]/extras/intel/Hardware_Accelerated_Execution_Manager open hax-macosx_r02.dmg Once installed, you should see "Emulator HAX is working and emulator runs in fast virt mode"]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>337</wp:post_id>
<wp:post_date>2013-08-12 15:36:20</wp:post_date>
<wp:post_date_gmt>0000-00-00 00:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name></wp:post_name>
<wp:status>draft</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="android"><![CDATA[Android]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title></title>
<link>http://blog.nadigs.net/mark/?attachment_id=411</link>
<pubDate>Sat, 27 Apr 2013 02:21:48 +0000</pubDate>
<dc:creator>nadigwpadmin</dc:creator>
<guid isPermaLink="false">http://blog.nadigs.net/mark/files/2013/04/421402366_200.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>411</wp:post_id>
<wp:post_date>2013-04-27 02:21:48</wp:post_date>
<wp:post_date_gmt>2013-04-27 02:21:48</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>411</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://blog.nadigs.net/mark/files/2013/04/421402366_200.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:200;s:6:"height";i:150;s:4:"file";s:25:"2013/04/421402366_200.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"421402366_200-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"421402366_200-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:8:"featured";a:4:{s:4:"file";s:25:"421402366_200-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:7:"related";a:4:{s:4:"file";s:23:"421402366_200-75x75.jpg";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>unicode</title>
<link>http://blog.nadigs.net/mark/?p=634</link>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://blog.nadigs.net/mark/?p=634</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>634</wp:post_id>
<wp:post_date>2013-08-28 15:18:02</wp:post_date>
<wp:post_date_gmt>0000-00-00 00:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name></wp:post_name>
<wp:status>draft</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Screen Shot 2014-01-08 at 9.21.03 AM</title>
<link>http://blog.nadigs.net/mark/2014/01/08/til-how-to-customize-an-icon-for-a-folder-in-os-x/screen-shot-2014-01-08-at-9-21-03-am/</link>
<pubDate>Wed, 08 Jan 2014 16:49:15 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://blog.nadigs.net/mark/files/2014/01/Screen-Shot-2014-01-08-at-9.21.03-AM.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>676</wp:post_id>
<wp:post_date>2014-01-08 16:49:15</wp:post_date>
<wp:post_date_gmt>2014-01-08 16:49:15</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>screen-shot-2014-01-08-at-9-21-03-am</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>675</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://blog.nadigs.net/mark/files/2014/01/Screen-Shot-2014-01-08-at-9.21.03-AM.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2014/01/Screen-Shot-2014-01-08-at-9.21.03-AM.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";i:219;s:6:"height";i:205;s:4:"file";s:48:"2014/01/Screen-Shot-2014-01-08-at-9.21.03-AM.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:48:"Screen-Shot-2014-01-08-at-9.21.03-AM-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:48:"Screen-Shot-2014-01-08-at-9.21.03-AM-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:8:"featured";a:4:{s:4:"file";s:48:"Screen-Shot-2014-01-08-at-9.21.03-AM-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:7:"related";a:4:{s:4:"file";s:46:"Screen-Shot-2014-01-08-at-9.21.03-AM-75x75.png";s:5:"width";i:75;s:6:"height";i:75;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Where is $PATH set in OS X?</title>
<link>http://blog.nadigs.net/mark/?p=678</link>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://blog.nadigs.net/mark/?p=678</guid>
<description></description>
<content:encoded><![CDATA[I'm using zshell and had a problem where my brew directory (/usr/local/bin) was after /usr/bin in $PATH. I checked .zshrc]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>678</wp:post_id>
<wp:post_date>2014-01-08 18:54:17</wp:post_date>
<wp:post_date_gmt>0000-00-00 00:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name></wp:post_name>
<wp:status>draft</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="osx"><![CDATA[OS X]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Converting from WP to Jekyll hosted on Github</title>
<link>http://blog.nadigs.net/mark/?p=717</link>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://blog.nadigs.net/mark/?p=717</guid>
<description></description>
<content:encoded><![CDATA[http://hadihariri.com/2013/12/24/migrating-from-wordpress-to-jekyll/
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>717</wp:post_id>
<wp:post_date>2014-06-27 17:24:34</wp:post_date>
<wp:post_date_gmt>0000-00-00 00:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name></wp:post_name>
<wp:status>draft</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[4]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Backup/restore Oracle</title>
<link>http://blog.nadigs.net/mark/2010/09/16/backuprestore-oracle/</link>
<pubDate>Thu, 16 Sep 2010 16:53:21 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=150</guid>
<description></description>
<content:encoded><![CDATA[<div> <div class="ExternalClassD0C11D533DF14CBCBA9ADE8B5AEBC869">
<p>I have XE installed locally and wanted to pull a backup from Oracle on another server. From a command-line: </p>
<p><span style="font-family:Courier New">CD c:\oraclexe\app\oracle\product\10.2.0\server\BIN<br />EXP PMCompassDemo/PMCompassDemo@FTCDEVDB7 OWNER=PMCompassDemo FILE=%temp%\PMCompassDemo.dmp STATISTICS=none</span> </p>
<p>This pulls down the backup to my temp folder. Note: This was very slow, so I found it must faster to RDP into FTCDevDB7 and run it 'local' then zip and copy the dmp. The @ syntax uses the name from TNSNames. </p>
<p>To restore, first drop and recreate the tablespace and user: </p>
<p><span style="font-family:Courier New">DROP TABLESPACE PMCompassDemo INCLUDING CONTENTS AND DATAFILES;<br />/ </span></p>
<p><span style="font-family:Courier New">CREATE TABLESPACE PMCompassDemo<br /> DATAFILE 'C:\ORACLEXE\ORADATA\XE\PMCompassDemo.dbf' <br /> SIZE 32m <br /> AUTOEXTEND ON <br /> NEXT 32m <br /> MAXSIZE 2048m;<br />/</span> </p>
<p><span style="font-family:Courier New">DROP USER PMCompassDemo CASCADE;<br />/</span> </p>
<p><span style="font-family:Courier New">CREATE USER PMCompassDemo IDENTIFIED BY PMCompassDemo <br />DEFAULT TABLESPACE PMCompassDemo <br />QUOTA UNLIMITED ON PMCompassDemo<br />TEMPORARY TABLESPACE Temp;<br />GRANT CONNECT, RESOURCE, CREATE SESSION TO PMCompassDemo;<br />GRANT CREATE VIEW TO PMCompassDemo;<br />GRANT CREATE TRIGGER TO PMCompassDemo;<br />/ </span></p>
<p>Now, ready to import: </p>
<p><span style="font-family:Courier New">IMP PMCompassDemo/PMCompassDemo@XE FILE=%temp%\PMCompassDemo.dmp FROMUSER=PMCompassDemo TOUSER=PMCompassDemo </span></p>
<p>Note: Often some of the views will fail on importing. Re-running IMP will resolve or this <a href="/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=160">recompile trick</a>.</p>
<p>Thanks Tim/Dave for helping me with this syntax. </p>
<p>EXP HELP=YES to get help.</p></div></div>
<div><b>Category:</b> Oracle</div>
<div><b>Published:</b> 9/16/2010 1:30 PM</div>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>43</wp:post_id>
<wp:post_date>2010-09-16 16:53:21</wp:post_date>
<wp:post_date_gmt>2010-09-16 16:53:21</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>backuprestore-oracle</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="oracle"><![CDATA[Oracle]]></category>
</item>
<item>
<title>How to kill sessions manually</title>
<link>http://blog.nadigs.net/mark/2010/10/12/how-to-kill-sessions-manually/</link>
<pubDate>Tue, 12 Oct 2010 22:48:25 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=158</guid>
<description></description>
<content:encoded><![CDATA[<div> <div class="ExternalClass70FD633958284387879F1D82E798BED5">
<p>Query to get SID and SERIAL#:<br />SELECT sid, serial#, username FROM v$session </p>
<blockquote>
<div>Optionally filter WHERE username=....</div></blockquote>
<p>Once you found the one to kill:<br />ALTER SYSTEM KILL SESSION '<em>[sid]</em>,<em>[serial#]</em>'</p>
<div>Generate kills for all connections for a given user: SELECT 'alter system kill session ''' || sid || ',' || serial# || ''';' FROM v$session WHERE Username = 'MAKODEMO';<br /></div></div></div>
<div><b>Category:</b> Oracle</div>
<div><b>Published:</b> 10/12/2010 6:46 PM</div>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>48</wp:post_id>
<wp:post_date>2010-10-12 22:48:25</wp:post_date>
<wp:post_date_gmt>2010-10-12 22:48:25</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>how-to-kill-sessions-manually</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="oracle"><![CDATA[Oracle]]></category>
</item>
<item>
<title>Toad autocomplete tablename</title>
<link>http://blog.nadigs.net/mark/2010/10/14/toad-autocomplete-tablename/</link>
<pubDate>Thu, 14 Oct 2010 18:46:50 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=159</guid>
<description></description>
<content:encoded><![CDATA[<div> <div class="ExternalClass99CDE8D6F4AD4D7EAF09D50809BDAFFB"><div>When typing a query in the editor, hit Ctrl+. (control period) to display a dropdown of possible table name matches.</div>
<div> </div>
<div>still looking for a definitive list of these types of shortcuts for Toad.</div></div></div>
<div><b>Category:</b> Oracle</div>
<div><b>Published:</b> 10/14/2010 2:45 PM</div>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>53</wp:post_id>
<wp:post_date>2010-10-14 18:46:50</wp:post_date>
<wp:post_date_gmt>2010-10-14 18:46:50</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>toad-autocomplete-tablename</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="oracle"><![CDATA[Oracle]]></category>
</item>
<item>
<title>Copy workspace mappings from one machine to another</title>
<link>http://blog.nadigs.net/mark/2010/10/08/copy-workspace-mappings-from-one-machine-to-another/</link>
<pubDate>Fri, 08 Oct 2010 21:02:17 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=157</guid>
<description></description>
<content:encoded><![CDATA[<div> <div class="ExternalClass07F05A777F0747BFAC876AAF90AB8739"><div>
<p>From a command prompt:</p>
<p><b>tf workspace /s:http://tfs:8080 WorkspaceName;DOMAIN\YourUserName</b></p>
<p>Then the workspace dialog will pop up and they can select all mappings (Ctrl+A) then copy them (Ctrl+C), then edit mappings in their workspaces by pasting the new mappings over the old ones.</p></div>
<div>source: <a href="http://blogs.msdn.com/b/mohamedg/archive/2009/04/13/how-to-copy-workspace-mappings.aspx">http://blogs.msdn.com/b/mohamedg/archive/2009/04/13/how-to-copy-workspace-mappings.aspx</a></div></div></div>
<div><b>Category:</b> TFS</div>
<div><b>Published:</b> 10/8/2010 5:01 PM</div>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>54</wp:post_id>
<wp:post_date>2010-10-08 21:02:17</wp:post_date>
<wp:post_date_gmt>2010-10-08 21:02:17</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>copy-workspace-mappings-from-one-machine-to-another</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="tfs"><![CDATA[TFS]]></category>
</item>
<item>
<title>VirtualPC on Windows 7 Home</title>
<link>http://blog.nadigs.net/mark/2010/10/04/virtualpc-on-windows-7-home/</link>
<pubDate>Mon, 04 Oct 2010 16:18:15 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=156</guid>
<description></description>
<content:encoded><![CDATA[<div> <div class="ExternalClassFEBCE67B53F54518B1E38AC82773F61B"><div>If you go to the official Virtual PC website (<a href="http://www.microsoft.com/virtualpc">http://www.microsoft.com/virtualpc</a>) and indicate that you are running Windows 7 Home – you will be (correctly) informed that you are not eligible to run Windows <em>XP Mode</em>. This is desceptive since you should still be able to download and run just Virtual PC as this blog post indicates : <a href="http://blogs.msdn.com/b/virtual_pc_guy/archive/2010/07/07/installing-windows-virtual-pc-on-windows-7-home-editions.aspx">http://blogs.msdn.com/b/virtual_pc_guy/archive/2010/07/07/installing-windows-virtual-pc-on-windows-7-home-editions.aspx</a>. You can download Virtual PC for Windows 7 directly from <a title="http://www.microsoft.com/downloads/details.aspx?FamilyID=2B6D5C18-1441-47EA-8309-2545B08E11DD" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=2B6D5C18-1441-47EA-8309-2545B08E11DD">http://www.microsoft.com/downloads/details.aspx?FamilyID=2B6D5C18-1441-47EA-8309-2545B08E11DD</a>.</div>
<div> </div>
<div>Or, just install the also free <a href="http://www.vmware.com/products/player/">VMWare Player</a> 3.1 which all reports inidicate runs XP faster with more options.</div>
<div> </div></div></div>
<div><b>Category:</b> Virtualization</div>
<div><b>Published:</b> 10/4/2010 12:14 PM</div>
]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>55</wp:post_id>
<wp:post_date>2010-10-04 16:18:15</wp:post_date>
<wp:post_date_gmt>2010-10-04 16:18:15</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>virtualpc-on-windows-7-home</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:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="virtualization"><![CDATA[Virtualization]]></category>
</item>
<item>
<title>Unanticiated problem working from coffee shop #1</title>
<link>http://blog.nadigs.net/mark/2010/09/28/unanticiated-problem-working-from-coffee-shop-1/</link>
<pubDate>Tue, 28 Sep 2010 14:20:00 +0000</pubDate>
<dc:creator>marknadig</dc:creator>
<guid isPermaLink="false">http://home.deltek.com/personal/marknadig/Blog/Lists/Posts/ViewPost.aspx?ID=155</guid>
<description></description>
<content:encoded><![CDATA[<div> <div class="ExternalClass66751093F8174617B3D87BCA2B025009"><div>The gal with the Mac next to me who bathed in something flowery... going to be sick.. ack...</div></div></div>