This repository has been archived by the owner on Oct 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.htm
1360 lines (1263 loc) · 83 KB
/
index.htm
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" id='top'>
<head>
<title>Build Azure Books Catalog</title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<link rel="stylesheet" type="text/css" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/jsQuizEngine.css">
<link rel="stylesheet" type="text/css" href="css/site.css">
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.2.js"></script>
<script src="https://ajax.aspnetcdn.com/ajax/knockout/knockout-2.2.1.js"></script>
<script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/bootstrap.min.js"></script>
<script src="jhash.min.js"></script>
<style>
body {
margin-top: 5em;
}
.navbar-brand > img {
height: 100%;
float: left;
padding-right: 0.3em;
}
.book img {
max-height: 23em;
min-height: 23em;
}
.book-title {
min-height: 4.5em;
}
.book-description {
min-height: 10em;
max-height: 10em;
overflow: scroll;
}
.book-author {
min-height: 3.5em;
max-height: 3.5em;
}
.book-author:before {
content: 'Written by: ';
}
.book-year {
font-size: 1.5em;
text-align: right;
}
.book-price {
text-align: right;
}
.book-price.text-success, .book-price > .text-success {
font-weight: bold;
}
.book-links {
padding-top: 0.3em;
}
#books {
margin-top: 5em;
}
</style>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#book-filter" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">
<img alt="Build Azure" src="https://i2.wp.com/buildazure.com/wp-content/uploads/2017/06/cropped-build-azure-logo-white-no-text.png?resize=150%2C150&ssl=1">
Build Azure Books Catalog
</a>
</div>
<div id="book-filter" class="navbar-collapse collapse">
<span class='navbar-text'><span id="book-count">?</span> Books in Catalog and Growing!</span>
<div class="navbar-form navbar-right">
<div class="form-group">
<label for="book-year-filter">Published</label>
<select id='book-year-filter' class="form-control">
<option>All</option>
<option>2018</option>
<option>2017</option>
<option>2016</option>
<option>2015</option>
<option>2014</option>
<option>2012</option>
<option>2010</option>
<option>2009</option>
</select>
</div>
<div class="form-group">
<label for="book-price-filter">Price</label>
<select id='book-price-filter' class="form-control">
<option>All</option>
<option>Free</option>
<option>Paid</option>
</select>
</div>
<div class="form-group">
<label for="book-search">Search</label>
<input type='text' id='book-search' class="form-control"/>
</div>
<button id="book-filter-go" class='btn btn-primary'>Filter</button>
<button id="book-filter-reset" class='btn btn-default'>Reset</button>
</div>
</div>
</div>
</nav>
<script>
$(function(){
// Make Contains case insensitive
$.expr[":"].contains = $.expr.createPseudo(function(arg) {
return function( elem ) {
return $(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0;
};
});
$('#book-count').text($('.book').length);
$('#book-filter-reset').click(function(){
resetFilter();
$('#book-filter').removeClass('in');
return false;
});
$('#book-filter-go').click(function() {
doFilter();
$('#book-filter').removeClass('in');
$('html').scrollTop(0);
return false;
});
$('#book-filter').find('select').change(function(){
jHash.val({
"year": $("#book-year-filter option:selected").text(),
"price": $("#book-price-filter option:selected").text()
});
$('html').scrollTop(0);
});
$('#book-search').keyup(doFilter).keypress(doFilter);
function resetFilter(){
jHash.clear({});
$('#book-year-filter option:selected').removeAttr('selected');
$('#book-price-filter option:selected').removeAttr('selected');
$('#book-search').val('');
doFilter();
}
jHash.change(function (){
doFilter();
});
function doFilter() {
var yr = jHash.val('year') || 'All';
var price = jHash.val('price') || 'All';
var search = $('#book-search').val();
$('.book').each(function(i, e){
var elem = $(e);
if (
(yr === 'All' || elem.has('.book-year:contains("' + yr + '")').length > 0)
&& (price === 'All' || elem.has('.book-price:contains("' + price + '")').length > 0)
&& (!search || elem.has(':contains("' + search + '")').length > 0)
) {
elem.show();
} else {
elem.hide();
}
});
$('html').scrollTop(0);
}
$('#book-year-filter').val(jHash.val('year'));
$('#book-price-filter').val(jHash.val('price'));
doFilter();
});
</script>
<div class="row">
<!--
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="">
<img src="" alt="">
</a>
<div class="caption">
<h3 class='book-title'>title</h3>
<p class='book-description'>description</p>
<p class='book-author'>author</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="#" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
-->
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2j38WSV">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B00OQU4OGG&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Automating Microsoft Azure Infrastructure Services</h3>
<p class='book-description'>Get valuable tips and techniques for automating your cloud deployments with Azure PowerShell cmdlets, and learn how to provision Azure services on the fly. In this hands-on guide, Microsoft cloud technology expert Michael Washam shows you how to automate various management tasks and deploy solutions that are both complex and at scale.</p>
<p class='book-author'>Michael Washam</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2014</div>
</div>
<a target="_blank" href="http://amzn.to/2j38WSV" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://buildazure.com/2016/01/30/free-ebook-azure-automation/">
<img src="https://buildazurecom.files.wordpress.com/2016/01/ebook-mspress-azureessentials-azureautomation.png?w=492&h=600" alt="Azure Essentials: Azure Automation">
</a>
<div class="caption">
<h3 class='book-title'>Azure Essentials: Azure Automation</h3>
<p class='book-description'>The book "Microsoft Azure Essentials: Azure Automation"" written by Michael McKeown is written to target IT Pros and PowerShell developers to help them understand the core concepts of Azure Automation. This includes using runbooks based on PowerShell Workflow, and orchestrating frequent deployment (ala DevOps) and life cycle management through the use of automating Azure resource setup and maintenance.</p>
<p class='book-author'>Michael McKeown</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2015</div>
</div>
<a target="_blank" href="https://buildazure.com/2016/01/30/free-ebook-azure-automation/" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://buildazure.com/2016/01/26/free-ebook-azure-machine-learning/">
<img src="https://buildazurecom.files.wordpress.com/2016/01/ebok-azureessentialsmachinelearning.png?w=494&h=600" alt="Azure Essentials: Azure Machine Learning">
</a>
<div class="caption">
<h3 class='book-title'>Azure Essentials: Azure Machine Learning</h3>
<p class='book-description'>Published by Microsoft Press, has been made available as a Free eBook over on the Microsoft Virtual Academy site. This book introduces developers to using Azure Machine Learning for building predictive analytics models and deploy them for consumption as web services.</p>
<p class='book-author'>Jeff Barnes</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2015</div>
</div>
<a target="_blank" href="https://buildazure.com/2016/01/26/free-ebook-azure-machine-learning/" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://buildazure.com/2016/02/05/free-ebook-fundamentals-of-azure/">
<img src="https://buildazurecom.files.wordpress.com/2016/02/ebook-mspress-fundamentalsofazure-2nd-edition.png?w=246&h=300" alt="Azure Essentials: Fundamentals of Azure (Second Edition)">
</a>
<div class="caption">
<h3 class='book-title'>Azure Essentials: Fundamentals of Azure (Second Edition)</h3>
<p class='book-description'>The material covered in this book are targeted towards introducing both Developers and IT Professionals to the huge range of features and capabilities within the Microsoft Azure platform.</p>
<p class='book-author'>Michael Collier, Robin Shahan</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="https://buildazure.com/2016/02/05/free-ebook-fundamentals-of-azure/" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://buildazure.com/2016/06/09/free-ebook-migrating-sql-server-to-databases-to-azure/">
<img src="https://buildazurecom.files.wordpress.com/2016/06/ebookazuremigratingsqlserver.png?w=244&h=300" alt="Azure Essentials: Migrating SQL Server Databases to Azure">
</a>
<div class="caption">
<h3 class='book-title'>Azure Essentials: Migrating SQL Server Databases to Azure</h3>
<p class='book-description'>This book is part of the "Microsoft Azure Essentials" books series. With this book you will learn how SQL Server in Azure is similar to SQL Server in an on-premises environment. You will also learn how they are different. The author, Carl Rabeler, is a content lead for Azure.com and will walk you through the steps of getting started with SQL Server in an Azure Virtual Machine as well as Azure SQL Databases.</p>
<p class='book-author'>Carl Rabeler</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="https://buildazure.com/2016/06/09/free-ebook-migrating-sql-server-to-databases-to-azure/" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://buildazure.com/2016/02/02/free-ebook-azure-web-apps-for-developers/">
<img src="https://buildazurecom.files.wordpress.com/2016/01/ebook-azureessentials-azurewebappsfordevs.png?w=245&h=300" alt="Azure Essentials: Azure Web Apps for Developers">
</a>
<div class="caption">
<h3 class='book-title'>Azure Essentials: Azure Web Apps for Developers</h3>
<p class='book-description'>This book covers the necessary information to help developers advance their technical skills in developing, deploying and managing Web Applications hosted within the Microsoft Azure platform using the Web Apps feature set. This book is written to target .NET developers from beginner to advanced.</p>
<p class='book-author'>Rick Rainey</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2015</div>
</div>
<a target="_blank" href="https://buildazure.com/2016/02/02/free-ebook-azure-web-apps-for-developers/" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://buildazure.com/2016/02/10/free-ebook-building-cloud-apps-with-microsoft-azure-devops-availability-storage-more/">
<img src="https://buildazurecom.files.wordpress.com/2016/01/ebook-mspress-buildingcloudappsmsazure.png?w=245&h=300" alt="Building Cloud Apps with Microsoft Azure">
</a>
<div class="caption">
<h3 class='book-title'>Building Cloud Apps with Microsoft Azure</h3>
<p class='book-description'>This books goes through a pattern-based approach to building best pracice, real-world solutions with Microsoft Azure including DevOps, Availability, Storage, and more great topics. Among these practices covered include topics coving both Architecture and coding practices. The content of this book is based off the presentation Scott Guthrie gave at the Norwegian Developers Conference (NDC) in June, 2013, as well as Microsoft Tech Ed Australia in September, 2013.</p>
<p class='book-author'>Scott Guthrie, Mark Simms, Tom Dykstra, Rick Anderson, Mike Wasson</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2014</div>
</div>
<a target="_blank" href="https://buildazure.com/2016/02/10/free-ebook-building-cloud-apps-with-microsoft-azure-devops-availability-storage-more/" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2j7rUHN">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B019IOX51O&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Building Clouds with Windows Azure Pack</h3>
<p class='book-description'>In this book, we will learn about planning and deployment of Cloud Fabric for Windows Azure Pack, Azure Pack components, VM Clouds and IaaS offerings, PaaS Offering including WebSites & Service Bus, DBaaS offerings, Automation with SMA, and extending capabilities with third party products integration and tenant experience for all services.</p>
<p class='book-author'>Amit Malik</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="http://amzn.to/2j7rUHN" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2jTjhoI">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B00T3N7XB4&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Building Microservices: Designing Fine-Grained Systems</h3>
<p class='book-description'>Distributed systems have become more fine-grained in the past 10 years, shifting from code-heavy monolithic applications to smaller, self-contained microservices. But developing these systems brings its own set of headaches. With lots of examples and practical advice, this book takes a holistic view of the topics that system architects and administrators must consider when building, managing, and evolving microservice architectures.</p>
<p class='book-author'>Sam Newman</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2015</div>
</div>
<a target="_blank" href="http://amzn.to/2jTjhoI" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2jGRaqp">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B009G8PYY4&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Cloud Architecture Patterns</h3>
<p class='book-description'>If your team is investigating ways to design applications for the cloud, this concise book introduces 11 architecture patterns that can help you take advantage of cloud-platform services. You’ll learn how each of these platform-agnostic patterns work, when they might be useful in the cloud, and what impact they’ll have on your application architecture. You’ll also see an example of each pattern applied to an application built with Windows Azure.</p>
<p class='book-author'>Bill Wilder</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2012</div>
</div>
<a target="_blank" href="http://amzn.to/2jGRaqp" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2jVCvKu">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=0470484705&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Cloud Computing for Dummies</h3>
<p class='book-description'>Cloud computing can be difficult to understand at first, but the cost-saving possibilities are great and many companies are getting on board. If you've been put in charge of implementing cloud computing, this straightforward, plain-English guide clears up the confusion and helps you get your plan in place.</br>
You'll learn how cloud computing enables you to run a more green IT infrastructure, and access technology-enabled services from the Internet ("in the cloud") without having to understand, manage, or invest in the technology infrastructure that supports them. You'll also find out what you need to consider when implementing a plan, how to handle security issues, and more.</p>
<p class='book-author'>Judith Hurwitz, Robin Bloor, Marcia Kaufman, Fern Halper</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2009</div>
</div>
<a target="_blank" href="http://amzn.to/2jVCvKu" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://buildazure.com/2016/07/29/free-ebook-configuring-microsoft-sharepoint-hybrid-capabilities/">
<img src="https://buildazurecom.files.wordpress.com/2016/07/freeebookconfiguringmssharepointhybridcapabilities.png?w=246&h=300" alt="Configuring Microsoft SharePoint Hybrid Capabilities">
</a>
<div class="caption">
<h3 class='book-title'>Configuring Microsoft SharePoint Hybrid Capabilities</h3>
<p class='book-description'>This book is the second book in a series of SharePoint Hybrid books that cover how to configure, troubleshoot, and manage a SharePoint Hybrid environment.</p>
<p class='book-author'>Jeremy Taylor, Neil Hodgkinson, Manas Biswas</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="https://buildazure.com/2016/07/29/free-ebook-configuring-microsoft-sharepoint-hybrid-capabilities/" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://buildazure.com/2016/12/07/free-ebook-containerized-docker-application-lifecycle-with-microsoft-platform-and-tools/">
<img src="https://buildazurecom.files.wordpress.com/2016/12/ebook_msdockerapplifecycle.png?w=476&h=600" alt="Containerized Docker Application Lifecycle with Microsoft Platform and Tools">
</a>
<div class="caption">
<h3 class='book-title'>Containerized Docker Application Lifecycle with Microsoft Platform and Tools</h3>
<p class='book-description'>If you're new to Docker, it's recommended to start reading this book from the beginning as it covers the fundamental Docker terms, including containers, images, registry, clusters, orchestrators, and Docker itself. However, if you're already familiar with Docker, and just want to know what tools Microsoft has to offer, you can skip on to the "Introduction to the Microsoft platform and tools for Containerized Applications" and continue from there.</p>
<p class='book-author'>Cesar de la Torre</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="https://buildazure.com/2016/12/07/free-ebook-containerized-docker-application-lifecycle-with-microsoft-platform-and-tools/" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://buildazure.com/2016/09/22/free-ebook-creating-mobile-apps-with-xamarin-forms/">
<img src="https://buildazurecom.files.wordpress.com/2016/07/freeebookcreatemobileappsxamarinforms.png?w=246&h=300" alt="Creating Mobile Apps with Xamarin.Forms">
</a>
<div class="caption">
<h3 class='book-title'>Creating Mobile Apps with Xamarin.Forms</h3>
<p class='book-description'>A deep dive for C# developers who want to write applications that target the 3 most popular mobile platforms: iOS, Android, and Windows! This free eBook has been made available by Microsoft Press and will definitely be a go-to guide on building Mobile Apps with Xamarin.Forms for any developer new to the Xamarin platform, or even for the more experienced looking for a deeper dive to learn more.</p>
<p class='book-author'>Charles Petzold</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2015</div>
</div>
<a target="_blank" href="https://buildazure.com/2016/09/22/free-ebook-creating-mobile-apps-with-xamarin-forms/" class="btn btn-primary" role="button">Download</a>
<a target="_blank" href="http://amzn.to/2iEURzC" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://buildazure.com/2016/12/16/free-ebook-data-science-with-microsoft-sql-server-2016/">
<img src="https://buildazurecom.files.wordpress.com/2016/12/ebook-datasciencemssqlserver2016.png?w=360&h=600" alt="Data Science with Microsoft SQL Server 2016">
</a>
<div class="caption">
<h3 class='book-title'>Data Science with Microsoft SQL Server 2016</h3>
<p class='book-description'>It's a new world of Big Data and Data Science. SQL Server 2016 was built for this brand new world to help businesses get ahead. This free ebook helps you learn to install, configure, and use Microsoft SQL Server R Services in data science projects. R has become one of the worlds most popular, powerful data analytics languages and environments by data scientists today!</p>
<p>
<p class='book-author'>Buck Woody, Danielle Dean, Debraj GuhaThakurta, Gagan Bansal, Matt Conners, Wee-Hyong Tok</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="https://buildazure.com/2016/12/16/free-ebook-data-science-with-microsoft-sql-server-2016/" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://buildazure.com/2017/01/04/free-ebook-defending-the-new-perimeter-modern-security-from-microsoft/">
<img src="https://buildazurecom.files.wordpress.com/2017/01/free_ebook_defendingthenewperimeter.png?w=462&h=600" alt="Defending the New Perimeter">
</a>
<div class="caption">
<h3 class='book-title'>Defending the New Permimeter: Modern Security from Microsoft</h3>
<p class='book-description'>A guide to the Microsoft Cybersecurity Stack for IT Decision Makers written by Pete Zerger and Wes Kroesbergen. The book discusses topics such as: Identifying Threats at Scale, Leveraging Identity as a Gateway, and Protecting the Modern Perimeter.</p>
<p class='book-author'>Pete Zerger, Wes Kroesbergen</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="https://buildazure.com/2017/01/04/free-ebook-defending-the-new-perimeter-modern-security-from-microsoft/" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2j5jq4h">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B01GGQKXOE&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Effective DevOps: Building a Culture of Collaboration, Affinity, and Tooling at Scale</h3>
<p class='book-description'>Some companies think that adopting devops means bringing in specialists or a host of new tools. With this practical guide, you’ll learn why devops is a professional and cultural movement that calls for change from inside your organization. Authors Katherine Daniels and Jennifer Davis provide several approaches for improving collaboration within teams, creating affinity among teams, promoting efficient tool usage in your company, and scaling up what works throughout your organization’s inflection points.</p>
<p class='book-author'>Jennifer Davis, Katherine Daniels</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="http://amzn.to/2j5jq4h" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://buildazure.com/2016/01/25/enterprise-cloud-strategy-free-ebook/">
<img src="https://buildazurecom.files.wordpress.com/2016/01/ebook-enterprisecloudstrategy.jpg" alt="Enterprise Cloud Strategy">
</a>
<div class="caption">
<h3 class='book-title'>Enterprise Cloud Strategy</h3>
<p class='book-description'>Enterprise Cloud Strategy outlines the benefits Enterprises can realize from adoption Microsoft Azure and the Cloud. Based on the authors real world experience they describe the details necessary to answer the most common questions Enterprises have on moving to the cloud.</p>
<p class='book-author'>Barry Briggs, Eduardo Kassner</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="https://buildazure.com/2016/01/25/enterprise-cloud-strategy-free-ebook/" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2km5FiV">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=150930066X&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Exam Ref 70-346 Managing Office 365 Identities and Requirements</h3>
<p class='book-description'>Prepare for Microsoft Exam 70-346--and demonstrate your real-world mastery of the skills needed to provision, manage, monitor, and troubleshoot Microsoft Office 365 identities and cloud services. Designed for experienced IT pros ready to advance their status, Exam Ref focuses on the critical-thinking and decision-making acumen needed for success at the MCSA level.</p>
<p class='book-author'>Orin Thomas</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2015</div>
</div>
<a target="_blank" href="http://amzn.to/2km5FiV" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2km1Eep">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=1509300678&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Exam Ref 70-347 Enabling Office 365 Services</h3>
<p class='book-description'>Prepare for Microsoft Exam 70-347--and help demonstrate your real-world mastery of the skills needed to help securely and efficiently provide Microsoft Office 365 services in any environment. Designed for experienced IT pros ready to advance their status, Exam Ref focuses on the critical-thinking and decision-making acumen needed for success at the MCSA level.</p>
<p class='book-author'>Orin Thomas</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2015</div>
</div>
<a target="_blank" href="http://amzn.to/2km1Eep" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2uFeBWM">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=1509304592&Format=_SL160_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20" />
</a>
<div class="caption">
<h3 class='book-title'>Exam Ref 70-532 Developing Microsoft Azure Solutions (2nd Edition)</h3>
<p class='book-description'>The Exam Ref is the official study guide for Microsoft certification exams. Featuring concise, objective-by-objective reviews and strategic case scenarios and Thought Experiments, exam candidates get professional-level preparation for the exam. The Exam Ref helps candidates maximize their performance on the exam and sharpen their job-role skills. It organizes material by the exam's objective domains. This book helps professionals prepare for Microsoft Exam 70-532--and demonstrate real-world mastery of Microsoft Azure solution development. Designed for experienced developers ready to advance their status, Exam Ref focuses on the critical-thinking and decision-making acumen needed for success at the Microsoft Specialist level.</p>
<p class='book-author'>Zoiner Tejada, Michele Leroux Bustamanta, Ike Ellis</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2018</div>
</div>
<a target="_blank" href="http://amzn.to/2uFeBWM" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2DG4d4y">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=150930648X&Format=_SL160_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20" >
</a>
<div class="caption">
<h3 class='book-title'>Exam Ref 70-533 Implementing Microsoft Azure Infrastructure Solutions (2nd Edition)</h3>
<p class='book-description'>The Exam Ref is the official study guide for Microsoft certification exams. Featuring concise, objective-by-objective reviews and strategic case scenarios and Thought Experiments, exam candidates get professional-level preparation for the exam. The Exam Ref helps candidates maximize their performance on the exam and sharpen their job-role skills. It organizes material by the exam's objective domains.</p>
<p class='book-author'>Michael Washam, Dan Patrick, Steve Ross, Rick Rainey</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2018</div>
</div>
<a target="_blank" href="http://amzn.to/2DG4d4y" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2GqDY3I">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=1509304681&Format=_SL160_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20" >
</a>
<div class="caption">
<h3 class='book-title'>Exam Ref 70-535 Architecting Microsoft Azure Solutions</h3>
<p class='book-description'>The Exam Ref is the official study guide for Microsoft certification exams. Featuring concise, objective-by-objective reviews and strategic case scenarios and Thought Experiments, exam candidates get professional-level preparation for the exam. The Exam Ref helps candidates maximize their performance on the exam and sharpen their job-role skills. It organizes material by the exam's objective domains. This Exam Ref is a complete guide for the 70-535 exam covering architecting cloud solutions on Azure including all aspects of designing and creating a strategy for a complete solution leveraging the Microsoft Azure Cloud. This includes Azure Resource Manager (ARM) templates, Networking, Security, application storage and data access, advanced applications, web and mobile apps, compute infrastructure, and managing, monitoring and creating a business continuity strategy.</p>
<p class='book-author'>Haishi Bai, Steve Maier, Dan Stolts</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2018</div>
</div>
<a target="_blank" href="http://amzn.to/2GqDY3I" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2qv3GuY">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=1509304916&Format=_SL160_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Exam Ref 70-762: Developing SQL Databases</h3>
<p class='book-description'>Prepare for Microsoft Exam 70-762, Developing SQL Databases –and help demonstrate your real-world mastery of skills for building and implementing databases across organizations. Designed for database professionals who build and implement databases across organizations and who ensure high levels of data availability, Exam Ref focuses on the critical-thinking and decision-making acumen needed for success at the MCSA level.</p>
<p class='book-author'>Louis Davidson, Stacia Varga</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2017</div>
</div>
<a target="_blank" href="http://amzn.to/2qv3GuY" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2rsyvW1">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=1509306471&Format=_SL160_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20" />
</a>
<div class="caption">
<h3 class='book-title'>Exam Ref 70-767: Implementing a SQL Data Warehouse</h3>
<p class='book-description'>Direct from Microsoft, this Exam Ref is the official study guide for the new Microsoft 70-767 Implementing a SQL Data Warehouse certification exam.
Exam Ref 70-767 Implementing a SQL Data Warehouse offers professional-level preparation that helps candidates maximize their exam performance and sharpen their skills on the job. It focuses on the specific areas of expertise modern IT professionals need to successfully build modern data warehouses to support advanced business intelligence solutions.</p>
<p class='book-author'>Jose Chinchilla</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2017</div>
</div>
<a target="_blank" href="http://amzn.to/2rsyvW1" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2qqouEv">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=1509305157&Format=_SL160_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20" >
</a>
<div class="caption">
<h3 class='book-title'>Exam Ref 70-768: Developing SQL Data Models</h3>
<p class='book-description'>Prepare for Microsoft Exam 70-768–and help demonstrate your real-world mastery of Business Intelligence (BI) solutions development with SQL Server 2016 Analysis Services (SSAS), including modeling and queries. Designed for experienced IT professionals ready to advance their status, Exam Ref focuses on the critical thinking and decision-making acumen needed for success at the MCSA level.</p>
<p class='book-author'>Stacia Varga</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2017</div>
</div>
<a target="_blank" href="http://amzn.to/2qqouEv" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2jODLyG">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B00VR8W9O4&Format=_SL160_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Hardening Azure Applications</h3>
<p class='book-description'>Learn what it takes to build large scale, mission critical applications -hardened applications- on the Azure cloud platform.</p>
<p class='book-author'>Suren Machiraju, Suraj Gaurav</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2015</div>
</div>
<a target="_blank" href="http://amzn.to/2jODLyG" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2eZ4isx">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B01N3TSDVW&Format=_SL160_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Implementing Operations Management Suite: A Practical Guide to OMS, Azure Site Recovery, and Azure Backup</h3>
<p class='book-description'>Learn how to protect, back up, recover, and monitor your data and infrastructure in the cloud with Microsoft's Operations Management Suite (OMS), Azure Backup, and Azure Site Recovery. Implementing Operations Management Suite starts with an overview of the Operations Management Suite, followed by an introduction to Azure virtual machines and virtual networks. Chapters cover Azure Backup and how to configure it, followed by deep dives into aspects of Azure Site Recovery (ASR): how it works, how to configure it, how to streamline your disaster recovery failover from on-premises to Azure, and so on. Learn about protection groups, how to perform planned and unplanned failover, and more.</p>
<p class='book-author'>Peter De Tender</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="http://amzn.to/2eZ4isx" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2jSi7JZ">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=1491924357&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Infrastructure as Code: Managing Servers in the Cloud</h3>
<p class='book-description'>Virtualization, cloud, containers, server automation, and software-defined networking are meant to simplify IT operations. But many organizations adopting these technologies have found that it only leads to a faster-growing sprawl of unmanageable systems. This is where infrastructure as code can help. With this practical guide, author Kief Morris of ThoughtWorks shows you how to effectively use principles, practices, and patterns pioneered through the DevOps movement to manage cloud age infrastructure.</p>
<p class='book-author'>Kief Morris</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="http://amzn.to/2jSi7JZ" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2j34ByN">
<img src="https://images-na.ssl-images-amazon.com/images/I/51jlO3TjABL.jpg" alt="Introducing Microsoft Azure HDInsight">
</a>
<div class="caption">
<h3 class='book-title'>Introducing Microsoft Azure HDInsight</h3>
<p class='book-description'>Microsoft Azure HDInsight is Microsoft's 100 percent compliant distribution of Apache Hadoop on Microsoft Azure. This means that standard Hadoop concepts and technologies apply, so learning the Hadoop stack helps you learn the HDInsight service. At the time of this writing, HDInsight (version 3.0) uses Hadoop version 2.2 and Hortonworks Data Platform 2.0.</p>
<p class='book-author'>Avkash Chauhan, Valentine Fontama, Michele Hart, Wee Hyong Tok, Buck Woody</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2014</div>
</div>
<a target="_blank" href="http://amzn.to/2j34ByN" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://buildazure.com/2016/08/12/free-ebook-introducing-microsoft-power-bi/">
<img src="https://buildazurecom.files.wordpress.com/2016/07/freeebookintromspowerbi.png?w=246&h=300" alt="Introducing Microsoft Power BI">
</a>
<div class="caption">
<h3 class='book-title'>Introducing Microsoft Power BI</h3>
<p class='book-description'>Want to get started with Power BI, but don't know where to start? The "Introducing Microsoft Power BI" free eBook from Microsoft Press may be the guide you've been looking for. This book covers the basics of Power BI as well as a practical, scenario-based tour of Power BI. Using this book you can get an overview of PowerBI, or dig deeper and follow along with the many examples throughout the book.</p>
<p class='book-author'>Alberto Ferrari, Marco Russo</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="https://buildazure.com/2016/08/12/free-ebook-introducing-microsoft-power-bi/" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="https://www.manning.com/books/learn-azure-in-a-month-of-lunches">
<img border="0" src="https://images.manning.com/720/960/resize/book/5/cd794a1-1cc3-45f4-a5d0-5bb849cad246/Foulds_Azure_meaphires.png"/>
</a>
<div class="caption">
<h3 class='book-title'>Learn Azure in a Month of Lunches</h3>
<p class='book-description'>You don't need to learn EVERYTHING about Azure to do some incredible stuff. Learn Azure in a Month of Lunches gets you started by breaking down the most important concepts and tasks into 21 bite-sized lessons, complete with examples, exercises, and labs.</p>
<p class='book-author'>Iain Foulds</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">PAID</div>
<div class="col-lg-12 book-year">2018</div>
</div>
<a target="_blank" href="https://www.manning.com/books/learn-azure-in-a-month-of-lunches" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2jVuhSu">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=1617294160&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Learn Windows PowerShell in a Month of Lunches</h3>
<p class='book-description'>Learn Windows PowerShell in a Month of Lunches, Third Edition is an innovative tutorial designed for busy IT professionals. This updated edition covers PowerShell features that run on Windows 7, Windows Server 2008 R2 and later, PowerShell v3 and later, and includes v5 features like PowerShellGet.</p>
<p class='book-author'>Donald W. Jones, Jeffrey Hicks</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="http://amzn.to/2jVuhSu" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2jQWgmv">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B015Q7I3M8&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Learning Azure DocumentDB</h3>
<p class='book-description'>Get to know the concepts of DocumentDB and learn to work your way around it. Manipulate and query your documents using different modern technologies to access DocumentDB. Build a real-life scenario using Microsoft Visual Studio and C# with this handy and practical guide</p>
<p class='book-author'>Riccardo Becker</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2015</div>
</div>
<a target="_blank" href="http://amzn.to/2jQWgmv" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2kSBcfn">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B00WX6IINU&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Managing Agile Open-Source Software Projects with Visual Studio Online (Developer Reference)</h3>
<p class='book-description'>With this ebook, the ALM Rangers share their best practices in managing solution requirements and shipping solutions in an agile environment, an environment where transparency, simplicity, and trust prevail. The ebook is for Agile development teams and their Scrum Masters who want to explore and learn from the authors’ “dogfooding” experiences and their continuous adaptation of software requirements management. Product Owners and other stakeholders will also find value in this ebook by learning how they can support their Agile development teams and by gaining an understanding of the constraints of open-source community projects.</p>
<p class='book-author'>Brian Blackman, Gordon Beeming, Michael Fourie, Willy-Peter Schaub</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 text-success book-price">FREE</div>
<div class="col-lg-12 book-year">2015</div>
</div>
<a target="_blank" href="http://amzn.to/2kSBcfn" class="btn btn-primary" role="button">Download</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2GpbjfN">
<img border="0" src="//ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=1788839048&Format=_SL160_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20" >
</a>
<div class="caption">
<h3 class='book-title'>Mastering Blockchain (Second Edition)</h3>
<p class='book-description'>Blockchain is a distributed database that enables permanent, transparent, and secure storage of data. The blockchain technology is the backbone of cryptocurrency - in fact, it's the shared public ledger upon which the entire Bitcoin network relies - and it's gaining popularity with people who work in finance, government, and the arts. Mastering Blockchain, Second Edition has been fully updated and revised to provide a detailed description of this leading technology and its implementation in the real world.</p>
<p class='book-author'>Imran Bashir</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2018</div>
</div>
<a target="_blank" href="http://amzn.to/2GpbjfN" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2jL4xWC">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B01KSYXG5S&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Mastering Identity and Access Management with Microsoft Azure</h3>
<p class='book-description'>Microsoft Azure and its Identity and Access Management is at the heart of Microsoft’s Software as a Service, including Office 365, Dynamics CRM, and Enterprise Mobility Management. It is an essential tool to master in order to effectively work with the Microsoft Cloud. Through practical, project based learning this book will impart that mastery.</p>
<p class='book-author'>Jochen Nickel</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2016</div>
</div>
<a target="_blank" href="http://amzn.to/2jL4xWC" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2jOLjBg">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B015PQPA4Y&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Microservices, IoT, and Azure: Leveraging DevOps and Microservice Architecture to deliver SaaS Solutions</h3>
<p class='book-description'>This book provides practical guidance for adopting a high velocity, continuous delivery process to create reliable, scalable, Software-as-a-Service (SaaS) solutions that are designed and built using a microservice architecture, deployed to the Azure cloud, and managed through automation. Microservices, IoT, and Azure offers software developers, architects, and operations engineers’ step-by-step directions for building SaaS applications—applications that are available 24x7, work on any device, scale elastically, and are resilient to change--through code, script, exercises, and a working reference implementation.</p>
<p class='book-author'>Bob Familiar</p>
<p class='book-links'>
<div class='pull-right book-published'>
<div class="col-lg-12 book-price">PAID</div>
<div class="col-lg-12 book-year">2015</div>
</div>
<a target="_blank" href="http://amzn.to/2jOLjBg" class="btn btn-primary" role="button">Buy it</a>
</p>
</div>
</div>
</div>
<div class="col-sm-5 col-md-3 book">
<div class="thumbnail">
<a target="_blank" href="http://amzn.to/2jShhgl">
<img border="0" src="https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=0672337495&Format=_SL250_&ID=AsinImage&MarketPlace=US&ServiceVersion=20070822&WS=1&tag=build00c-20"/>
</a>
<div class="caption">
<h3 class='book-title'>Microservices with Docker on Microsoft Azure</h3>
<p class='book-description'>Microservice-based applications enable unprecedented agility and ease of management, and Docker containers are ideal for building them. Microsoft Azure offers all the foundational technology and higher-level services you need to develop and run any microservices application. Microservices with Docker on Microsoft Azure brings together essential knowledge for creating these applications from the ground up, or incrementally deconstructing monolithic applications over time. </p>
<p class='book-author'>Boris Scholl, Trent Swanson, Daniel Fernandez</p>