-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.xml
2151 lines (1385 loc) · 88.5 KB
/
feed.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"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Pinal Bhatt's Blog</title>
<description>Learning endeavor for ever...from the desk of Pinal Bhatt | blog.PBDesk.io</description>
<link>http://blog.pbdesk.io/</link>
<atom:link href="http://blog.pbdesk.io/feed.xml" rel="self" type="application/rss+xml"/>
<pubDate>Sun, 31 May 2015 17:51:38 -0400</pubDate>
<lastBuildDate>Sun, 31 May 2015 17:51:38 -0400</lastBuildDate>
<generator>Jekyll v2.5.3</generator>
<item>
<title>Jade Video Tutorial</title>
<description>Jade - Template Engine for NodeJS. Jade is a cool, elegant, high-performance (and probably the most used) templating language for Node focused on enabling quick HTML coding. It has been...</description>
<pubDate>Wed, 22 Apr 2015 17:30:08 -0400</pubDate>
<link>http://blog.pbdesk.io/tutorial/jade-video-tuotrial</link>
<guid isPermaLink="true">http://blog.pbdesk.io/tutorial/jade-video-tuotrial</guid>
<category>Jade</category>
<category>NodeJS</category>
<category>Tutorial</category>
<category>tutorial</category>
</item>
<item>
<title>Template for creating post</title>
<description>Fusce imperdiet, risus eget viverra faucibus, diam mi vestibulum libero, ut vestibulum tellus magna nec enim. Nunc dapibus varius interdum. Phasellus at lorem ut lectus fermentum convallis. Sed diam nisi,...</description>
<pubDate>Tue, 21 Apr 2015 12:16:08 -0400</pubDate>
<link>http://blog.pbdesk.io/archives/post-template</link>
<guid isPermaLink="true">http://blog.pbdesk.io/archives/post-template</guid>
<category>MyProject</category>
<category>Jekyll</category>
<category>HTML5</category>
<category>archives</category>
</item>
<item>
<title>Moving my blog to Jekyll!</title>
<description>Yes I am moving my blog(blog.PBDesk.com) from WordPress to Jekyll and host it at Github pages at http://blog.pbdesk.io http://blog.pbdesk.io Preview is almost ready One more jump for my blog. I...</description>
<pubDate>Mon, 20 Apr 2015 04:21:46 -0400</pubDate>
<link>http://blog.pbdesk.io/jekyll/Moving-My-Blog-To-Jekyll</link>
<guid isPermaLink="true">http://blog.pbdesk.io/jekyll/Moving-My-Blog-To-Jekyll</guid>
<category>Jekyll</category>
<category>jekyll</category>
</item>
<item>
<title>Welcome to Jekyll!</title>
<description>This was the default post created when I created Jekyll project. Keeping this post as is to show my liking for Jekyll. You’ll find this post in your _posts directory....</description>
<pubDate>Sat, 18 Apr 2015 04:21:46 -0400</pubDate>
<link>http://blog.pbdesk.io/jekyll/welcome-to-jekyll</link>
<guid isPermaLink="true">http://blog.pbdesk.io/jekyll/welcome-to-jekyll</guid>
<category>Jekyll</category>
<category>jekyll</category>
</item>
<item>
<title>ASP.Net vNext MVC 6 Videos</title>
<description>Recently, in Summer 2014, Microsoft announced the preview availability of its new ASP.Net vNext, that is MVC 6. ASP.NET vNext is a lean and composable framework for building web and...</description>
<pubDate>Tue, 11 Nov 2014 11:16:08 -0500</pubDate>
<link>http://blog.pbdesk.io/mvc6/asp-net-vnext-mvc-6-videos</link>
<guid isPermaLink="true">http://blog.pbdesk.io/mvc6/asp-net-vnext-mvc-6-videos</guid>
<category>ASP.Net</category>
<category>MVC</category>
<category>MVC6</category>
<category>WebAPI</category>
<category>mvc6</category>
</item>
<item>
<title>ASP.Net MVC 6 - Whats New?</title>
<description>Asp.Net vNext (http://asp.net/vNext) is the official place where we learn about next generation of Microsoft's ASP.Net framework. As of 2014 vNext is MVC 6! Yes MVC 6 is the new...</description>
<pubDate>Wed, 05 Nov 2014 10:35:50 -0500</pubDate>
<link>http://blog.pbdesk.io/programming/asp-net-mvc-6-whats-new</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/asp-net-mvc-6-whats-new</guid>
<category>ASP.Net</category>
<category>Microsoft</category>
<category>MVC</category>
<category>MVC6</category>
<category>WebAPI</category>
<category>programming</category>
</item>
<item>
<title>C# Code Snippet to Send Email</title>
<description>Microsoft.Net framework provides System.Net.Mail Namespace for handling SMTP and email related utilities. SmtpClient class allows applications to send e-mail by using the Simple Mail Transfer Protocol (SMTP) where as MailMessage...</description>
<pubDate>Sat, 20 Sep 2014 10:46:58 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/c-code-snippet-send-email</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/c-code-snippet-send-email</guid>
<category>CSharp</category>
<category>CodeSnippet</category>
<category>programming</category>
</item>
<item>
<title>Unit Testing Node.JS With Mocha</title>
<description>My google research for "node js mocha tutorial" 1. Official web site for Mocha simple, flexible, fun. Mocha is a feature-rich JavaScript test framework running on node.js and the browser, makingasynchronous testing simple...</description>
<pubDate>Sun, 24 Aug 2014 21:53:52 -0400</pubDate>
<link>http://blog.pbdesk.io/nodejs/unit-testing-node-js-with-mocha</link>
<guid isPermaLink="true">http://blog.pbdesk.io/nodejs/unit-testing-node-js-with-mocha</guid>
<category>JavaScript</category>
<category>NodeJS</category>
<category>Programming</category>
<category>nodejs</category>
</item>
<item>
<title>Realm of Package Managers</title>
<description>Realm of Package Managers
</description>
<pubDate>Fri, 15 Aug 2014 15:43:56 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/realm-package-managers</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/realm-package-managers</guid>
<category>Programming</category>
<category>programming</category>
</item>
<item>
<title>Getting started: Website in Node.JS With Express, Jade & Stylus using Node.js Tools for Visual Studio</title>
<description>Since last few days I am trying my hands with NodeJS. I came across very nice article "A SIMPLE WEBSITE IN NODE.JS WITH EXPRESS, JADE AND STYLUS" by Ben Gourley....</description>
<pubDate>Fri, 08 Aug 2014 10:00:37 -0400</pubDate>
<link>http://blog.pbdesk.io/nodejs/getting-started-website-node-js-express-jade-stylus-using-node-js-tools-visual-studio</link>
<guid isPermaLink="true">http://blog.pbdesk.io/nodejs/getting-started-website-node-js-express-jade-stylus-using-node-js-tools-visual-studio</guid>
<category>Express</category>
<category>Jade</category>
<category>NodeJS</category>
<category>NTVS</category>
<category>VS2013</category>
<category>nodejs</category>
</item>
<item>
<title>Adieu PBDesk.com V2</title>
<description>Long back posted that i want to rewrite my site with all new ASP.Net MVC, WebAPI, Umbaco7, AngularJS &amp; Twitter Bootstrap. It took lot of time for me to rewrite...</description>
<pubDate>Wed, 06 Aug 2014 15:07:20 -0400</pubDate>
<link>http://blog.pbdesk.io/featured/myprojects/adieu-pbdesk-com-v2</link>
<guid isPermaLink="true">http://blog.pbdesk.io/featured/myprojects/adieu-pbdesk-com-v2</guid>
<category>PBDesk</category>
<category>featured</category>
<category>myprojects</category>
</item>
<item>
<title>Node.JS: Tutorials & Resources</title>
<description>Node.JS is getting very popular now a days and i have also started enjoying this new breeze.
Here are my recent tweets regarding NodeJS.
Tweets about #NodeJS from:PBDesk
</description>
<pubDate>Sat, 05 Jul 2014 08:11:00 -0400</pubDate>
<link>http://blog.pbdesk.io/nodejs/nodejs-news-update</link>
<guid isPermaLink="true">http://blog.pbdesk.io/nodejs/nodejs-news-update</guid>
<category>NodeJS</category>
<category>nodejs</category>
</item>
<item>
<title>Welcome to Jekyll!</title>
<description>You&rsquo;ll find this post in your _posts directory - edit this post and re-build (or run with the -w switch) to see your changes! To add new posts, simply add...</description>
<pubDate>Mon, 03 Mar 2014 00:00:00 -0500</pubDate>
<link>http://blog.pbdesk.io/jekyll/welcome-to-jekyll</link>
<guid isPermaLink="true">http://blog.pbdesk.io/jekyll/welcome-to-jekyll</guid>
<category>jekyll</category>
</item>
<item>
<title>Objective-C Succinctly</title>
<description>test</description>
<pubDate>Mon, 03 Mar 2014 00:00:00 -0500</pubDate>
<link>http://blog.pbdesk.io/ebooks/programming/Succinctly-Objective-C</link>
<guid isPermaLink="true">http://blog.pbdesk.io/ebooks/programming/Succinctly-Objective-C</guid>
<category>Objective-c</category>
<category>eBook</category>
<category>ebooks</category>
<category>programming</category>
</item>
<item>
<title>Pinal Bhatt</title>
<description>People page test
Pinal Bhatt
</description>
<pubDate>Mon, 03 Mar 2014 00:00:00 -0500</pubDate>
<link>http://blog.pbdesk.io/people/Pinal-Bhatt</link>
<guid isPermaLink="true">http://blog.pbdesk.io/people/Pinal-Bhatt</guid>
<category>people</category>
<category>blog</category>
<category>people</category>
</item>
<item>
<title>John Papa</title>
<description>People page test
</description>
<pubDate>Mon, 03 Mar 2014 00:00:00 -0500</pubDate>
<link>http://blog.pbdesk.io/people/John-Papa</link>
<guid isPermaLink="true">http://blog.pbdesk.io/people/John-Papa</guid>
<category>Objective-c</category>
<category>eBook</category>
<category>people</category>
</item>
<item>
<title>Test Book</title>
<description>Test Book</description>
<pubDate>Sun, 02 Mar 2014 00:00:00 -0500</pubDate>
<link>http://blog.pbdesk.io/ebooks/test-book</link>
<guid isPermaLink="true">http://blog.pbdesk.io/ebooks/test-book</guid>
<category>ebooks</category>
</item>
<item>
<title>Introducing Poole</title>
<description>The Strange Case of Dr. Jeykll and Mr. Hyde tells the story of a lawyer investigating the connection of two persons, Dr. Henry Jekyll and Mr. Edward Hyde. Chief among...</description>
<pubDate>Sun, 02 Mar 2014 00:00:00 -0500</pubDate>
<link>http://blog.pbdesk.io/ebooks/jekyll/poole/introducing-poole</link>
<guid isPermaLink="true">http://blog.pbdesk.io/ebooks/jekyll/poole/introducing-poole</guid>
<category>ebooks</category>
<category>jekyll</category>
<category>poole</category>
</item>
<item>
<title>Introducing Poole</title>
<description>The Strange Case of Dr. Jeykll and Mr. Hyde tells the story of a lawyer investigating the connection of two persons, Dr. Henry Jekyll and Mr. Edward Hyde. Chief among...</description>
<pubDate>Sun, 02 Mar 2014 00:00:00 -0500</pubDate>
<link>http://blog.pbdesk.io/jekyll/poole/introducing-poole</link>
<guid isPermaLink="true">http://blog.pbdesk.io/jekyll/poole/introducing-poole</guid>
<category>jekyll</category>
<category>poole</category>
</item>
<item>
<title>ReWriting PBDesk.com</title>
<description>[caption id="attachment_242" align="alignright" width="300"] 2013.PBDesk.com[/caption] [caption id="attachment_243" align="alignleft" width="300"] 2014.PBDesk.com[/caption] PBDesk.com - My Site, My Desk! Its now more then an year with same look, not sure of others ;)...</description>
<pubDate>Tue, 24 Dec 2013 04:12:02 -0500</pubDate>
<link>http://blog.pbdesk.io/myprojects/rewriting-pbdesk-com</link>
<guid isPermaLink="true">http://blog.pbdesk.io/myprojects/rewriting-pbdesk-com</guid>
<category>AngularJS</category>
<category>MVC</category>
<category>PBDesk</category>
<category>Umbraco</category>
<category>WebAPI</category>
<category>myprojects</category>
</item>
<item>
<title>AngularJS – Really SuperHeroic JavaScipt</title>
<description>Updated on 30th Aug, 2014 - AngularJS 1.3.0-rc.0 is Out. The day Apple said it will not support plugins like Flash Player, Silverlight for its iOS based devices, new revolution [caption...</description>
<pubDate>Fri, 10 May 2013 10:15:00 -0400</pubDate>
<link>http://blog.pbdesk.io/angularjs/angularjs-really-superheroic-javascipt</link>
<guid isPermaLink="true">http://blog.pbdesk.io/angularjs/angularjs-really-superheroic-javascipt</guid>
<category>AngularJS</category>
<category>JavaScript</category>
<category>angularjs</category>
</item>
<item>
<title>Javascript: Random Number between two integers</title>
<description>Javascript does has built-in function Math.random() to generate a random number, however the so generated random number is always a floating value between 0 and 1. This may be fine...</description>
<pubDate>Mon, 07 Jan 2013 18:11:00 -0500</pubDate>
<link>http://blog.pbdesk.io/javascript/javascript-random-number-between-two-integers</link>
<guid isPermaLink="true">http://blog.pbdesk.io/javascript/javascript-random-number-between-two-integers</guid>
<category>code snippet</category>
<category>gist</category>
<category>JavaScript</category>
<category>javascript</category>
</item>
<item>
<title>.Net 4.5, VS2012 & Windows 8 Released</title>
<description>WOW….. Looks like a release season a Microsoft. Many new products and technologies getting released in this month and and in near future. Visual Studio 2012 .Net Framework 4.5 ASP.Net...</description>
<pubDate>Thu, 23 Aug 2012 09:10:00 -0400</pubDate>
<link>http://blog.pbdesk.io/microsoft/net-4-5-vs2012-windows-8-released</link>
<guid isPermaLink="true">http://blog.pbdesk.io/microsoft/net-4-5-vs2012-windows-8-released</guid>
<category>DotNet</category>
<category>DotNet45</category>
<category>ASP.Net</category>
<category>EntityFramework</category>
<category>Microsoft</category>
<category>MVC</category>
<category>VisualStudio</category>
<category>WebAPI</category>
<category>Windows8</category>
<category>microsoft</category>
</item>
<item>
<title>SQLite Browsers, Explorers, Admin GUI Tools</title>
<description>SQLite is a software library that implements a self-contained, server less, zero-configuration, transactional SQL database engine. SQLite is the most widely deployed SQL database engine in the world. The source...</description>
<pubDate>Fri, 10 Aug 2012 16:56:00 -0400</pubDate>
<link>http://blog.pbdesk.io/featured/sqlite-browsers-explorers-admin-gui-tools</link>
<guid isPermaLink="true">http://blog.pbdesk.io/featured/sqlite-browsers-explorers-admin-gui-tools</guid>
<category>SQLite</category>
<category>featured</category>
</item>
<item>
<title>Using SQLite With WinRT, Metro, Windows 8 Mobile</title>
<description>As pre recent news at http://www.sqlite.org/news.html on 2012-June-11 - Release 3.7.13 “SQLite version 3.7.13 adds support for WinRT and metro style applications for Microsoft Windows 8. The 3.7.13 release is...</description>
<pubDate>Fri, 10 Aug 2012 10:50:00 -0400</pubDate>
<link>http://blog.pbdesk.io/windows8/using-sqlite-with-winrt-metro-windows-8-mobile</link>
<guid isPermaLink="true">http://blog.pbdesk.io/windows8/using-sqlite-with-winrt-metro-windows-8-mobile</guid>
<category>windows8</category>
</item>
<item>
<title>INotifyPropertyChanged - The .NET 4.5 Way. CallerMemberName</title>
<description>&nbsp; Here are few links describing how to use INotifyPropertyChanged interface in .Net Framework 4.5 using new “Caller Information” Attributes: CallerFilePathAttribute, CallerLineNumberAttribute, and CallerMemberNameAttribute MSDN: Caller Information (C# and Visual...</description>
<pubDate>Tue, 07 Aug 2012 09:43:00 -0400</pubDate>
<link>http://blog.pbdesk.io/dotnet/inotifypropertychanged-the-net-4-5-way-callermembername</link>
<guid isPermaLink="true">http://blog.pbdesk.io/dotnet/inotifypropertychanged-the-net-4-5-way-callermembername</guid>
<category>DotNet45</category>
<category>CSharp</category>
<category>dotnet</category>
</item>
<item>
<title>Route Constraints With ASP.Net MVC & WebAPI</title>
<description>ASP.Net MVC has a powerful Routing Engine that allows mapping between URL Routes and Controller Actions. Below are few links regarding how you can control how browser requests match routes...</description>
<pubDate>Tue, 17 Jul 2012 09:08:00 -0400</pubDate>
<link>http://blog.pbdesk.io/asp.net/route-constraints-with-asp-net-mvc-webapi</link>
<guid isPermaLink="true">http://blog.pbdesk.io/asp.net/route-constraints-with-asp-net-mvc-webapi</guid>
<category>asp.net</category>
</item>
<item>
<title>Free eBooks: jQuery & Metro Apps</title>
<description>jQuery Succinctly By Cody Lindley At&#160; Syncfusion jQuery Succinctly was written to express, in short-order, the concepts essential to intermediate and advanced jQuery development. Its purpose is to instill in...</description>
<pubDate>Fri, 15 Jun 2012 16:17:00 -0400</pubDate>
<link>http://blog.pbdesk.io/ebook/free-ebooks-jquery-metro-apps</link>
<guid isPermaLink="true">http://blog.pbdesk.io/ebook/free-ebooks-jquery-metro-apps</guid>
<category>eBook</category>
<category>Windows8</category>
<category>jQuery</category>
<category>ebook</category>
</item>
<item>
<title>C# Extension Methods – I Love Them!!!!</title>
<description>Extension Methods - Yet another cool feature brought into .Net realm with C# 3 and VB.Net 9. Extension methods allow you to &quot;add&quot; methods to existing types without creating a...</description>
<pubDate>Fri, 10 Feb 2012 12:08:00 -0500</pubDate>
<link>http://blog.pbdesk.io/dotnet/c-extension-methods-i-love-them</link>
<guid isPermaLink="true">http://blog.pbdesk.io/dotnet/c-extension-methods-i-love-them</guid>
<category>dotnet</category>
</item>
<item>
<title>C# Generic String Parser Extension Method</title>
<description>Here is an extension method for strings in C# for parsing stings to other types. Code at Gist [gist id = "af652fbca4e543bc3c23" file = "GenericStringParserExtensionMethod.cs" ] [emc2alert type="success" style="normal" position="top"...</description>
<pubDate>Wed, 01 Feb 2012 21:50:00 -0500</pubDate>
<link>http://blog.pbdesk.io/dotnet/programming/c-generic-string-parser-extension-method</link>
<guid isPermaLink="true">http://blog.pbdesk.io/dotnet/programming/c-generic-string-parser-extension-method</guid>
<category>DotNet</category>
<category>CSharp</category>
<category>dotnet</category>
<category>programming</category>
</item>
<item>
<title>Whats coming up new with .Net 4.5 ?</title>
<description>Microsoft has already announced developer preview for .Net Framework 4.5 which is expected to come with ASP.Net 4.5, ASP.Net MVC 4, ASP.NET Web Pages 2,Visual Studio 11 and lot more...</description>
<pubDate>Tue, 29 Nov 2011 11:30:00 -0500</pubDate>
<link>http://blog.pbdesk.io/dotnet/microsoft/whats-coming-up-new-with-net-4-5</link>
<guid isPermaLink="true">http://blog.pbdesk.io/dotnet/microsoft/whats-coming-up-new-with-net-4-5</guid>
<category>dotnet</category>
<category>microsoft</category>
</item>
<item>
<title>ScottGu's : ASP.NET vNext Series</title>
<description>ScottGu's : ASP.NET vNext Series:
HTML Editor Support for Smart Tasks and Event Handler Generation (Aug 31st)
Strongly Typed Data Controls
</description>
<pubDate>Thu, 01 Sep 2011 08:55:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/scottgus-asp-net-vnext-series</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/scottgus-asp-net-vnext-series</guid>
<category>programming</category>
</item>
<item>
<title>Google's Blogger gets a refresh new look</title>
<description>cnet: Google's Blogger gets a refresh: http://t.co/N3ZRzKi: cnet: Google's Blogger gets a refresh: http://t.co/N3ZRzKi
http://buzz.blogger.com/2011/08/bloggers-fresh-new-look.html
</description>
<pubDate>Thu, 01 Sep 2011 08:52:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/googles-blogger-gets-a-refresh-new-look</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/googles-blogger-gets-a-refresh-new-look</guid>
<category>programming</category>
</item>
<item>
<title>Razor support in Umbraco 4.7</title>
<description>With Umbraco 4.6.1 in Jan,2011, they brought in one of the great feature to Umbraco CMS - Razor. And with Umbraco 4.7 in March, 2011 they have matured the made...</description>
<pubDate>Mon, 07 Mar 2011 11:49:00 -0500</pubDate>
<link>http://blog.pbdesk.io/asp.net/cms/razor-support-in-umbraco-4-7</link>
<guid isPermaLink="true">http://blog.pbdesk.io/asp.net/cms/razor-support-in-umbraco-4-7</guid>
<category>asp.net</category>
<category>cms</category>
</item>
<item>
<title>Re-Usable jQuery Accordion for Umbraco</title>
<description>As a part of my umbraco based website www.PBDesk.com, I was developing learning interactions components which can be re-used in the eLearning section of the website. Accordion &amp; Tabs are...</description>
<pubDate>Thu, 03 Feb 2011 14:05:00 -0500</pubDate>
<link>http://blog.pbdesk.io/elearning/re-usable-jquery-accordion-for-umbraco</link>
<guid isPermaLink="true">http://blog.pbdesk.io/elearning/re-usable-jquery-accordion-for-umbraco</guid>
<category>elearning</category>
</item>
<item>
<title>Razor support in Umbraco</title>
<description>Important Note!!! This post was written for Umbraco 4.6.1. Now new version 4.7 is available and there are certain notable changes in terms of Razor in Umbraco 4.7. Please refer...</description>
<pubDate>Tue, 25 Jan 2011 12:51:00 -0500</pubDate>
<link>http://blog.pbdesk.io/cms/razor-support-in-umbraco</link>
<guid isPermaLink="true">http://blog.pbdesk.io/cms/razor-support-in-umbraco</guid>
<category>cms</category>
</item>
<item>
<title>Umbraco Razor Syntax for Breadcrumb</title>
<description>Recently Umbraco team released new version 4.6.1 for Umbraco CMS engine and one of the great feature they added was the support for Razor syntax.&#160; Yes, Umbraco now supports Razor...</description>
<pubDate>Fri, 21 Jan 2011 14:58:00 -0500</pubDate>
<link>http://blog.pbdesk.io/cms/umbraco-razor-syntax-for-breadcrumb</link>
<guid isPermaLink="true">http://blog.pbdesk.io/cms/umbraco-razor-syntax-for-breadcrumb</guid>
<category>cms</category>
</item>
<item>
<title>Canonical Url For Umbraco Using Razor Syntax</title>
<description>Sometime back I wrote post about Canonical Urls. Indeed Canonical URLs is one of the important chapter of SEO and a way to avoid getting page rank getting distributed among...</description>
<pubDate>Wed, 19 Jan 2011 14:48:00 -0500</pubDate>
<link>http://blog.pbdesk.io/seo/canonical-url-for-umbraco-using-razor-syntax</link>
<guid isPermaLink="true">http://blog.pbdesk.io/seo/canonical-url-for-umbraco-using-razor-syntax</guid>
<category>seo</category>
</item>
<item>
<title>ASP.Net Open Source CMS</title>
<description>Umbraco Rocks!!! Since long I was thinking of writhing this post. I have been blogging since 2007 at blog.PBDesk.com powered by Google Blogger. But blogs have there own limitations, I...</description>
<pubDate>Tue, 18 Jan 2011 14:27:00 -0500</pubDate>
<link>http://blog.pbdesk.io/dotnet/asp.net/cms/asp-net-open-source-cms</link>
<guid isPermaLink="true">http://blog.pbdesk.io/dotnet/asp.net/cms/asp-net-open-source-cms</guid>
<category>dotnet</category>
<category>asp.net</category>
<category>cms</category>
</item>
<item>
<title>Canonical URLs for Umbraco</title>
<description>In my previous post, i have discussed about Canonical URLs and its importance in SEO. In this post we will see how to implement Canonical Urls in an Umbraco based...</description>
<pubDate>Mon, 03 Jan 2011 17:50:00 -0500</pubDate>
<link>http://blog.pbdesk.io/seo/canonical-urls-for-umbraco</link>
<guid isPermaLink="true">http://blog.pbdesk.io/seo/canonical-urls-for-umbraco</guid>
<category>seo</category>
</item>
<item>
<title>Canonical URL</title>
<description>URL Canonicalization (also refered as URL Normalization) is the process of picking the best url when there are several choices.&#160; It is a process to determine if two syntactically different...</description>
<pubDate>Mon, 03 Jan 2011 17:29:00 -0500</pubDate>
<link>http://blog.pbdesk.io/seo/canonical-url</link>
<guid isPermaLink="true">http://blog.pbdesk.io/seo/canonical-url</guid>
<category>seo</category>
</item>
<item>
<title>Free CDN Service – That too from Google!</title>
<description>CDN - Content Delivery Network or Content Distribution Network What is CDN? As defined at wikipedia: A content delivery network or content distribution network (CDN) is a system of computers...</description>
<pubDate>Wed, 22 Dec 2010 18:22:00 -0500</pubDate>
<link>http://blog.pbdesk.io/google/free-cdn-service-that-too-from-google</link>
<guid isPermaLink="true">http://blog.pbdesk.io/google/free-cdn-service-that-too-from-google</guid>
<category>google</category>
</item>
<item>
<title>Using CDN hosted jQuery Library</title>
<description>Very often, to use jQuery, jQueryUI and Themes we need to add reference(&lt;script&gt; tag) to these javascript libraries in our HTML and normally we host these .js files along with...</description>
<pubDate>Tue, 07 Dec 2010 15:00:00 -0500</pubDate>
<link>http://blog.pbdesk.io/google/javascript/microsoft/using-cdn-hosted-jquery-library</link>
<guid isPermaLink="true">http://blog.pbdesk.io/google/javascript/microsoft/using-cdn-hosted-jquery-library</guid>
<category>google</category>
<category>javascript</category>
<category>microsoft</category>
</item>
<item>
<title>Using jQuery Scripts hosted @ Google</title>
<description>As mentioned in my previous post, rather then hosting jQuery libraries on our sever we can directly use them from CDN services available from Microsoft &amp; Google. And there are...</description>
<pubDate>Tue, 07 Dec 2010 14:54:00 -0500</pubDate>
<link>http://blog.pbdesk.io/google/javascript/using-jquery-scripts-hosted-google</link>
<guid isPermaLink="true">http://blog.pbdesk.io/google/javascript/using-jquery-scripts-hosted-google</guid>
<category>google</category>
<category>javascript</category>
</item>
<item>
<title>Using jQuery Scripts hosted @ Microsoft</title>
<description>As mentioned in my previous post, rather then hosting jQuery libraries on our sever we can directly use them from CDN services available from Microsoft &amp; Google. And there are...</description>
<pubDate>Tue, 07 Dec 2010 14:53:00 -0500</pubDate>
<link>http://blog.pbdesk.io/javascript/microsoft/using-jquery-scripts-hosted-microsoft</link>
<guid isPermaLink="true">http://blog.pbdesk.io/javascript/microsoft/using-jquery-scripts-hosted-microsoft</guid>
<category>javascript</category>
<category>microsoft</category>
</item>
<item>
<title>Trim() functionality in JavaScript</title>
<description>Below is are the trim(), ltrim() and rtrim() functionality for strings in Javascript: /********** String Trim Utilites *********************/ String.prototype.trim = function () { return this.replace(/^s+|s+$/g, &quot;&quot;); } String.prototype.ltrim = function...</description>
<pubDate>Tue, 30 Nov 2010 11:38:00 -0500</pubDate>
<link>http://blog.pbdesk.io/javascript/trim-functionality-in-javascript</link>
<guid isPermaLink="true">http://blog.pbdesk.io/javascript/trim-functionality-in-javascript</guid>
<category>javascript</category>
</item>
<item>
<title>String.Format() for JavaScript</title>
<description>.Net's String.Format is a very powerful method for working with strings and is one of my favorite utility which I have been using in C# &amp; VB.net since long. And...</description>
<pubDate>Tue, 30 Nov 2010 11:33:00 -0500</pubDate>
<link>http://blog.pbdesk.io/javascript/string-format-for-javascript</link>
<guid isPermaLink="true">http://blog.pbdesk.io/javascript/string-format-for-javascript</guid>
<category>javascript</category>
</item>
<item>
<title>Mind Reader : This program probes your mind. Try it.</title>
<description>Think of a number with 2 digits (ex: 54) Subtract from this number its 2 digits (ex: 54 - 5 - 4 = 45) Find the symbol that corresponds to...</description>
<pubDate>Fri, 07 May 2010 16:41:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/mind-reader-this-program-probes-your-mind-try-it</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/mind-reader-this-program-probes-your-mind-try-it</guid>
<category>programming</category>
</item>
<item>
<title>Drop All Objects in SQL Server</title>
<description>Below is the T-SQL script for dropping all the objects from a database in SQL Server. This script in particular drops Procedures, Functions, Tables, Views and Types. For other database...</description>
<pubDate>Thu, 01 Apr 2010 16:58:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/drop-all-objects-in-sql-server</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/drop-all-objects-in-sql-server</guid>
<category>programming</category>
</item>
<item>
<title>Visual Studio 2010 RC is now available</title>
<description>Finally, long awaited Microsoft Visual Studio 2010 Release Candidate with .Net Framework 4.0 and ASP.Net 4.0 was made publically available on 10th Feb, 2010. I downloaded and installed it successfully,...</description>
<pubDate>Thu, 11 Feb 2010 23:45:00 -0500</pubDate>
<link>http://blog.pbdesk.io/dotnet/asp.net/visual-studio-2010-rc-is-now-available</link>
<guid isPermaLink="true">http://blog.pbdesk.io/dotnet/asp.net/visual-studio-2010-rc-is-now-available</guid>
<category>dotnet</category>
<category>asp.net</category>
</item>
<item>
<title>Null Object Design Pattern</title>
<description>Null Object design pattern – alternatively returning null object instead of ‘Null’ to avoid repeatedly checking for null values within code. In the object oriented programming realm it's very common...</description>
<pubDate>Wed, 03 Feb 2010 14:35:00 -0500</pubDate>
<link>http://blog.pbdesk.io/dotnet/design%20patterns/null-object-design-pattern</link>
<guid isPermaLink="true">http://blog.pbdesk.io/dotnet/design%20patterns/null-object-design-pattern</guid>
<category>dotnet</category>
<category>design patterns</category>
</item>
<item>
<title>C# : News Updates</title>
<description>[wp_rss_multi_importer category="5"]
</description>
<pubDate>Fri, 13 Nov 2009 17:39:00 -0500</pubDate>
<link>http://blog.pbdesk.io/dotnet/csharp/c-news-updates</link>
<guid isPermaLink="true">http://blog.pbdesk.io/dotnet/csharp/c-news-updates</guid>
<category>CSharp</category>
<category>TechNews</category>
<category>dotnet</category>
<category>csharp</category>
</item>
<item>
<title>Facebook Membership Provider</title>
<description>Introduction One of the great new features introduced in ASP.NET 2.0 was the use of the &quot;Provider Model&quot; which provides flexibility and extensibility to your Web applications. Using the provider...</description>
<pubDate>Fri, 13 Nov 2009 12:27:00 -0500</pubDate>
<link>http://blog.pbdesk.io/dotnet/asp.net/facebook/facebook-membership-provider</link>
<guid isPermaLink="true">http://blog.pbdesk.io/dotnet/asp.net/facebook/facebook-membership-provider</guid>
<category>dotnet</category>
<category>asp.net</category>
<category>facebook</category>
</item>
<item>
<title>At last I am on the Google Wave :)</title>
<description>Yes at last i am on the wave with sandbox access account [email protected]. Below is my first wave embedded&#160; into my blog using&#160; Google Wave Embed APIs. Those with wave...</description>
<pubDate>Tue, 13 Oct 2009 15:07:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/at-last-i-am-on-the-google-wave</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/at-last-i-am-on-the-google-wave</guid>
<category>programming</category>
</item>
<item>
<title>Reading Query String with JavaScript</title>
<description>When you google on this topic you will find many ways to get Query String parameters &amp; its values using JavaScript. Below is one of the smallest, easiest and a...</description>
<pubDate>Wed, 07 Oct 2009 11:40:00 -0400</pubDate>
<link>http://blog.pbdesk.io/javascript/reading-query-string-with-javascript</link>
<guid isPermaLink="true">http://blog.pbdesk.io/javascript/reading-query-string-with-javascript</guid>
<category>javascript</category>
</item>
<item>
<title>Google - I am falling in love</title>
<description>Google is simply getting awesome day by day. Though I am a Microsoft guy and still a Microsoft lover, slowly i have started developing fondness for Google. Google - synonym...</description>
<pubDate>Wed, 23 Sep 2009 16:49:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/google-i-am-falling-in-love</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/google-i-am-falling-in-love</guid>
<category>programming</category>
</item>
<item>
<title>Pinal Bhatt Online – My aggregated web activities</title>
<description>
</description>
<pubDate>Tue, 22 Sep 2009 12:31:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/pinal-bhatt-online-my-aggregated-web-activities</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/pinal-bhatt-online-my-aggregated-web-activities</guid>
<category>programming</category>
</item>
<item>
<title>Chat with Author(Pinal Bhatt)</title>
<description>Welcome, you can have private chat with me here. Alternatively you can also use this link to have a chat with me. Chat with Pinal Bhatt Thanks for visiting www.P-Bhatt.com....</description>
<pubDate>Mon, 14 Sep 2009 13:41:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/chat-with-authorpinal-bhatt</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/chat-with-authorpinal-bhatt</guid>
<category>programming</category>
</item>
<item>
<title>Social Bookmarking : Links/Urls</title>
<description>“Social Bookmarking” - An another buzz word parallel to “Social Networking”. Lets see what it is and how to provide links on your WebPages/Websites for social bookmarking. What is Social...</description>
<pubDate>Wed, 29 Jul 2009 11:10:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/social-bookmarking-linksurls</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/social-bookmarking-linksurls</guid>
<category>programming</category>
</item>
<item>
<title>Demo : Picasa DataProvider for Vertigo Slide Show 2.1</title>
<description>Picasa DataProvider for Vertigo Slide.Show 2 is an open source extension to the original Slide.Show 2 by Vertigo. (Based on release 2.1 dated 13-Jul-2009). Slide.Show 2 is an open source...</description>
<pubDate>Mon, 20 Jul 2009 09:03:00 -0400</pubDate>
<link>http://blog.pbdesk.io/json/demo-picasa-dataprovider-for-vertigo-slide-show-2-1</link>
<guid isPermaLink="true">http://blog.pbdesk.io/json/demo-picasa-dataprovider-for-vertigo-slide-show-2-1</guid>
<category>json</category>
</item>
<item>
<title>FireFox : Add-ons & Plug-ins for Web Developers</title>
<description>Mozilla Firefox - I love this browser. Though I don't use most! Yes I am a .Net guy so mostly I am on IE and IE8 is much better now....</description>
<pubDate>Wed, 08 Jul 2009 12:15:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/firefox-add-ons-plug-ins-for-web-developers</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/firefox-add-ons-plug-ins-for-web-developers</guid>
<category>programming</category>
</item>
<item>
<title>jQuery UI Demo : Theme - Slate</title>
<description>This page demonstrates the the use of jQuery UI Themes in Blogger/Blogspot. To know how I achieved this, view my post : Using jQuery UI Themes in Blogger/Blogspot jQuery UI...</description>
<pubDate>Tue, 07 Jul 2009 21:52:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/jquery-ui-demo-theme-slate</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/jquery-ui-demo-theme-slate</guid>
<category>programming</category>
</item>
<item>
<title>jQuery UI Demo : Theme - Blue</title>
<description>This page demonstrates the the use of jQuery UI Themes in Blogger/Blogspot. To know how I achieved this, view my post : Using jQuery UI Themes in Blogger/Blogspot jQuery UI...</description>
<pubDate>Tue, 07 Jul 2009 11:57:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/jquery-ui-demo-theme-blue</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/jquery-ui-demo-theme-blue</guid>
<category>programming</category>
</item>
<item>
<title>jQuery UI Demo : Theme - Simple</title>
<description>This page demonstrates the the use of jQuery UI Themes in Blogger/Blogspot. To know how I achieved this, view my post : Using jQuery UI Themes in Blogger/Blogspot jQuery UI...</description>
<pubDate>Tue, 07 Jul 2009 09:27:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/jquery-ui-demo-theme-simple</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/jquery-ui-demo-theme-simple</guid>
<category>programming</category>
</item>
<item>
<title>My Delicious Bookmarks</title>
<description>
</description>
<pubDate>Wed, 01 Jul 2009 10:42:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/my-delicious-bookmarks</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/my-delicious-bookmarks</guid>
<category>programming</category>
</item>
<item>
<title>My Social Networks</title>
<description>Welcome to My Social Networks:
http://twitter.com/pinalbhatt
&#160;
Read recent tweets by Pinal Bhatt
&#160;
View &#160;&#160;&#160;&#160;&#160;&#160;&#160;
&#160;
</description>
<pubDate>Sun, 28 Jun 2009 16:37:00 -0400</pubDate>
<link>http://blog.pbdesk.io/programming/my-social-networks</link>
<guid isPermaLink="true">http://blog.pbdesk.io/programming/my-social-networks</guid>