-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharchives.html
More file actions
1528 lines (1474 loc) · 115 KB
/
archives.html
File metadata and controls
1528 lines (1474 loc) · 115 KB
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
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns:st1="urn:schemas-microsoft-com:office:smarttags" xmlns="http://www.w3.org/TR/REC-html40" class="fa-events-icons-ready"><head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="ProgId" content="Word.Document">
<meta name="Generator" content="Microsoft Word 12">
<meta name="Originator" content="Microsoft Word 12">
<link rel="File-List" href="https://engineering.purdue.edu/~sbagchi/archives_files/filelist.xml">
<link rel="Edit-Time-Data" href="https://engineering.purdue.edu/~sbagchi/archives_files/editdata.mso">
<script src="archives_files/b795fdd1b3.js"></script><link href="archives_files/b795fdd1b3.css" media="all" rel="stylesheet">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
<title>Archives</title>
</head><body style="tab-interval:.5in" vlink="purple" link="#D00000" lang="EN-US"><o:smarttagtype namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="place">
<o:smarttagtype namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="PlaceType">
<o:smarttagtype namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="PlaceName">
<!--[if gte mso 9]><xml>
<o:DocumentProperties>
<o:Author>Saurabh Bagchi</o:Author>
<o:LastAuthor>Saurabh Bagchi</o:LastAuthor>
<o:Revision>16</o:Revision>
<o:TotalTime>9</o:TotalTime>
<o:Created>2007-07-17T21:22:00Z</o:Created>
<o:LastSaved>2011-07-11T03:34:00Z</o:LastSaved>
<o:Pages>4</o:Pages>
<o:Words>1897</o:Words>
<o:Characters>27861</o:Characters>
<o:Company>Purdue University</o:Company>
<o:Lines>232</o:Lines>
<o:Paragraphs>59</o:Paragraphs>
<o:CharactersWithSpaces>29699</o:CharactersWithSpaces>
<o:Version>12.00</o:Version>
</o:DocumentProperties>
</xml><![endif]-->
<link rel="themeData" href="https://engineering.purdue.edu/~sbagchi/archives_files/themedata.thmx">
<link rel="colorSchemeMapping" href="https://engineering.purdue.edu/~sbagchi/archives_files/colorschememapping.xml">
<!--[if gte mso 9]><xml>
<w:WordDocument>
<w:Zoom>150</w:Zoom>
<w:SpellingState>Clean</w:SpellingState>
<w:GrammarState>Clean</w:GrammarState>
<w:TrackMoves/>
<w:TrackFormatting/>
<w:ValidateAgainstSchemas/>
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
<w:DoNotPromoteQF/>
<w:LidThemeOther>EN-US</w:LidThemeOther>
<w:LidThemeAsian>X-NONE</w:LidThemeAsian>
<w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
<w:Compatibility>
<w:BreakWrappedTables/>
<w:SnapToGridInCell/>
<w:ApplyBreakingRules/>
<w:WrapTextWithPunct/>
<w:UseAsianBreakRules/>
<w:DontGrowAutofit/>
<w:SplitPgBreakAndParaMark/>
<w:DontVertAlignCellWithSp/>
<w:DontBreakConstrainedForcedTables/>
<w:DontVertAlignInTxbx/>
<w:Word11KerningPairs/>
<w:CachedColBalance/>
<w:UseFELayout/>
</w:Compatibility>
<w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
<m:mathPr>
<m:mathFont m:val="Cambria Math"/>
<m:brkBin m:val="before"/>
<m:brkBinSub m:val="--"/>
<m:smallFrac m:val="off"/>
<m:dispDef/>
<m:lMargin m:val="0"/>
<m:rMargin m:val="0"/>
<m:defJc m:val="centerGroup"/>
<m:wrapIndent m:val="1440"/>
<m:intLim m:val="subSup"/>
<m:naryLim m:val="undOvr"/>
</m:mathPr> <u1:mathPr>
<u1:mathFont u1:val="Cambria Math"/>
<u1:brkBin u1:val="before"/>
<u1:brkBinSub u1:val="--"/>
<u1:smallFrac u1:val="off"/>
<u1:dispDef/>
<u1:lMargin u1:val="0"/>
<u1:rMargin u1:val="0"/>
<u1:defJc u1:val="centerGroup"/>
<u1:wrapIndent u1:val="1440"/>
<u1:intLim u1:val="subSup"/>
<u1:naryLim u1:val="undOvr"/>
</u1:mathPr>
</w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false"
DefSemiHidden="false" DefQFormat="false" LatentStyleCount="267">
<w:LsdException Locked="false" QFormat="true" Name="heading 3"/>
<w:LsdException Locked="false" Priority="99" Name="annotation text"/>
<w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
<w:LsdException Locked="false" Priority="99" Name="Hyperlink"/>
<w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"/>
<w:LsdException Locked="false" Priority="99" Name="Normal (Web)"/>
<w:LsdException Locked="false" Priority="99" Name="No List"/>
<w:LsdException Locked="false" Priority="99" Name="Balloon Text"/>
<w:LsdException Locked="false" Priority="99" SemiHidden="true"
Name="Placeholder Text"/>
<w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading"/>
<w:LsdException Locked="false" Priority="61" Name="Light List"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"/>
<w:LsdException Locked="false" Priority="99" SemiHidden="true" Name="Revision"/>
<w:LsdException Locked="false" Priority="34" QFormat="true"
Name="List Paragraph"/>
<w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"/>
<w:LsdException Locked="false" Priority="30" QFormat="true"
Name="Intense Quote"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"/>
<w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"/>
<w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"/>
<w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"/>
<w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"/>
<w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"/>
<w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"/>
<w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"/>
<w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"/>
<w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"/>
<w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"/>
<w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"/>
<w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"/>
<w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"/>
<w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"/>
<w:LsdException Locked="false" Priority="19" QFormat="true"
Name="Subtle Emphasis"/>
<w:LsdException Locked="false" Priority="21" QFormat="true"
Name="Intense Emphasis"/>
<w:LsdException Locked="false" Priority="31" QFormat="true"
Name="Subtle Reference"/>
<w:LsdException Locked="false" Priority="32" QFormat="true"
Name="Intense Reference"/>
<w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"/>
<w:LsdException Locked="false" Priority="37" SemiHidden="true"
UnhideWhenUsed="true" Name="Bibliography"/>
<w:LsdException Locked="false" Priority="39" SemiHidden="true"
UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"/>
</w:LatentStyles>
</xml><![endif]--><!--[if !mso]><object
classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
<style>
st1\:*{behavior:url(#ieooui) }
</style>
<![endif]-->
<style>
<!--
/* Font Definitions */
@font-face
{font-family:SimSun;
panose-1:2 1 6 0 3 1 1 1 1 1;
mso-font-alt:\5B8B\4F53;
mso-font-charset:134;
mso-generic-font-family:auto;
mso-font-format:other;
mso-font-pitch:variable;
mso-font-signature:1 135135232 16 0 262144 0;}
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;
mso-font-charset:0;
mso-generic-font-family:roman;
mso-font-pitch:variable;
mso-font-signature:-1610611985 1107304683 0 0 159 0;}
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;
mso-font-charset:0;
mso-generic-font-family:swiss;
mso-font-pitch:variable;
mso-font-signature:1627400839 -2147483648 8 0 66047 0;}
@font-face
{font-family:"\@SimSun";
mso-font-charset:134;
mso-generic-font-family:auto;
mso-font-pitch:variable;
mso-font-signature:3 135135232 16 0 262145 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-parent:"";
margin-top:3.0pt;
margin-right:0in;
margin-bottom:0in;
margin-left:0in;
margin-bottom:.0001pt;
text-align:justify;
text-justify:inter-ideograph;
text-indent:.1in;
line-height:150%;
mso-pagination:widow-orphan;
font-size:11.0pt;
mso-bidi-font-size:12.0pt;
font-family:"Times New Roman","serif";
mso-fareast-font-family:"Times New Roman";
color:windowtext;}
h3
{mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-link:"Heading 3 Char";
mso-margin-top-alt:auto;
margin-right:0in;
mso-margin-bottom-alt:auto;
margin-left:0in;
line-height:normal;
mso-pagination:widow-orphan;
mso-outline-level:3;
font-size:13.5pt;
font-family:"Times New Roman","serif";
mso-fareast-font-family:"Times New Roman";
mso-fareast-theme-font:minor-fareast;
color:black;
font-weight:bold;}
p.MsoCommentText, li.MsoCommentText, div.MsoCommentText
{mso-style-noshow:yes;
mso-style-priority:99;
mso-style-unhide:no;
mso-style-link:"Comment Text Char";
margin-top:3.0pt;
margin-right:0in;
margin-bottom:0in;
margin-left:0in;
margin-bottom:.0001pt;
text-align:justify;
text-justify:inter-ideograph;
text-indent:.1in;
line-height:150%;
mso-pagination:widow-orphan;
font-size:11.0pt;
mso-bidi-font-size:10.0pt;
font-family:"Times New Roman","serif";
mso-fareast-font-family:SimSun;
color:windowtext;
mso-fareast-language:ZH-CN;}
a:link, span.MsoHyperlink
{mso-style-priority:99;
mso-style-unhide:no;
color:#D00000;
text-decoration:no;
text-underline:none;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-unhide:no;
color:purple;
text-decoration:underline;
text-underline:single;}
p
{mso-style-priority:99;
mso-style-unhide:no;
mso-margin-top-alt:auto;
margin-right:0in;
mso-margin-bottom-alt:auto;
margin-left:0in;
line-height:150%;
mso-pagination:widow-orphan;
font-size:12.0pt;
mso-bidi-font-size:12.0pt;
font-family:"Times New Roman","serif";
mso-fareast-font-family:"Times New Roman";
color:black;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
{mso-style-priority:99;
mso-style-unhide:no;
mso-style-link:"Balloon Text Char";
margin:0in;
margin-bottom:.0001pt;
text-align:justify;
text-justify:inter-ideograph;
text-indent:.1in;
line-height:normal;
mso-pagination:widow-orphan;
font-size:8.0pt;
font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";
color:windowtext;}
span.Heading3Char
{mso-style-name:"Heading 3 Char";
mso-style-unhide:no;
mso-style-locked:yes;
mso-style-link:"Heading 3";
mso-ansi-font-size:13.5pt;
mso-bidi-font-size:13.5pt;
color:black;
font-weight:bold;}
span.CommentTextChar
{mso-style-name:"Comment Text Char";
mso-style-priority:99;
mso-style-unhide:no;
mso-style-locked:yes;
mso-style-link:"Comment Text";}
span.BalloonTextChar
{mso-style-name:"Balloon Text Char";
mso-style-priority:99;
mso-style-unhide:no;
mso-style-locked:yes;
mso-style-link:"Balloon Text";
mso-ansi-font-size:8.0pt;
mso-bidi-font-size:8.0pt;
font-family:"Tahoma","sans-serif";
mso-ascii-font-family:Tahoma;
mso-hansi-font-family:Tahoma;
mso-bidi-font-family:Tahoma;}
p.MTDisplayEquation, li.MTDisplayEquation, div.MTDisplayEquation
{mso-style-name:MTDisplayEquation;
mso-style-priority:99;
mso-style-unhide:no;
mso-style-parent:"Normal \(Web\)";
margin-top:12.0pt;
margin-right:0in;
margin-bottom:5.0pt;
margin-left:.25in;
text-indent:-.25in;
line-height:150%;
mso-pagination:widow-orphan;
mso-list:l0 level1 lfo2;
tab-stops:center 225.0pt;
font-size:14.0pt;
mso-bidi-font-size:12.0pt;
font-family:"Times New Roman","serif";
mso-fareast-font-family:"Times New Roman";
color:black;}
span.SpellE
{mso-style-name:"";
mso-spl-e:yes;}
span.GramE
{mso-style-name:"";
mso-gram-e:yes;}
.MsoChpDefault
{mso-style-type:export-only;
mso-default-props:yes;
font-size:10.0pt;
mso-ansi-font-size:10.0pt;
mso-bidi-font-size:10.0pt;}
@page WordSection1
{size:8.5in 11.0in;
margin:1.0in 1.25in 1.0in 1.25in;
mso-header-margin:.5in;
mso-footer-margin:.5in;
mso-paper-source:0;}
div.WordSection1
{page:WordSection1;}
/* List Definitions */
@list l0
{mso-list-id:256207894;
mso-list-type:hybrid;
mso-list-template-ids:-1706145184 -1355541924 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
@list l0:level1
{mso-level-style-link:MTDisplayEquation;
mso-level-tab-stop:.25in;
mso-level-number-position:left;
margin-left:.25in;
text-indent:-.25in;}
@list l0:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1
{mso-list-id:745418630;
mso-list-type:hybrid;
mso-list-template-ids:-1134541310 67698703 67698707 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
@list l1:level1
{mso-level-tab-stop:.25in;
mso-level-number-position:left;
margin-left:.25in;
text-indent:-.25in;}
@list l1:level2
{mso-level-number-format:roman-upper;
mso-level-tab-stop:.75in;
mso-level-number-position:right;
margin-left:.75in;
text-indent:-.25in;}
@list l1:level3
{mso-level-tab-stop:1.25in;
mso-level-number-position:left;
margin-left:1.25in;
text-indent:-.25in;}
@list l1:level4
{mso-level-tab-stop:1.75in;
mso-level-number-position:left;
margin-left:1.75in;
text-indent:-.25in;}
@list l1:level5
{mso-level-tab-stop:2.25in;
mso-level-number-position:left;
margin-left:2.25in;
text-indent:-.25in;}
@list l1:level6
{mso-level-tab-stop:2.75in;
mso-level-number-position:left;
margin-left:2.75in;
text-indent:-.25in;}
@list l1:level7
{mso-level-tab-stop:3.25in;
mso-level-number-position:left;
margin-left:3.25in;
text-indent:-.25in;}
@list l1:level8
{mso-level-tab-stop:3.75in;
mso-level-number-position:left;
margin-left:3.75in;
text-indent:-.25in;}
@list l1:level9
{mso-level-tab-stop:4.25in;
mso-level-number-position:left;
margin-left:4.25in;
text-indent:-.25in;}
ol
{margin-bottom:0in;}
ul
{margin-bottom:0in;}
.style2 {font-size: 14pt}
span.GramE1 {mso-style-name:"";
mso-gram-e:yes;}
span.SpellE1 {mso-style-name:"";
mso-spl-e:yes;}
span.GramE11 {mso-style-name:"";
mso-gram-e:yes;}
span.SpellE11 {mso-style-name:"";
mso-spl-e:yes;}
.style4 {
font-size: x-large;
font-weight: bold;
}
.NewsHighlight { background-color: #C93;
height: auto;
width: auto;
}
-->
</style>
<!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-qformat:yes;
mso-style-parent:"";
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin:0in;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman","serif";}
table.MsoTableContemporary
{mso-style-name:"Table Contemporary";
mso-tstyle-rowband-size:1;
mso-tstyle-colband-size:0;
mso-style-unhide:no;
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-border-insideh:2.25pt solid white;
mso-border-insidev:2.25pt solid white;
mso-para-margin:0in;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman","serif";}
table.MsoTableContemporaryFirstRow
{mso-style-name:"Table Contemporary";
mso-table-condition:first-row;
mso-style-unhide:no;
mso-tstyle-shading:white;
mso-tstyle-pattern:gray-20 black;
mso-tstyle-diagonal-down:none;
mso-tstyle-diagonal-up:none;
color:windowtext;
mso-ansi-font-weight:bold;
mso-bidi-font-weight:bold;}
table.MsoTableContemporaryOddRow
{mso-style-name:"Table Contemporary";
mso-table-condition:odd-row;
mso-style-unhide:no;
mso-tstyle-shading:white;
mso-tstyle-pattern:gray-5 black;
mso-tstyle-diagonal-down:none;
mso-tstyle-diagonal-up:none;
color:windowtext;}
table.MsoTableContemporaryEvenRow
{mso-style-name:"Table Contemporary";
mso-table-condition:even-row;
mso-style-unhide:no;
mso-tstyle-shading:white;
mso-tstyle-pattern:gray-20 black;
mso-tstyle-diagonal-down:none;
mso-tstyle-diagonal-up:none;
color:windowtext;}
</style>
<![endif]--><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026"/>
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1"/>
</o:shapelayout></xml><![endif]-->
<link href="archives_files/styles.css" rel="stylesheet">
<script src="https://unpkg.com/feather-icons"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/bulma@0.8.0/css/bulma.min.css" />
<link rel="stylesheet" href="css/news_archive_style.css" type="text/css" />
<div class="WordSection1 content-margin-30">
<p>
<a href="javascript:history.back()"> <i data-feather="chevron-left" stroke-width="4"></i></a>
<span class="style4 title" style="line-height:150%;color:blue">Archives of News Items</span>
</p>
<p class="style2"><span style="line-height:150%;color:blue">
<o:p></o:p>
</span></p>
<h3>
<strong> Legend </strong>: <span class="MsoNormal"><i class="fa fa-podcast fa-lg" aria-hidden="true"></i> Presentations </span><span class="MsoNormal"><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> Papers </span><span class="MsoNormal"><i class="fa fa-graduation-cap fa-lg" aria-hidden="true"></i> Students </span><span class="MsoNormal"><i class="fa fa-diamond fa-lg" aria-hidden="true"></i> Awards </span><span class="MsoNormal"><i class="fa fa-newspaper-o fa-lg" aria-hidden="true"></i> News </span>
</h3>
<br>
<ol>
<li>
<p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [May 2024] A productive Spring with papers in ECCV, CCS, ICDCS, DSN, S&P (magazine), Computer (magazine), ... [ <a href="https://engineering.purdue.edu/dcsl/publications-by-year/">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-graduation-cap fa-lg" aria-hidden="true"></i> [Apr 2024] Posting for Post-doctoral fellowship positions. [ <a href="https://docs.google.com/document/d/1ClUScynIkSB_V3qN9RVaTXjszN_c3FG9IAOFMgUdYO8/edit?usp=sharing">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-newspaper-o fa-lg" aria-hidden="true"></i> [Apr 2024] IEEE Spectrum article on our work on coding copilot v. autopilot. [ <a href="https://spectrum.ieee.org/ai-code-generator">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-podcast fa-lg" aria-hidden="true"></i> [Mar 2024] IPAI panel on challenges and opportunities in physical AI is here. [ <a href="https://www.purdue.edu/research/features/stories/discussion-on-shaping-ai-in-the-physical-world-features-industry-leaders/">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [Jan 2024] A good Fall bounty of papers in S&P, ICLR, TKDD (journal), ... [ <a href="https://engineering.purdue.edu/dcsl/publications-by-year/">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-newspaper-o fa-lg" aria-hidden="true"></i> [Jan 2024] My article on AI regulation is getting popular press coverage. [ <a href="https://abc3340.com/news/nation-world/balancing-innovation-and-regulation-in-ai-a-fine-scalpel-not-a-heavy-club-artificial-intelligence-purdue-university-white-house-congress-technology-feasibility">WWW</a> ] [ <a href="https://theconversation.com/reining-in-ai-means-figuring-out-which-regulation-options-are-feasible-both-technically-and-economically-216725" target="_blank">The Conversation</a> ] </p>
</li>
<li>
<p><i class="fa fa-graduation-cap fa-lg" aria-hidden="true"></i> [Nov 2023] Our NSF Grand Challenges in Resilience Workshop happened. [ <a href="https://engineering.purdue.edu/grandchallenges">WWW</a> ]</p>
</li>
<li><p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [Aug 2023] Overview of our Army Research Lab Assured Autonomy Institute [ <a href="https://medium.com/purdue-engineering/assured-autonomy-what-from-where-how-and-what-next-661a5d521b58">WWW</a> ] </p>
</li>
<li><p><i class="fa fa-graduation-cap fa-lg" aria-hidden="true"></i> [Apr 2023] Planning for the Purdue-wide Institute for Physical AI is on. [ <a href="https://www.purdue.edu/computes/initiative-for-physical-artificial-intelligence/">WWW</a> ]</p>
</li>
<li><p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [Apr 2023] A good Spring bounty of papers in CVPR, AsiaCCS, DSN, Middleware ... [ <a href="https://engineering.purdue.edu/dcsl/publications-by-year/">WWW</a> ] </p>
</li>
<li><p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [Jan 2023] My Times of India article on tech predictions for 2023. [ <a href="https://timesofindia.indiatimes.com/business/india-business/technology-stories-that-are-likely-to-trend-in-2023/articleshow/96899193.cms">WWW</a> ]</p>
</li>
<li><p><i class="fa fa-graduation-cap fa-lg" aria-hidden="true"></i> [Jan 2023] My keynote at Comsnets. [ <a href="https://www.youtube.com/watch?v=MHPnrIicLt4">YouTube</a> ]</p>
</li>
<li>
<p><i class="fa fa-graduation-cap fa-lg" aria-hidden="true"></i> [Oct-Nov 2022] A set of invited talks and keynotes coming up --- UC Irvine, ISSRE, Middleware, Comsnets. </p>
</li>
<li>
<p><i class="fa fa-graduation-cap fa-lg" aria-hidden="true"></i> [Aug 2022] Welcome to 4 new researchers to DCSL. [ <a href="https://engineering.purdue.edu/dcsl/team-members/">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [Jul 2022] Our book "System Dependability and Analytics" is released. [ <a href="News/dependability-book-2022.html" target="_blank">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-graduation-cap fa-lg" aria-hidden="true"></i> [Oct-Nov 2022] A set of invited talks and keynotes coming up --- UC Irvine, ISSRE, Middleware, Comsnets. </p>
</li>
<li>
<p><i class="fa fa-graduation-cap fa-lg" aria-hidden="true"></i> [Aug 2022] Welcome to 4 new researchers to DCSL. [ <a href="https://engineering.purdue.edu/dcsl/team-members/">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [Jul 2022] Our book "System Dependability and Analytics" is released. [ <a href="News/dependability-book-2022.html" target="_blank">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [May 2022] Papers accepted in Spring to Eurosys, S&P, Sigmetrics, OSDI, CVPR, ... [ <a href="https://engineering.purdue.edu/dcsl/publications-by-year/" target="_blank">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-diamond fa-lg" aria-hidden="true"></i> [Jan 2022] I started my three year tenure on the IEEE Computer Society Board of Governors. [ <a href="https://engineering.purdue.edu/Engr/AboutUs/News/Spotlights/2022/2022-0114-ece-bagchi">WWW</a> ]</p>
</li>
<li>
<p><i class="fa fa-podcast fa-lg" aria-hidden="true"></i> [Nov 2021] My class "Big data for Reliability and Security" is available on edX. [ <a href="https://www.edx.org/course/big-data-for-reliability-and-security">WWW</a> ]</p>
</li>
<li>
<p><i class="fa fa-diamond fa-lg" aria-hidden="true"></i> [Feb 2021] Our NSF CPS project on secure agro analytics starts. [ <a href="Research/Students/ra_hiring_announcement_nsf_assured_cps_0121.pdf">PDF</a> ]</p>
</li>
<li>
<p><i class="fa fa-graduation-cap fa-lg" aria-hidden="true"></i> [Aug 2021] Welcome to 6 new researchers to DCSL. [ <a href="https://engineering.purdue.edu/dcsl/team-members/">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-diamond fa-lg" aria-hidden="true"></i> [May 2021] I am honored to receive the <a href="https://engineering.purdue.edu/ECE/News/2021/prof-saurabh-bagchi-receives-2021-adobe-faculty-award">Adobe Faculty Award</a> and the <a href="https://www.amazon.science/research-awards/recipients?f0=2020&f1=00000173-215f-da60-a1f3-b9ffaf300001&s=0&p=2">Amazon Research Award</a>. </p>
</li>
<li>
<p><i class="fa fa-diamond fa-lg" aria-hidden="true"></i> [Aug 2020] Our proposal to be part of the Army Research Lab's A2I2 Institute on assured autonomy gets funded. This is joint between Purdue and Princeton over 5 years. [ <a href="https://engineering.purdue.edu/CRISP/news/team-of-5-awarded-grant-to-become-part-of-army-artificial-intelligence-innovation-institute-a2i2">WWW</a> ]</p>
</li>
<li>
<p><i class="fa fa-diamond fa-lg" aria-hidden="true"></i> [Jul 2020] I am honored to be chosen a member of the International Federation for Information Processing (IFIP). I will be in the working group on dependable computing and fault tolerance. [ <a href="http://www.dependability.org/wg10.4/" target="_blank">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-newspaper-o fa-lg" aria-hidden="true"></i> [Feb-Jun 2020] Our work on streaming apps to phones reliably gets some popular press and an EWSN paper. [ <a href="https://engineering.purdue.edu/dcsl/publications/papers/2019/appstreamer_ewsn20_cameraready.pdf">Paper</a> ] [ <a href="https://www.purdue.edu/newsroom/releases/2020/Q1/apps-could-take-up-less-space-on-your-phone,-thanks-to-new-streaming-software.html" target="_blank">Purdue news story</a> ] [ <a href="https://engineering.purdue.edu/dcsl/february-2020/" target="_blank">WWW</a> ] [ <a href="https://www.insideindianabusiness.com/clip/15078494/purdue-researchers-develop-appstreamer-software" target="_blank">Inside Indiana Business</a> ]</p>
</li>
<li>
<p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [May-Jun 2020] Two vision papers accepted: resilience in autonomous systems and IoT [ <a href="https://engineering.purdue.edu/dcsl/june-2020/" target="_blank">WWW</a> ]
</p>
</li>
<li>
<p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [Apr 2020] Papers accepted in Spring to DSN, Usenix ATC, Mobisys, ... [ <a href="https://engineering.purdue.edu/dcsl/publications-by-year/" target="_blank">WWW</a> ]
</p>
</li>
<li>
<p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [Apr 2020] Five areas of DCSL's research impact over the years. [ <a href="https://engineering.purdue.edu/~sbagchi/Research/research_impact.html" target="_blank">WWW</a> ]
</p>
</li>
<li>
<p><i class="fa fa-newspaper-o fa-lg" aria-hidden="true"></i> [Nov 2019] Our one credit class on "Big data for
reliability and security" is going online in Spring 2020 and will be available as part of ECE's Online Masters through edX. [ <a href="https://engineering.purdue.edu/~sbagchi/Classes/big_data_reliability_security_spring20.pdf">PDF</a> ]
</p>
</li>
<li>
<p><i class="fa fa-diamond fa-lg" aria-hidden="true"></i> [Aug 2019] Two of our projects on security in autonomous operations of the battlefield are taking off with funding from Northrop Grumman. These are joint with David Inouye and Chris Brinton, both of Purdue ECE. [ <a href="https://www.northropgrumman.com/Capabilities/Cybersecurity/Documents/Literature/NGCRC_datasht.pdf" target="_blank">PDF</a> ] </p>
</li>
<li>
<p><em class="fa fa-podcast fa-lg" aria-hidden="true"></em> [Aug 2019] My tutorial on "Big Data for Security and
Reliability" is now online, with video and slides. I delivered this during the Industry Day of our WHIN
center. [
<a href="https://nanohub.org/resources/30676/watch?resid=30695" target="_blank">WWW</a> ]</p>
</li>
<li>
<p><em class="fa fa-diamond fa-lg" aria-hidden="true"></em> [May 2019] I have stepped into the role of a thrust
lead
for our $18M WHIN center. I am leading the "IoT and Data Analytics" thrust, one of three in the center. [ <a
href="http://purduewhin.ecn.purdue.edu/" target="_blank">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-diamond fa-lg" aria-hidden="true"></i> [Feb
2019] I am honored to receive the College of Engineering Faculty
Excellence Award for Graduate Student Mentorship. A single faculty from
the college is recognized each year. [ <a href="https://engineering.purdue.edu/Engr/People/Awards/Institutional/Faculty/2019/ptIndexYear" target="_blank">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [May
2019] We wrote up a Medium post on the state of reliability and security
of wearable devices and what we are doing about it. [ <a href="https://medium.com/purdue-engineering/wearables-in-healthcare-are-they-reliable-and-secure-f8dc6108f293" target="_blank">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-podcast fa-lg" aria-hidden="true"></i> [Jan
2019] I spoke at an interesting panel at COMSNETS in Bangalore on "Man
versus Machine: Humans Need Not Apply". The video is here. [ <a href="https://videoken.com/embed/kOtgkeREsnk" target="_blank">WWW</a> ]</p>
</li>
<li>
<p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [Dec
2018] The computer systems research community got together in an
NSF-sponsored grand challenges workshop at ASPLOS in Williamsburg, VA.
Our report on the current challenges and the road ahead is out now. [ <a href="https://engineering.purdue.edu/dcsl/publications/papers/2018/csr_grand_challenges_report_2018.pdf" target="_blank">PDF</a> ] </p>
</li>
<li>
<p><em class="fa fa-podcast fa-lg" aria-hidden="true"></em> [Sep 2018] Our lightning talk on cyber resilience is now online. [ <a href="https://engineering.purdue.edu/CRISP/Presentations/Saurabh-Sep27-2018" target="_blank">Presentation (Powerpoint)</a> ] [ <a href="https://www.youtube.com/watch?v=7zRO29Zwpc4" target="_blank">Video</a> ] </p>
</li>
<li>
<p><em class="fa fa-diamond fa-lg" aria-hidden="true"></em> [Apr
2018] I have been awarded the Humboldt Bessel Research Award. The
international award is given to about 20 researchers from all academic
disciplines each year by Germany's Alexander von Humboldt Foundation.
The award recognizes researchers who have made significant discoveries
that have influenced their fields, and who are expected to continue
producing such advances in the future. Thanks to my collaborator
Christof Fetzer from TU Dresden. [ <a href="https://www.humboldt-foundation.de/web/pub_progsearch.main?p_lang=en&p_forschungsaufenthalt_id=1&p_promotions_jahr=2002&p_karrierestufe_id=3&p_nation=USA&p_button_search=Search&p_detail_text_id=5339" target="_blank">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [April-May 2018] We have new papers on <a href="https://engineering.purdue.edu/dcsl/publications/papers/2018/aces_usenixsec18_revision.pdf">security of IoT devices</a> (Usenix Security '18), <a href="https://engineering.purdue.edu/dcsl/publications/papers/2018/final_videochef_usenixatc18_cameraready.pdf">approximate video processing</a> (Usenix ATC '18), <a href="https://engineering.purdue.edu/dcsl/publications/papers/2018/dependability-edge-computing-nsf-cs-grand-challenges.pdf"> dependability in the edge</a> (NSF Workshop on Grand Challenges in Computer Systems Research), and <a href="https://engineering.purdue.edu/dcsl/publications/papers/2018/final_android-wear-robustness_dsn18_cameraready.pdf"> dependability in wearable devices</a> (DSN '18). [ <a href="https://engineering.purdue.edu/~sbagchi/Research/Papers/five_recent_publications.html">WWW</a> ]</p>
</li>
<li>
<p><i class="fa fa-newspaper-o fa-lg" aria-hidden="true"></i>
[April 2018] The video of the panel with Bob Kahn on "The Internet's
Present and Future: Technology and Policy Grand Challenges" is now
online. [ <a href="https://www.youtube.com/watch?v=MauKXDnJNIA&feature=youtu.be">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-diamond fa-lg" aria-hidden="true"></i> [January
2018] A large new project worth $39M and slated for 5 years starts. The
project, funded by Lilly Endowment, will develop IoT systems to enable
smart agriculture and smart manufacturing. DCSL researchers, Saurabh,
Edgardo, and Heng, will be leading the charge on building a reliable
wireless mesh network, data analytics to detect failing sensor nodes,
and visualization of the data and the network status. [ <a href="http://wbaa.org/post/lilly-endowment-gives-39-million-ag-related-internet-things-research#stream/0"> WWW </a> ] </p>
</li>
<li>
<p> <i class="fa fa-newspaper-o fa-lg" aria-hidden="true"></i>
[January 2018] Want to work on leading-edge Department of Energy
accelerator-based systems? Here is an RA announcement on a project on
error detection for GPUs using Machine Learning. We plan to finalize the
position hire by mid February. <span style="color: rgba(241,7,11,1)">Update: Position is filled (2/18).</span> [ <a href="https://engineering.purdue.edu/dcsl/news/2018/ra_announcement_doe_0118.html">WWW</a> ] </p>
</li>
<li>
<p><i class="fa fa-newspaper-o fa-lg" aria-hidden="true"></i> [November 2017] Our work on security and game theory for interdependent systems is highlighted in a Purdue news story. [ <a href="http://www.purdue.edu/newsroom/releases/2017/Q4/game-theory-harnessed-for-cybersecurity-of-large-scale-nets-.html"> WWW </a> ] And a Sandia news item. [ <a href="https://engineering.purdue.edu/dcsl/news/Highlights/sandia_cybersecurity_0218.pdf"> PDF</a> ] </p>
</li>
<li>
<p><i class="fa fa-diamond fa-lg" aria-hidden="true"></i>
[September 2017] Two new funded projects start on security of
interdependent systems, one from NSF SaTC and the other from Sandia. [ <a href="https://engineering.purdue.edu/~sbagchi/latest_funding.html"> Details </a> ] </p>
</li>
<li>
<p><i class="fa fa-graduation-cap fa-lg" aria-hidden="true"></i> [September 2017] 5 students graduate, 4 new students start in DCSL. [ <a href="https://engineering.purdue.edu/dcsl/august-2017/"> Details </a> ] </p>
</li>
<li>
<p><i class="fa fa-graduation-cap fa-lg" aria-hidden="true"></i>
[September 2017] Want to work in graduate school with a great bunch of
faculty and students working on different aspects of computer systems?
Consider applying to the Computer Engineering program within ECE. [ <a href="https://engineering.purdue.edu/ComputerEngineering/"> Details </a> ] </p>
</li><li>
<p><i class="fa fa-graduation-cap fa-lg" aria-hidden="true"></i>[August
2017] I am teaching the graduate level class on "Fault-tolerant
Computer System Design" as a cross-listed class between ECE and CS. [ <a href="https://engineering.purdue.edu/~sbagchi/teaching.html"> Details </a> ] </p>
</li><li>
<p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i> [July
2017] Two papers on our NIH project on computational infrastructure for
the largest metagenomics portal in the world, MG-RAST, are accepted in
Briefings in Bioinformatics. [ <a href="https://engineering.purdue.edu/dcsl/publications-by-year/">html</a> ] </p>
</li><li>
<p><i class="fa fa-podcast fa-lg" aria-hidden="true"></i> [June
2017] IFIP Working Group 10.4 on Dependable Computing and Fault
Tolerance had a workshop on "Dependable News" in Longmont, Colorado.
Here is all our material from that workshop, including an interactive
survey on what you find check-worthy in political statements. [ <a href="https://engineering.purdue.edu/dcsl/presentations1/2017/IFIP-FactChecking/ifip_factchecking_presentation_062317.pptx">Presentation (Powerpoint)</a> ] [ <a href="https://engineering.purdue.edu/dcsl/presentations1/2017/IFIP-FactChecking/ifip_factchecking_quiz_062317.pdf">Quiz</a> ] [ <a href="https://purdue.qualtrics.com/jfe7/form/SV_byMhlXVzcgDx2M5">Survey link </a> ] [ <a href="https://engineering.purdue.edu/dcsl/presentations1/2017/IFIP-FactChecking/ifip_factchecking_quiz_062317_results.pdf">Answers for survey</a> ] [ <a href="https://engineering.purdue.edu/dcsl/publications/papers/2017/final_tathya_cikm17_cameraready.pdf">Paper</a> ] </p>
</li><li>
<p><i class="fa fa-paperclip fa-lg" aria-hidden="true"></i>[February 2017] Our paper on security in bare-metal embedded systems is accepted to Oakland '17. </p>
<p> "Protecting Bare-metal Embedded Systems with Privilege
Overlays"
Abraham A Clements, Naif Saleh Almakhdhub, Khaled Saab, Prashast
Srivastava, Jinkyu Koo, Saurabh Bagchi, and Mathias Payer.
In Proceedings of the IEEE International Symposium on Security and
Privacy (Oakland), 2017. (Acceptance rate: 60/450 = 13.3%) [ <a href="https://engineering.purdue.edu/dcsl/publications/papers/2017/final_oakland17-epoxy_cameraready.pdf">Paper</a> ] [ <a href="https://engineering.purdue.edu/dcsl/presentations1/2017/final_oakland17-epoxy_presentation.pptx">Slides</a> ] [ <a href="https://www.youtube.com/watch?v=Aumoz190wHM">Video</a> ]</p>
</li><li> <p>[October 2016] I am honored to have been elected to the
IEEE Computer Society Board of Governors, for a 3-year term starting
2017. Here is the Purdue news story. [ <a href="https://engineering.purdue.edu/ECE/Spotlights/professors-saurabh-bagchi-and-david-ebert-elected-to-ieee-computer-societys-board-of-governors">html</a> ] </p>
</li>
<li>
<p>[October 2016] We received the VURI award from AT&T Labs
Research, for our collaborative work on diagnosis and repair of QoS
issues in their multi-tenant cloud environments. Here is the Purdue news
story. [ <a href="https://engineering.purdue.edu/ECE/Spotlights/professor-saurabh-bagchi-receives-att-labs-award-for-work-on-data-center-reliability">html</a> ]</p>
</li><li> <p>[Summer 2016] A paper in Eurosys (our work with AT&T Labs on data recovery in data centers) [ <a href="https://engineering.purdue.edu/dcsl/publications/papers/2016/final_erasurecodedrepair_eurosys16_cameraready.pdf">pdf</a> ], one in ICS (our work on a domain specific language for computational genomics) [ <a href="https://engineering.purdue.edu/dcsl/publications/papers/2016/final_sarvavid_ics16_cameraready.pdf">pdf</a>
], and two papers in SRDS - one on our joint work with Georgia Tech and
AT&T Labs on predictive analytics in cellular networks [ <a href="https://engineering.purdue.edu/dcsl/publications/papers/2016/final_silentdatacorruption_srds16_submitted.pdf">pdf</a> ] and the other on machine learning for detecting silent data corruptions in parallel programs [ <a href="https://engineering.purdue.edu/dcsl/publications/papers/2016/final_tango_srds16_submitted.pdf">pdf</a> ].</p>
</li>
<li>
<p>[August 2016] I am teaching the graduate-level course titled
"Fault-tolerant Computer System Design" which is cross-listed in CS (CS
590FTC) and ECE (ECE 69500). This course is suitable for any starting
graduate student in CS or Computer Engineering. [ <a href="https://engineering.purdue.edu/ee695b/public-web/">Course web page</a> ]</p>
</li>
<li>
<p>[May-Aug 2016] Three DCSL-ers graduate - <a href="https://www.linkedin.com/in/pcwood21">Paul Wood</a> (PhD, startup), Ravi Gupta (MS, Intel) and <a href="https://www.linkedin.com/in/suhas-raveesh-javagal-76689019">Suhas Javagal</a> (MS, Oracle). We welcome a new Research Scientist - <a href="https://www.linkedin.com/in/jinkyu-koo-564228a">Jinkyu Koo</a>, from Samsung Electronics. </p>
</li>
<b style="mso-bidi-font-weight:normal"><span style="font-size:14.0pt"><a href="https://engineering.purdue.edu/~sbagchi/archives.html"></a></span></b>
<li>
<p>[November 18, 2015] We organized a Bird-of-Feather session at
the Supercomputing conference in Austin, TX on the topic of our recent
NSF project on the open data repository for system usage and failure
data. The other organizers were Carol Song (Purdue), Ravi Iyer and
Zbigniew Kalbarczyk (UIUC), and Nathan DeBardeleben (Los Alamos National
Lab). I have now posted a report for this BoF session. [ <a href="https://engineering.purdue.edu/dcsl/news/2015/sc_bof.html">html</a> ]</p>
</li>
<li>
<p>[October 2015] My keynote talk at 34th IEEE Symposium on
Reliable Distributed Systems (SRDS) on September 28, 2015 was titled
"Dependability in a Connected World: Research in Action in the
Operational Trenches."" The slides and the audio recording (in Webex
format) are now available. [ <a href="https://engineering.purdue.edu/dcsl/presentations1/2015/srds_keynote_092815.pptx" data-mce-href="https://engineering.purdue.edu/dcsl/presentations1/2015/srds_keynote_092815.pptx">Slides</a> ] [ <a href="https://engineering.purdue.edu/dcsl/presentations1/2015/srds15_keynote_092815.wrf">Audio recording</a> ]</p>
</li>
<li>
<p>[October 8, 2015] I gave a talk to the incoming ECE
undergraduate sophomores about why they should all become Computer
Engineers. Here is the presentation and the recording for it. [ <a href="https://engineering.purdue.edu/dcsl/presentations1/2015/ECE200-CE-Fall2015.pptx">Powerpoint</a> ] [ <a href="https://engineering.purdue.edu/dcsl/presentations1/2015/ECE200-CE-Fall2015.m4a">MPEG recording</a> ]</p>
</li>
<li>
<p>[September 10, 2015] Our paper wins the best paper award at ACM
BCB, being held at Georgia Tech September 10-12. There were 48 papers,
accepted out of 141 submissions. The paper is on developing a
distributed classifier for micro RNAs affecting gene expression. Here is
the paper and here is the picture. [ <a href="https://engineering.purdue.edu/dcsl/publications/papers/2015/mirnatargeting_bcb15.pdf">pdf</a> ] [ <a href="https://engineering.purdue.edu/dcsl/pictures/events/2015/bcb_award_091115.jpg">pic</a> ]</p>
</li>
<li>
<p>[August, 2015] In Fall, I am teaching the graduate course on
fault-tolerant computer system design - ECE 695B/CS 590FTC. If you are a
graduate student in ECE or CS looking for a hands-on project-based
course that also satisfies your POS requirement, consider taking this
course. Here is the web page for the course. [ <a href="https://engineering.purdue.edu/ee695b"> Web page for class</a> ] </p>
</li>
<li>
<p>[June 2, 2015] We are looking for a research scientist with
background in simulation and optimization to start on our recent
Purdue-GE Center. [ <a href="https://engineering.purdue.edu/~sbagchi/Research/Students/research_scientist_announcement_0615.pdf">Announcement (pdf)</a> ] </p>
</li>
<li>
<p>[April 13, 2015] We are looking for a post-doctoral researcher
in practical distributed systems to start on a recently funded NSF
project, from July 15, 2015. [ <a href="https://engineering.purdue.edu/~sbagchi/Research/Students/post-doctoral-position-announcement-0415.html">Announcement</a> ] </p></li>
<li>
<p>[February 2015] DCSL research overview gets an update with the
latest results and unveiling of the problems that we are working on. [ <a href="https://engineering.purdue.edu/dcsl/publications/dcsl_overview.html">html</a> ] [ <a href="https://engineering.purdue.edu/dcsl/publications/dcsl_overview.pdf">pdf</a> ]
</p></li>
<li>
<p>[February 2015] Our paper on software-only exact record and
replay for embedded wireless nodes is accepted in IPSN. This shows how
one can use software-only to record all sources of non-determinism,
compress them in a domain-specific manner, and create a trace that
allows for perfect record and replay. [ <a href="https://engineering.purdue.edu/dcsl/publications/papers/2014/tardis_matt_ipsn15.pdf">pdf</a> ]
</p></li>
<li>
<p>[February 2015] We get a Google Faculty Award for our work on
detection of spurious messages on social networking sites. This award is
jointly with Prof. Alex Quinn also of ECE. Here are the details. [ <a href="https://engineering.purdue.edu/ECE/Spotlights/professors-alex-quinn-and-saurabh-bagchi-receive-google-faculty-research-award"> html </a> ].
</p></li>
<li>
<p>[January 2015] Our paper is accepted to appear in
Communications of the ACM (CACM). It provides an overview and open
research problems in debugging in the very large. It is co-authored with
colleagues from LLNL, Ohio State, and of course Purdue. [ <a href="https://engineering.purdue.edu/~sbagchi/Research/Papers/hpcdebugging_cacm14_submit.pdf">pdf</a> ]</p>
</li>
<li>
<p>[March 11, 2015] Here is our presentation to Duke Energy given at the Energy Center at Purdue. [ <a href="https://engineering.purdue.edu/~sbagchi/Research/Presentations/cpssecurity_dukeenergy_031115.pptx"> pptx </a> ]. </p></li>
<li>
<p>[Aug 15, 2014] We are looking for two graduate research
assistants, starting this Fall, for an NSF-funded and a Department of
Energy-funded project. [ <a href="https://engineering.purdue.edu/dcsl/news/2014/ra_announcement_nsf_doe_0814.html">Announcement</a> ] Update: These positions have been filled.</p>
</li>
<li>
<p>[Aug 2014] I am teaching an exciting, practical computer
systems course titled "Fault-tolerant Computer System Design" this Fall.
Come and check it out. [ <a href="https://engineering.purdue.edu/ee695b/">Course web page</a> ]</p>
</li>
<li>
<p>[June 2014] We have two proposals to the National Science
Foundation accepted. The first is from the Computational Research
Infrastructure (CRI) program and is titled "Computer System Failure Data
Repository to Enable Data-Driven Dependability Research" (jointly with
Carol Song of Purdue). The second is from the NeTS program and is titled
"Tango: Performance and Fault Management in Cellular Networks through
Device-Network Cooperation" (jointly with Alan Qi at Purdue, Mostafa
Ammar at Georgia Tech, and Kaustubh Joshi and Rajesh Panta at AT&T
Labs). </p>
</li>