-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
1361 lines (1167 loc) · 60.5 KB
/
blog.html
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 class="sticky-header-reveal">
<head>
<!-- Basic -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Welcome to Urs Rüegg Blog to get digitally inspired</title>
<meta name="keywords" content="Urs Rüegg | Website" />
<meta name="description"
content="Welcome to my digital passion blog to get inspired in «The Art of Possible» and the «Digital Infinity» using Microsoft Cloud services.">
<meta name="copyright" content="© Copyright 2025 by Urs Rüegg. All Rights Reserved." />
<meta name="author" content="Urs Rüegg">
<meta name="contact" content="urs.ruegg@microsoft.com">
<meta name="og:title" property="og:title"
content="Welcome to my digital passion blog to get inspired in «The Art of Possible» and the «Digital Infinity» using Microsoft Cloud services.">
<meta name="twitter:card"
content="Welcome to my digital passion blog to get inspired in «The Art of Possible» and the «Digital Infinity» using Microsoft Cloud services.">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://www.ursruegg.com/">
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no">
<!-- Web Fonts -->
<link id="googleFonts" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap"
rel="stylesheet" type="text/css">
<!-- Vendor CSS -->
<link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="vendor/fontawesome-free/css/all.min.css">
<link rel="stylesheet" href="vendor/animate/animate.compat.css">
<link rel="stylesheet" href="vendor/simple-line-icons/css/simple-line-icons.min.css">
<link rel="stylesheet" href="vendor/owl.carousel/assets/owl.carousel.min.css">
<link rel="stylesheet" href="vendor/owl.carousel/assets/owl.theme.default.min.css">
<link rel="stylesheet" href="vendor/magnific-popup/magnific-popup.min.css">
<!-- Theme CSS -->
<link rel="stylesheet" href="css/theme.css">
<link rel="stylesheet" href="css/theme-elements.css">
<link rel="stylesheet" href="css/theme-blog.css">
<link rel="stylesheet" href="css/theme-shop.css">
<!-- Revolution Slider CSS -->
<link rel="stylesheet" href="vendor/rs-plugin/css/settings.css">
<link rel="stylesheet" href="vendor/rs-plugin/css/layers.css">
<link rel="stylesheet" href="vendor/rs-plugin/css/navigation.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/ursruegg.css">
<!-- Skin CSS -->
<link id="skinCSS" rel="stylesheet" href="css/skin-ursruegg.css">
<!-- Theme Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<!-- Head Libs -->
<script src="vendor/modernizr/modernizr.min.js"></script>
</head>
<body>
<div class="body">
<!-- Header -->
<header id="header" class="header-floating-bar header-floating-bar-static-sticky"
data-plugin-options="{'stickyEnabled': true, 'stickyEffect': 'reveal', 'stickyEnableOnBoxed': true, 'stickyEnableOnMobile': false, 'stickyStartAt': 0, 'stickySetTop': '0px', 'stickyChangeLogo': false}">
<div class="header-body bg-color-dark box-shadow-none">
<div class="header-container header-container-height-sm container">
<div class="header-row">
<div class="header-column">
<div class="header-row">
<div class="header-logo">
<a href="index.html">
<img alt="ursruegg | Website" width="40" height="40"
src="img/logos/ursruegg_icon_180x180.png">
</a>
</div>
</div>
</div>
<!-- Navigation -->
<div class="header-column justify-content-end me-lg-4">
<div class="header-row">
<div
class="header-nav header-nav-links header-nav-dropdowns-dark header-nav-force-light-text header-nav-force-light-text-active-skin-color order-2 order-lg-1">
<div
class="header-nav-main header-nav-main-mobile-dark header-nav-main-dropdown-no-borders header-nav-main-clone-items header-nav-main-slide header-nav-main-square header-nav-main-effect-2 header-nav-main-sub-effect-1">
<nav class="collapse">
<ul class="nav nav-pills" id="mainNav">
<li>
<a class="nav-link" href="index.html">
Home
</a>
</li>
<li>
<a class="nav-link" href="blog.html">
Blog
</a>
</li>
<li>
<a class="nav-link" href="search.html">
Search
</a>
</li>
</ul>
</nav>
</div>
<a class="btn btn-primary btn-join-now text-uppercase custom-font-weight-medium d-none d-lg-flex"
href="aboutme.html">About Me</a>
<button class="btn header-btn-collapse-nav" data-bs-toggle="collapse"
data-bs-target=".header-nav-main nav">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div role="main" class="main">
<!-- Container 1 - Intro -->
<section class="section section-no-border section-light custom-padding-top-1 mb-0">
<div class="container">
<div class="col-md-12 align-self-center order-1">
<ul class="breadcrumb d-block text-center">
<li><a href="../index.html">Home</a></li>
<li class="active">Blog</li>
</ul>
</div>
<div class="row mt-4">
<div class="col">
<h1 class="font-weight-bold text-color-primary mb-0">Get digitally inspired</h1>
<h4 class="font-weight-bold text-color-quaternary">Check out our latest news!</h4>
<p>Welcome to my digital passion blog to get inspired in <strong>«The Art of
Possible»</strong> and the <strong>«Digital Infinity»</strong> using Microsoft Cloud
services.</p>
<p>Since 2000 I was leading and delivering more than 25 Customer Engagement, 12 Custom
Development and 8 Infrastructure projects and now back at Microsoft to inspire and drive
our Customer’s Digital Transformation Journey.</p>
</div>
</div>
</div>
</section>
<!-- Container 2 - Section -->
<section class="section section-tertiary section-no-border m-0">
<div class="container py-2">
<!-- Combination Filter selection -->
<div id="combinationFilters" class="filters mb-5">
<div class="row">
<div class="col-lg-6">
<h5 class="text-uppercase mb-3">Filter By Category:</h5>
<ul class="nav nav-pills sort-source sort-source-style-3 portfolio-filter-group"
data-filter-group="group1">
<li data-option-value="" class="nav-item active"><a class="nav-link text-2-5 active"
href="#">Show All</a></li>
<li class="nav-item" data-option-value=".digital"><a class="nav-link text-2-5 "
href="#">Digital</a></li>
<li class="nav-item" data-option-value=".development"><a class="nav-link text-2-5 "
href="#">Development</a></li>
<li class="nav-item" data-option-value=".robotics"><a class="nav-link text-2-5 "
href="#">Robotics</a></li>
<li class="nav-item" data-option-value=".mixedreality"><a class="nav-link text-2-5 "
href="#">Mixed Reality</a></li>
<li class="nav-item" data-option-value=".smartfactory"><a class="nav-link text-2-5 "
href="#">Smart Factory</a></li>
</ul>
</div>
<div class="col-lg-6">
<h5 class="text-uppercase mb-3">Filter By Product:</h5>
<ul class="nav nav-pills sort-source sort-source-style-3 portfolio-filter-group"
data-filter-group="group2">
<li data-option-value="" class="nav-item active"><a class="nav-link text-2-5 active"
href="#">Show All</a></li>
<li class="nav-item" data-option-value=".ai"><a class="nav-link text-2-5"
href="#">AI</a></li>
<li class="nav-item" data-option-value=".azure"><a class="nav-link text-2-5"
href="#">Azure</a>
</li>
<li class="nav-item" data-option-value=".dynamics"><a class="nav-link text-2-5 "
href="#">Dynamics</a></li>
<li class="nav-item" data-option-value=".iot"><a class="nav-link text-2-5 "
href="#">IoT</a>
</li>
<li class="nav-item" data-option-value=".powerplatform"><a
class="nav-link text-2-5 " href="#">Power Platform</a></li>
</ul>
</div>
</div>
</div>
<div class="sort-destination-loader sort-destination-loader-showing">
<div class="row portfolio-list">
<!-- List of all blog posts -->
<!-- Blog post article Jasmin's CUBOTino Project -->
<div class="col-sm-4 isotope-item ai robotics development digital">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogJasminsCUBOTinoProject.html">
<img src="/img/digital/JasminsCubotinoProject/JasminsCubotinoProjectBanner.jpeg"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="The project was developed as part of the Future Day at the Microsoft Innovation Hub Zurich. Jasmin was excited about the idea of building her own robot. The project gives Jasmin the opportunity to gain hands-on experience in robotics, programming, and 3D printing." />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">6</span>
<span class="month">Dec</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogJasminsCUBOTinoProject.html">Jasmin's CUBOTino Project</a></h2>
<p>The project was developed as part of the Future Day at the Microsoft Innovation Hub Zurich. Jasmin was excited about the idea of building her own robot. The project gives Jasmin the opportunity to gain hands-on experience in robotics, programming, and 3D printing.<br>
[...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Digital</a>,
<a href="#">Development</a>,
<a href="#">Robotics</a>,
<a href="#">AI</a>
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogJasminsCUBOTinoProject.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Jasmin's CUBOTino Project Step 2 - Order the CUBOTino connection board -->
<div class="col-sm-4 isotope-item ai robotics development digital">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogJasminsCUBOTinoProjectOrderingConnectionBoard.html">
<img src="/img/digital/JasminsCubotinoProject/JLCPCBAddGerberFiles.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="The project was developed as part of the Future Day at the Microsoft Innovation Hub Zurich. Jasmin was excited about the idea of building her own robot. The project gives Jasmin the opportunity to gain hands-on experience in robotics, programming, and 3D printing." />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">6</span>
<span class="month">Dec</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogJasminsCUBOTinoProjectOrderingConnectionBoard.html">Jasmin's CUBOTino Project</a></h2>
<p>Step 2 - Order the CUBOTino connection board.<br>
[...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Digital</a>,
<a href="#">Development</a>,
<a href="#">Robotics</a>,
<a href="#">AI</a>
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogJasminsCUBOTinoProjectOrderingConnectionBoard.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Jasmin's CUBOTino Project Step 3 - Installing the Raspberry Pi Zero 2 -->
<div class="col-sm-4 isotope-item ai robotics development digital">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogJasminsCUBOTinoProjectRaspberryPiZero2Installation.html">
<img src="/img/digital/JasminsCubotinoProject/RaspberryPiSetup01.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="The project was developed as part of the Future Day at the Microsoft Innovation Hub Zurich. Jasmin was excited about the idea of building her own robot. The project gives Jasmin the opportunity to gain hands-on experience in robotics, programming, and 3D printing." />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">6</span>
<span class="month">Dec</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogJasminsCUBOTinoProjectRaspberryPiZero2Installation.html">Jasmin's CUBOTino Project</a></h2>
<p>Step 3 - Installing the Raspberry Pi Zero 2.<br>
We use the simplified installation using the GitHub repository. This method is not only easier and faster, but also makes it easier to update the robot when newer updates are available on GitHub. [...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Digital</a>,
<a href="#">Development</a>,
<a href="#">Robotics</a>,
<a href="#">AI</a>
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogJasminsCUBOTinoProjectRaspberryPiZero2Installation.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Jasmin's CUBOTino Project Step 5 - Print 3D Parts -->
<div class="col-sm-4 isotope-item ai robotics development digital">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogJasminsCUBOTinoProjectPrint3DParts.html">
<img src="/img/digital/JasminsCubotinoProject/3DPrintedPartsTopView.jpg"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="The project was developed as part of the Future Day at the Microsoft Innovation Hub Zurich. Jasmin was excited about the idea of building her own robot. The project gives Jasmin the opportunity to gain hands-on experience in robotics, programming, and 3D printing." />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">6</span>
<span class="month">Dec</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogJasminsCUBOTinoProjectPrint3DParts.html">Jasmin's CUBOTino Project</a></h2>
<p>Step 5 - Print 3D Parts.<br>
We need to 3D print several parts for the CUBOTino project. All the necessary 3D parts for the CUBOTino project are available in the GitHub Repository. You can download the STL files from there.[...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Digital</a>,
<a href="#">Development</a>,
<a href="#">Robotics</a>,
<a href="#">AI</a>
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogJasminsCUBOTinoProjectPrint3DParts.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Use Azure Custom Vision for Factory Visitor PPE check -->
<div class="col-sm-4 isotope-item ai azure development digital dynamics powerplatform">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogUseAzureCustomVisionForFactoryVisitorPPECheck.html">
<img src="/img/digital/VisitorManagement/SwissSmartFactoryVisitorSelfRegistrationAppScreen06SafeWorkResult.PNG"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="Use AI Vision to check if visitors are wearing the required personal protective equipment (PPE) before they are entering the factory." />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">20</span>
<span class="month">May</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogUseAzureCustomVisionForFactoryVisitorPPECheck.html">Use Azure Custom Vision for Factory Visitor PPE check</a></h2>
<p>«Use AI Vision to check if visitors are wearing the required personal protective equipment (PPE) before they are entering the factory»<br>
This tutorial will guide you through the steps of setting up a visitor management system that uses Azure Custom Vision service to check if visitors are wearing the required personal protective equipment (PPE) in a factory environment.
[...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Digital</a>,
<a href="#">Development</a>,
<a href="#">Smart Factory</a>,
<a href="#">AI</a>,
<a href="#">Azure</a>,
<a href="#">Power Platform</a>
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogUseAzureCustomVisionForFactoryVisitorPPECheck.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Smart Email intake using AI models to analyze and route -->
<div class="col-sm-4 isotope-item ai azure development digital dynamics powerplatform">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogSmartEmailIntakeStep5ExtendAutomaticallyCreateCaseFlow.html">
<img src="img/digital/CaseManagement/AutomaticRecordCreationEmailToCase_15_550.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="Recently we have had five different customer engaged at our Microsoft Technology Center targeting similar challenges with a common pattern to enable smart Email intake to analyze, route and response. During a sequence workshops staring with envisioning to identify and validate the business value, a architecture design workshop to design the solution and establish a sandbox environment for the follow-up Hackathon to implement the solution within the customer environment." />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">7</span>
<span class="month">Jan</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogSmartEmailIntakeStep5ExtendAutomaticallyCreateCaseFlow.html">Smart Email intake. <br>Step 5 Extend Automatically create Case flow with AI Builder models</a></h2>
<p>Now we can extend the standard out-of-the-box flow to analyze the content. We need to detect the Language of the Email content.
[...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Azure</a>,
<a href="#">AI</a>,
<a href="#">Digital</a>,
<a href="#">Dynamics</a>,
<a href="#">Power Platform</a>,
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogSmartEmailIntakeStep5ExtendAutomaticallyCreateCaseFlow.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Smart Email intake using AI models to analyze and route -->
<div class="col-sm-4 isotope-item ai azure development digital dynamics powerplatform">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogSmartEmailIntakeStep4AIBuilderCategoryClassification.html">
<img src="img/digital/CaseManagement/AIBuilderCreateCaseCategoryClassificationModel_15_550.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="Recently we have had five different customer engaged at our Microsoft Technology Center targeting similar challenges with a common pattern to enable smart Email intake to analyze, route and response. During a sequence workshops staring with envisioning to identify and validate the business value, a architecture design workshop to design the solution and establish a sandbox environment for the follow-up Hackathon to implement the solution within the customer environment." />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">6</span>
<span class="month">Jan</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogSmartEmailIntakeStep4AIBuilderCategoryClassification.html">Smart Email intake. <br>Step 4 AI Builder category classification custom</a></h2>
<p>The volume of text data is increasing exponentially for organizations.
Channels such as email, documents, and social media contribute increasing
amounts of text data. This data carries valuable information that—when
extracted and acted on—helps you provide better services to your customers.
[...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Azure</a>,
<a href="#">AI</a>,
<a href="#">Digital</a>,
<a href="#">Dynamics</a>,
<a href="#">Power Platform</a>,
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogSmartEmailIntakeStep4AIBuilderCategoryClassification.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Smart Email intake using AI models to analyze and route -->
<div class="col-sm-4 isotope-item ai azure development digital dynamics powerplatform">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogSmartEmailIntakeStep2AutomaticallyCreateCaseRecords.html">
<img src="img/digital/CaseManagement/TranslateCasesToTargetLanguage_01_550.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="Recently we have had five different customer engaged at our Microsoft Technology Center targeting similar challenges with a common pattern to enable smart Email intake to analyze, route and response. During a sequence workshops staring with envisioning to identify and validate the business value, a architecture design workshop to design the solution and establish a sandbox environment for the follow-up Hackathon to implement the solution within the customer environment." />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">5</span>
<span class="month">Jan</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogSmartEmailIntakeStep2AutomaticallyCreateCaseRecords.html">Smart Email intake. <br>Step 3 - Create instant flow to translate sample data</a></h2>
<p>As we want to support three languages, English, French and German to analyze the Email content, we need to have sample data for each supported language. AI Builder has a Text translation prebuilt model and we can use it to translate the Case Description into a selected target language.
[...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Azure</a>,
<a href="#">AI</a>,
<a href="#">Digital</a>,
<a href="#">Dynamics</a>,
<a href="#">Power Platform</a>,
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogSmartEmailIntakeStep2AutomaticallyCreateCaseRecords.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Smart Email intake using AI models to analyze and route -->
<div class="col-sm-4 isotope-item ai azure development digital dynamics powerplatform">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogSmartEmailIntakeStep2AutomaticallyCreateCaseRecords.html">
<img src="img/digital/CaseManagement/AutomaticRecordCreationEmailToCase_04_550.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="Recently we have had five different customer engaged at our Microsoft Technology Center targeting similar challenges with a common pattern to enable smart Email intake to analyze, route and response. During a sequence workshops staring with envisioning to identify and validate the business value, a architecture design workshop to design the solution and establish a sandbox environment for the follow-up Hackathon to implement the solution within the customer environment." />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">4</span>
<span class="month">Jan</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogSmartEmailIntakeStep2AutomaticallyCreateCaseRecords.html">Smart Email intake. Step 2 - Automatically Create Case Records</a></h2>
<p>You can automatically create or update system or custom records from incoming activities, such as emails, social activities, and custom activities. In this section, you'll learn about creating rules for automatically creating records for cases from incoming emails.
[...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Azure</a>,
<a href="#">AI</a>,
<a href="#">Digital</a>,
<a href="#">Dynamics</a>,
<a href="#">Power Platform</a>,
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogSmartEmailIntakeStep2AutomaticallyCreateCaseRecords.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Smart Email intake using AI models to analyze and route -->
<div class="col-sm-4 isotope-item ai azure development digital dynamics powerplatform">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogSmartEmailIntakeStep1CreateSolution.html">
<img src="img/digital/CaseManagement/CaseManagementSolution_02_550.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="Recently we have had five different customer engaged at our Microsoft Technology Center targeting similar challenges with a common pattern to enable smart Email intake to analyze, route and response. During a sequence workshops staring with envisioning to identify and validate the business value, a architecture design workshop to design the solution and establish a sandbox environment for the follow-up Hackathon to implement the solution within the customer environment." />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">3</span>
<span class="month">Jan</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogSmartEmailIntakeStep1CreateSolution.html">Smart Email intake. <br>Step 1 - Create Solution</a></h2>
<p>Solutions are used to transport apps and components from one environment to
another or to apply a set of customizations to existing apps. A solution can
contain one or more apps as well as other components such as site maps,
tables, processes, web resources, choices, flows, and more.
[...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Azure</a>,
<a href="#">AI</a>,
<a href="#">Digital</a>,
<a href="#">Dynamics</a>,
<a href="#">Power Platform</a>,
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogSmartEmailIntakeStep1CreateSolution.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Smart Email intake using AI models to analyze and route -->
<div class="col-sm-4 isotope-item ai azure development digital dynamics powerplatform">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogSmartEmailIntakeUsingAImodelsOverview.html">
<img src="img/digital/CaseManagement/SmartEmailIntakeUsingAImodels_550.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="Recently we have had five different customer engaged at our Microsoft Technology Center targeting similar challenges with a common pattern to enable smart Email intake to analyze, route and response. During a sequence workshops staring with envisioning to identify and validate the business value, a architecture design workshop to design the solution and establish a sandbox environment for the follow-up Hackathon to implement the solution within the customer environment." />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">2</span>
<span class="month">Jan</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogSmartEmailIntakeUsingAImodelsOverview.html">Smart Email intake using AI models to analyze and route</a></h2>
<p>Recently we have had five different customer engaged at our Microsoft Technology Center targeting similar challenges with a common pattern to enable smart Email intake to analyze, route and response. During a sequence workshops staring with envisioning to identify and validate the business value, a architecture design workshop to design the solution and establish a sandbox environment for the follow-up Hackathon to implement the solution within the customer environment.
[...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Azure</a>,
<a href="#">AI</a>,
<a href="#">Digital</a>,
<a href="#">Dynamics</a>,
<a href="#">Power Platform</a>,
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogSmartEmailIntakeUsingAImodelsOverview.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Hackathon - 5S Assessment app -->
<div class="col-sm-4 isotope-item digital smartfactory powerplatform">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogHackathon5SAssessmentApp.html">
<img src="img/digital/5SAssessment/5SWeeklyAssessmentApp_550.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="he 5S Assessment solution is a collection of three Power Apps to manage 5S methodology - Kaizen and Lean Management within an organization." />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">20</span>
<span class="month">Nov</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogHackathon5SAssessmentApp.html">Hackathon - 5S
Assessment app</a></h2>
<p>The 5S Assessment solution is a collection of three Power Apps to manage 5S
methodology - Kaizen and Lean Management within an organization. We build
this apps during a thee day Hackathon with the customer team.
[...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Digital</a>,
<a href="#">Power Platform</a>,
<a href="#">Smart Factory</a>
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogHackathon5SAssessmentApp.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article How to add Search to Azure Static Web Apps -->
<div class="col-sm-4 isotope-item development devops azure">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogAddSearchToAzureStaticWebApps.html">
<img src="img/digital/AddSearchToAzureStaticWebApps/AddSearchToAzureStaticWebApps_13_TestPublishedSearch_550.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="How to add Search to Azure Static Web Apps" />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">12</span>
<span class="month">Nov</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogAddSearchToAzureStaticWebApps.html">How to add
Search to Azure Static Web Apps</a></h2>
<p>In the previous blog we deployed a Static HTML Website with Azure
Static Web Apps. Now we extend this with custom search capabilities
to index and search the static website. We can use Bing Search or
Azure Cognitive Search.
[...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Azure</a>,
<a href="#">Digital</a>,
<a href="#">Development</a>,
<a href="#">DevOps</a>
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogAddSearchToAzureStaticWebApps.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Hosting Static HTML Website with Azure Static Web Apps -->
<div class="col-sm-4 isotope-item development devops azure">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogHostingStaticHTMLWebsiteWithAzureStaticWebApps.html">
<img src="img/digital/StaticWebsiteWithAzureStaticWebApps/ursueggcom_website_550.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="" />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">6</span>
<span class="month">Nov</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogHostingStaticHTMLWebsiteWithAzureStaticWebApps.html">Hosting
Static HTML Website with Azure Static Web Apps</a></h2>
<p>I started creating Websites with pure HTML in mid-nineties. Moved to
content management systems like Umbraco or Microsoft Power Pages.
But for static website, I would use GitHub pages in the past.
But now, since the GA of Azure Static Web Apps (SWA), I now have
another free of charge option. In this post, I'll share how I create
and deployed my own static website using SWA.
[...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Azure</a>,
<a href="#">Digital</a>,
<a href="#">Development</a>,
<a href="#">DevOps</a>
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogHostingStaticHTMLWebsiteWithAzureStaticWebApps.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Power Platform ALM using GitHub Actions -->
<div class="col-sm-4 isotope-item development devops powerplatform">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogPowerPlatformAlmUsingGithubActions.html">
<img src="img/digital/PowerPlatformALMusingGitHubActions/GitHubActions_550.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="" />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">20</span>
<span class="month">Dec</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogPowerPlatformAlmUsingGithubActions.html">Power
Platform ALM using GitHub Actions</a></h2>
<p>For Power Platform ALM we used Power Platform Build Tools for Azure
DevOps to establish continuous integration and continuous deployment
pipeline. Azure DevOps has his strengths working with internal teams
but gets challenging if you want to build app with different
externals or a community. [...]</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Digital</a>,
<a href="#">DevOps</a>,
<a href="#">Dynamics</a>,
<a href="#">Power Platform</a>,
<a href="#">Smart Factory</a>
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogPowerPlatformAlmUsingGithubActions.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Interview Augmented reality is not rocket science -->
<div class="col-sm-4 isotope-item smartfactory mixedreality dynamics hololens">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogTuWAugementedRealityInterview.html">
<img src="img/digital/InterviewAugmentedReality/InterviewAugmentedRealityUrsRuegg_550.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="Urs Rüegg from Microsoft Switzerland: HoloLens experienced a boost at the beginning of the Covid-19 pandemic, when many companies had to reduce the workforce in their factories to a minimum due to contact restrictions. (Photo: Ruben Sprich)" />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">6</span>
<span class="month">Apr</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogTuWAugementedRealityInterview.html">Interview Augmented reality is not rocket science</a></h2>
<p>Recently I’ve had the opportunity to meet Markus Back (Journalist Wissen und Technik) and Ruben Sprich (Photographer) at the Swiss Smart Factory to show how we’re using Microsoft Augmented Reality with HoloLens and Microsoft Guides to simplify trainings for all their production line demonstrators.
[...]
</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">Digital</a>,
<a href="#">Dynamics</a>,
<a href="#">Smart Factory</a>,
<a href="#">Mixed Reality</a>,
<a href="#">HoloLens</a>
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogTuWAugementedRealityInterview.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Visitor Management -->
<div class="col-sm-4 isotope-item smartfactory ai iot powerplatform mixedreality">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogHackathonVisitorManagementApp.html">
<img src="img/digital/VisitorManagement/SwissSmartFactoryVisitorManagementApps_550.png"
class="img-fluid img-thumbnail img-thumbnail-no-borders rounded-0"
alt="" />
</a>
</div>
<p></p>
<div class="post-date">
<span class="day">15</span>
<span class="month">Sep</span>
</div>
<div class="post-content">
<h2 class="font-weight-semibold text-6 line-height-3 mb-3"><a
href="../blog/blogHackathonVisitorManagementApp.html">Hackathon
- Visitor Management app</a></h2>
<p>The Visitor Management is a collection of four Power Apps to manage
smart factory visitors.
<li>Visitor Welcome Desk app located at the entry point of the
factory floor</li>
<li>Visitor Self Registration app on a tablet device</li>
<li>Visitor Management app to manage visits</li>
<li>Visitor Mixed Reality app to confirm mixed reality competency
</li>
We build this apps during a <strong>three day Hackathon</strong>
with the Swiss Smart Factory team.
[...]
</p>
<div class="post-meta">
<span><i class="far fa-user"></i> By <a href="aboutme.html">Urs
Rüegg</a> </span>
<span><i class="far fa-folder"></i>
<a href="#">AI</a>,
<a href="#">Power Platform</a>,
<a href="#">Smart Factory</a>
</span>
<span class="d-block d-sm-inline-block float-sm-end mt-3 mt-sm-0"><a
href="../blog/blogHackathonVisitorManagementApp.html"
class="btn btn-xs btn-dark text-1 text-uppercase">Read
More</a></span>
</div>
</div>
</article>
</div>
<!-- Blog post article Swiss Smart Factory -->
<div class="col-sm-4 isotope-item smartfactory azure dynamics, powerplatform iot ai">
<article class="post post-medium border-0 pb-0 mb-5">
<div class="post-image">
<a href="../blog/blogSwissSmartFactory.html">
<img src="img/digital/SmartFactory/SwissSmartFactoryPoweredByMicrosoftCloud_550.png"