-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsafe.js
1311 lines (1306 loc) · 69.1 KB
/
safe.js
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
const orders = {
"tasks": {
"0ABlEuOxu0OfCFaUFdty": {
"id": "0ABlEuOxu0OfCFaUFdty",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 12:55 pm",
"eventDate": "2023-02-15",
"content": "Orientation Course for Engineering Graduates and Science Postgraduates (OCES) was organised by Dr. Shubhajit Das, Assistant Professor and Dr. S. K. Chakraborty, Associate Professor, Faculty In-Charge, Training and Placement Cell, NIT Arunachal Pradesh in collaboration with Bhabha Atomic Research Centre ( BARC ), Mumbai, on the Career opportunities in frontline areas of nuclear, accelerator, and material science and technology in various units of the Department of Atomic Energy (DAE), from 15/2/2023 to 15/2/2023.",
"brochureUrl": "",
"imgCaption": "Outreach Activity",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FOutreach%20Activity%2FBARC.jpeg?alt=media&token=b35f377f-4891-4d43-8421-2dd7c00f0962"
],
"title": "Outreach Activity"
},
"2uFZThvlrhAen1H6DPIM": {
"id": "2uFZThvlrhAen1H6DPIM",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 1:05 pm",
"eventDate": "",
"content": "Das, S. (2023). *Content contributor and adapter for the Indian version of Fundamentals of Modern Manufacturing: Materials, Processes and Systems, 7th Edition by Mikell P. Groover*. Willey India Pvt. Ltd.. ISBN: 9781119722014",
"brochureUrl": "",
"imgCaption": "Books",
"imgUrl": [],
"title": "Books"
},
"3fvSMFh5ImV6OwVRGsD7": {
"id": "3fvSMFh5ImV6OwVRGsD7",
"author": "M. Momocha Singh",
"created": "01-Mar-2023, 10:02 am",
"eventDate": "2023-02-01",
"content": "M. Momocha Singh attended and mentored students for “Science and Technology Exhibition” organised by National Institute of Technology, Manipur held on 1st-2nd February, 2023 was organised by NIT Manipur, Assistant Professor and HoD on the Science and Technology Exhibition, from 1/2/2023 to 2/3/2023.",
"brochureUrl": "",
"imgCaption": "Outreach Activity",
"imgUrl": [],
"title": "Outreach Activity"
},
"5iAyUdUMSwtKvmkd6Xgh": {
"id": "5iAyUdUMSwtKvmkd6Xgh",
"author": "Preetisudha Meher",
"created": "28-Feb-2023, 7:13 pm",
"eventDate": "2023-01-21",
"content": "Dr. Preetisudha Meher, Assistant Professor, ECE, NITAP delivered a Invited Talk on \"Teaching Methods for Inspiring the Students\" in the one week online STTP on “Digital Tools for Writing, Authoring, Reviewing Research Articles and Managing Classes for Effective Teaching” organised by Organized by Department of ECE, NERIST Arunachal Pradesh , 21/1/2023.",
"brochureUrl": "",
"imgCaption": "Invited/Expert Lectures given by NIT AP members",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FInvited%2FExpert%20Lectures%20given%20by%20NIT%20AP%20members%2FWhatsApp%20Image%202023-01-21%20at%2014.06.07.jpeg?alt=media&token=aaa1fbe6-e185-44ce-852d-a4a294811806"
],
"title": "Invited/Expert Lectures given by NIT AP members"
},
"889KxVRxKu0osSEhlcoY": {
"id": "889KxVRxKu0osSEhlcoY",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 12:38 pm",
"eventDate": "2023-03-13",
"content": "Entrepreneurship and Skill Development Programme on Product Design & Development using Design Software and 3D Printing Operation will be organized by Dr. Prases K Mohanty, Assistant Professor and Dr. Shubhajit Das, Assistant Professor, Mechanical Engineering, sponsored by Ministry of Micro, Small and Medium Enterprises (MSME), from 13/3/2023 to 24/3/2023. More details, visit NITAP official website: www.nitap.ac.in or link of event: For Registration: https://forms.gle/ntrwkEBhWm3Ktsxi9 ",
"brochureUrl": "https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Brochure%2FAnnouncement%2FMSME%20Brouchure.pdf?alt=media&token=02c554b6-bb9d-42c7-b30d-76bff780b5fe",
"imgCaption": "Announcement",
"imgUrl": [],
"title": "Announcement"
},
"8J8vbX7FhXTXrXBj4AqH": {
"id": "8J8vbX7FhXTXrXBj4AqH",
"author": "S N Deepa",
"created": "02-Mar-2023, 10:12 pm",
"eventDate": "",
"content": "S.N.Deepa. (2022). 202211057825. Fruit Harvesting Inch Worm Robot - Indian Patent.",
"brochureUrl": "",
"imgCaption": "Patent (APA 7th edition format)",
"imgUrl": [],
"title": "Patent"
},
"B5gvMkAlUsjx7ho5chXa": {
"id": "B5gvMkAlUsjx7ho5chXa",
"author": "Preetisudha Meher",
"created": "28-Feb-2023, 7:17 pm",
"eventDate": "2023-02-21",
"content": "Dr. Preetisudha Meher, Assistant Professor, ECE, NITAP delivered a Invited Speech on \"“मातृभाषा का महत्व”\" in the at celebration of “International Mother Language Day” organised by Organized by Sree Narayana Gurukripa BED College, Pothencode, Tamilnadu in association with Siksha Sanskriti Utthhan Nyas, 21/2/2023.",
"brochureUrl": "",
"imgCaption": "Invited/Expert Lectures given by NIT AP members",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FInvited%2FExpert%20Lectures%20given%20by%20NIT%20AP%20members%2FWhatsApp%20Image%202023-02-28%20at%2019.12.49.jpeg?alt=media&token=f1412774-c5f1-498f-bbe0-8d616217d871"
],
"title": "Invited/Expert Lectures given by NIT AP members"
},
"Bb5kHCRLGPFQ2g5aFDuD": {
"id": "Bb5kHCRLGPFQ2g5aFDuD",
"author": "Preetisudha Meher",
"created": "28-Feb-2023, 7:20 pm",
"eventDate": "2023-02-22",
"content": "Dr. Preetisudha Meher, Assistant Professor, ECE, NITAP delivered a Invited Speech on \"National Education Policy - 2020\" in the “Artificial Intelligence, Machine Learning, and Internet of Things towards Engineering Applications” organised by Organized by Department of ECE, NERIST Arunachal Pradesh, 22/2/2023.",
"brochureUrl": "",
"imgCaption": "Invited/Expert Lectures given by NIT AP members",
"imgUrl": [],
"title": "Invited/Expert Lectures given by NIT AP members"
},
"FYhIe7EgPhNfGvXXxv5M": {
"id": "FYhIe7EgPhNfGvXXxv5M",
"author": "M. Momocha Singh",
"created": "01-Mar-2023, 10:00 am",
"eventDate": "",
"content": "M. Momocha Singh attended meetings with officials at Kendriya Vidyalaya Head Quarters, New Delhi for establishing New KV at NIT Arunachal Pradesh, Jote from 22nd January to 26th January, 2023.",
"brochureUrl": "",
"imgCaption": "Other",
"imgUrl": [],
"title": "KV opening at NIT Jote meeting"
},
"OgFh2Xs5nrGcchoBCxq3": {
"id": "OgFh2Xs5nrGcchoBCxq3",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 12:38 pm",
"eventDate": "2023-03-13",
"content": "Entrepreneurship and Skill Development Programme on Product Design & Development using Design Software and 3D Printing Operation will be organized by Dr. Prases K Mohanty, Assistant Professor and Dr. Shubhajit Das, Assistant Professor, Mechanical Engineering, sponsored by Ministry of Micro, Small and Medium Enterprises (MSME), from 13/3/2023 to 24/3/2023. More details, visit NITAP official website: www.nitap.ac.in or link of event: For Registration: https://forms.gle/ntrwkEBhWm3Ktsxi9 ",
"brochureUrl": "",
"imgCaption": "Announcement",
"imgUrl": [],
"title": "Announcement"
},
"QMjMCzszNQprKSPNxehj": {
"id": "QMjMCzszNQprKSPNxehj",
"author": "Nabakumar Pramanik",
"created": "23-Feb-2023, 6:14 pm",
"eventDate": "2023-01-26",
"content": "Dr. Nabakumar Pramanik, Associate Professor, CHE served as a *Reviewer* of \"Archiv der Pharmazie - Chemistry in Life Sciences\". Wiley-VCH GmbH. 26/1/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"Scmf3WmuVpdVuEaKg1gY": {
"id": "Scmf3WmuVpdVuEaKg1gY",
"author": "S N Deepa",
"created": "02-Mar-2023, 9:50 pm",
"eventDate": "2023-01-25",
"content": "S.N.Deepa, Associate Professor, Electrical Engineering, NITAP delivered a Keynote on \"Load Forecasting using Computational Intelligent Models\" in the 4th International Conference \ton Power and Embedded Drive Control ICPEDC 2023 organised by SSN College of Engineering, \tKalavakkam, Chennai., 25/1/2023.",
"brochureUrl": "",
"imgCaption": "Invited/Expert Lectures given by NIT AP members",
"imgUrl": [],
"title": "Invited/Expert Lectures given by NIT AP members"
},
"UHJbxLTGzUkhiBwv82TX": {
"id": "UHJbxLTGzUkhiBwv82TX",
"author": "Swarnendu Kumar Chakraborty",
"created": "28-Feb-2023, 12:20 pm",
"eventDate": "",
"content": "Our Alumnus, **Vivek Kumar Srivastava, M Tech 2016-18 Renewable Energy and Energy\nManagement** got the Best Poster Presentation Award among all the Electrical and Electronics\nPMRF Scholars in the **Annual PMRF Symposium 2023** held at the Indian Institute of\nTechnology, Madras, on 17th and 18th February 2023.",
"brochureUrl": "",
"imgCaption": "Vivek Kumar Srivastava receiving the Best Poster Presentation Award at the Annual PMRF Symposium 2023 at IIT Madras",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FOther%2F1.jpg?alt=media&token=efd51051-ce97-4d65-abb9-2be74e9ff8e0"
],
"title": "Alumni Cell Updates"
},
"UW18QJURhjqGsaraZLpf": {
"id": "UW18QJURhjqGsaraZLpf",
"author": "Sanjeev Kumar Metya",
"created": "22-Feb-2023, 8:21 pm",
"eventDate": "2023-02-17",
"content": "Dr. Sanjeev Kumar Metya, Assistant Professor, Electronics & Communication Engineering served as a *Reviewer* of \"International Transactions on Electrical Energy Systems\". Hindawi. 17/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"VOunV3vNOhc8cqhGhybr": {
"id": "VOunV3vNOhc8cqhGhybr",
"author": "M. Momocha Singh",
"created": "01-Mar-2023, 10:03 am",
"eventDate": "",
"content": "M. Momocha Singh participated in a refreshing session on \"Design Effective Innovation & Start-up Policy in HEIs\" organised by National Innovation and Startup Policy (NISP) Implementation Team, Ministry of Education's Innovation Cell held on 16th February, 2023",
"brochureUrl": "",
"imgCaption": "Other",
"imgUrl": [],
"title": "Design Effective Innovation & Start-up Policy in HEIs for NISP coordinator"
},
"d0uOKnXCePq6PqYEyC1B": {
"id": "d0uOKnXCePq6PqYEyC1B",
"author": "Swarnendu Kumar Chakraborty",
"created": "28-Feb-2023, 12:26 pm",
"eventDate": "",
"content": "Our Alumnus Abhishek Kumar (B Tech CSE 2016-20) joined 42Gears Mobility System as a software engineer.",
"brochureUrl": "",
"imgCaption": "Abhishek Kumar B.Tech CSE 2016-20",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FOther%2F2.jpg?alt=media&token=40ecadce-e59b-4eff-a543-5646d69064a4"
],
"title": "Alumni Cell Updates"
},
"dATqwiubOPmoEf1sUx96": {
"id": "dATqwiubOPmoEf1sUx96",
"author": "Swarnendu Kumar Chakraborty",
"created": "28-Feb-2023, 12:44 pm",
"eventDate": "",
"content": "Our Research Scholar **Soumya Upadhyay** PhD 2020 recently *published a patent* along with other faculty members of Department of Information Technology, College of Engineering Roorkee **on SYSTEM FOR ARTIFICIAL INTELLIGENCE BLOCKCHAIN ELECTRONIC COMMERCE BASED ON IOT/5G** on 10-02-2023. \nAPPLICATION No.-202311007707. \nName of the Applicant - COER University, Roorkee",
"brochureUrl": "",
"imgCaption": "Other",
"imgUrl": [],
"title": "Alumni Cell Updates"
},
"eWm8CihJML9FzIshpz7m": {
"id": "eWm8CihJML9FzIshpz7m",
"author": "S N Deepa",
"created": "02-Mar-2023, 9:53 pm",
"eventDate": "2023-02-14",
"content": "S.N.Deepa, Associate Professor, Electrical Engineering served as a *Reviewer* of \"Ain Shams Engineering Journal\". Elsevier Publishing. 14/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"imFEgjSpOe3bXzcKmkYc": {
"id": "imFEgjSpOe3bXzcKmkYc",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 1:07 pm",
"eventDate": "2023-02-20",
"content": "Dr. Shubhajit Das, Assistant Professor, Mechanical Engineering served as a *Reviewer* of \"Materials and Design\". Elsevier. 20/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"jEPOhKTyXWwcIMBae2sz": {
"id": "jEPOhKTyXWwcIMBae2sz",
"author": "M. Momocha Singh",
"created": "01-Mar-2023, 9:59 am",
"eventDate": "",
"content": "M. Momocha Singh participated in IIC consortium-specific orientation cum Q&A session “for institutionalizing the IIC institutions for better governance and growth in a particular state/UT” organised by Ministry of Education’s Innovation Cell (MIC) on 20th January 2023.",
"brochureUrl": "",
"imgCaption": "Other",
"imgUrl": [],
"title": "IIC consortium-specific orientation cum Q&A session"
},
"nsHtaWKpkZudMmGvmCA4": {
"id": "nsHtaWKpkZudMmGvmCA4",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 1:08 pm",
"eventDate": "2023-02-10",
"content": "Dr. Shubhajit Das, Assistant Professor, Mechanical Engineering served as a *Reviewer* of \"Materials Today\". Elsevier. 10/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"o3SFhvmMJrCXbdqm3Yr5": {
"id": "o3SFhvmMJrCXbdqm3Yr5",
"author": "Debjit Dutta",
"created": "27-Feb-2023, 9:27 pm",
"eventDate": "2023-02-10",
"content": "Dr. Debjit Dutta, Assistant Professor (Gr-I), Basic & Applied Sciences (NIT AP) served as a *Reviewer* of \"AICTE prescribed Engineering Mathematics (Calculus & Linear Algebra)-I Text Book\". Khanna Book publisher, NEW DELHI. 10/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"uFUyK4fm99rNaZjYWc8E": {
"id": "uFUyK4fm99rNaZjYWc8E",
"author": "Swarnendu Kumar Chakraborty",
"created": "28-Feb-2023, 12:47 pm",
"eventDate": "",
"content": "Our Alumnus Dr. Umesh Gupta (PhD 2017-21) was awarded the **Machine Learning Award** by **the editors of expert system of application** with **Certificate of Reviewing** in recognition to the review contributed to the journal.",
"brochureUrl": "",
"imgCaption": "Dr. Umesh Gupta received Machine Learning Award",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FOther%2F3.jpg?alt=media&token=87068fda-4d8c-41c4-bc9d-2dd0ee6f3c64"
],
"title": "Alumni Cell Updates"
},
"uQU1YidA1wany64rptwS": {
"id": "uQU1YidA1wany64rptwS",
"author": "Nabakumar Pramanik",
"created": "23-Feb-2023, 6:02 pm",
"eventDate": "2023-02-18",
"content": "Dr. Nabakumar Pramanik, Associate Professor, CHE served as a *Reviewer* of \"Iranian Polymer Journal\". Springer Nature. 18/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"wfXSqKS9hcDjBVWBAjFd": {
"id": "wfXSqKS9hcDjBVWBAjFd",
"author": "M. Momocha Singh",
"created": "01-Mar-2023, 10:04 am",
"eventDate": "",
"content": "M. Momocha Singh attended meetings with officials at Kendriya Vidyalaya Head Quarters, New Delhi “to follow up the matter related to establishment of New KV at NIT Arunachal Pradesh, Jote” as from 26th of February 2023 to 4th of March 2023",
"brochureUrl": "",
"imgCaption": "Other",
"imgUrl": [],
"title": "Project KV follow up meeting"
},
"wjbh57PReSfkWm3vJonJ": {
"id": "wjbh57PReSfkWm3vJonJ",
"author": "Sanjeev Kumar Metya",
"created": "22-Feb-2023, 8:26 pm",
"eventDate": "2023-01-05",
"content": "Dr. Sanjeev Kumar Metya, Assistant Professor, Electronics & Communication Engineering served as a *Reviewer* of \"International Conference on “Advancements in Smart Electronics, Materials and Communication Technologies” (ICASEMCT-2023)\". Springer. 5/1/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"yc5ABjPNj5xyFkVz8uQt": {
"id": "yc5ABjPNj5xyFkVz8uQt",
"author": "Sanjeev Kumar Metya",
"created": "22-Feb-2023, 8:28 pm",
"eventDate": "2023-02-01",
"content": "Dr. Sanjeev Kumar Metya, Assistant Professor, Electronics & Communication Engineering served as a *Reviewer* of \"Arab ICT Conference 2023 (AICTC 2023)\". IEEE. 1/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"yrUXC3AAAD5I9kAoWuns": {
"id": "yrUXC3AAAD5I9kAoWuns",
"author": "Preetisudha Meher",
"created": "28-Feb-2023, 7:22 pm",
"eventDate": "2023-02-13",
"content": "Internship course on on \"VLSI Chip Design\" was organized by Dr. Preetisudha Meher, at NIT Arunachal Pradesh, from 13/2/2023 to 12/3/2023.",
"brochureUrl": "",
"imgCaption": "Workshop / FDP / Conference / seminar / short term course etc.",
"imgUrl": [],
"title": "Workshop / FDP / Conference / seminar / short term course etc."
}
},
"columns": {
"2": {
"id": "2",
"title": "Invited/Expert Lectures given by NIT AP members",
"taskIds": [
"5iAyUdUMSwtKvmkd6Xgh",
"B5gvMkAlUsjx7ho5chXa",
"Bb5kHCRLGPFQ2g5aFDuD",
"Scmf3WmuVpdVuEaKg1gY"
]
},
"6": {
"id": "6",
"title": "Patent (APA 7th edition format)",
"taskIds": [
"8J8vbX7FhXTXrXBj4AqH"
]
},
"8": {
"id": "8",
"title": "Books",
"taskIds": [
"2uFZThvlrhAen1H6DPIM"
]
},
"12": {
"id": "12",
"title": "Reviewers",
"taskIds": [
"QMjMCzszNQprKSPNxehj",
"UW18QJURhjqGsaraZLpf",
"eWm8CihJML9FzIshpz7m",
"imFEgjSpOe3bXzcKmkYc",
"nsHtaWKpkZudMmGvmCA4",
"o3SFhvmMJrCXbdqm3Yr5",
"uQU1YidA1wany64rptwS",
"wjbh57PReSfkWm3vJonJ",
"yc5ABjPNj5xyFkVz8uQt"
]
},
"15": {
"id": "15",
"title": "Workshop / FDP / Conference / seminar / short term course etc.",
"taskIds": [
"yrUXC3AAAD5I9kAoWuns"
]
},
"16": {
"id": "16",
"title": "Outreach Activity",
"taskIds": [
"0ABlEuOxu0OfCFaUFdty",
"3fvSMFh5ImV6OwVRGsD7"
]
},
"17": {
"id": "17",
"title": "Announcement",
"taskIds": [
"889KxVRxKu0osSEhlcoY",
"OgFh2Xs5nrGcchoBCxq3"
]
},
"19": {
"id": "19",
"title": "Other",
"taskIds": [
"FYhIe7EgPhNfGvXXxv5M",
"UHJbxLTGzUkhiBwv82TX",
"VOunV3vNOhc8cqhGhybr",
"d0uOKnXCePq6PqYEyC1B",
"dATqwiubOPmoEf1sUx96",
"jEPOhKTyXWwcIMBae2sz",
"uFUyK4fm99rNaZjYWc8E",
"wfXSqKS9hcDjBVWBAjFd"
]
}
},
"columnOrder": [
"16",
"8",
"2",
"17",
"6",
"19",
"12",
"15"
]
}
const ordersNew = {
activities: {
"0ABlEuOxu0OfCFaUFdty": {
"id": "0ABlEuOxu0OfCFaUFdty",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 12:55 pm",
"eventDate": "2023-02-15",
"content": "Orientation Course for Engineering Graduates and Science Postgraduates (OCES) was organised by Dr. Shubhajit Das, Assistant Professor and Dr. S. K. Chakraborty, Associate Professor, Faculty In-Charge, Training and Placement Cell, NIT Arunachal Pradesh in collaboration with Bhabha Atomic Research Centre ( BARC ), Mumbai, on the Career opportunities in frontline areas of nuclear, accelerator, and material science and technology in various units of the Department of Atomic Energy (DAE), from 15/2/2023 to 15/2/2023.",
"brochureUrl": "",
"imgCaption": "Outreach Activity",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FOutreach%20Activity%2FBARC.jpeg?alt=media&token=b35f377f-4891-4d43-8421-2dd7c00f0962"
],
"title": "Outreach Activity"
},
"2uFZThvlrhAen1H6DPIM": {
"id": "2uFZThvlrhAen1H6DPIM",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 1:05 pm",
"eventDate": "",
"content": "Das, S. (2023). *Content contributor and adapter for the Indian version of Fundamentals of Modern Manufacturing: Materials, Processes and Systems, 7th Edition by Mikell P. Groover*. Willey India Pvt. Ltd.. ISBN: 9781119722014",
"brochureUrl": "",
"imgCaption": "Books",
"imgUrl": [],
"title": "Books"
},
"3fvSMFh5ImV6OwVRGsD7": {
"id": "3fvSMFh5ImV6OwVRGsD7",
"author": "M. Momocha Singh",
"created": "01-Mar-2023, 10:02 am",
"eventDate": "2023-02-01",
"content": "M. Momocha Singh attended and mentored students for “Science and Technology Exhibition” organised by National Institute of Technology, Manipur held on 1st-2nd February, 2023 was organised by NIT Manipur, Assistant Professor and HoD on the Science and Technology Exhibition, from 1/2/2023 to 2/3/2023.",
"brochureUrl": "",
"imgCaption": "Outreach Activity",
"imgUrl": [],
"title": "Outreach Activity"
},
"5iAyUdUMSwtKvmkd6Xgh": {
"id": "5iAyUdUMSwtKvmkd6Xgh",
"author": "Preetisudha Meher",
"created": "28-Feb-2023, 7:13 pm",
"eventDate": "2023-01-21",
"content": "Dr. Preetisudha Meher, Assistant Professor, ECE, NITAP delivered a Invited Talk on \"Teaching Methods for Inspiring the Students\" in the one week online STTP on “Digital Tools for Writing, Authoring, Reviewing Research Articles and Managing Classes for Effective Teaching” organised by Organized by Department of ECE, NERIST Arunachal Pradesh , 21/1/2023.",
"brochureUrl": "",
"imgCaption": "Invited/Expert Lectures given by NIT AP members",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FInvited%2FExpert%20Lectures%20given%20by%20NIT%20AP%20members%2FWhatsApp%20Image%202023-01-21%20at%2014.06.07.jpeg?alt=media&token=aaa1fbe6-e185-44ce-852d-a4a294811806"
],
"title": "Invited/Expert Lectures given by NIT AP members"
},
"889KxVRxKu0osSEhlcoY": {
"id": "889KxVRxKu0osSEhlcoY",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 12:38 pm",
"eventDate": "2023-03-13",
"content": "Entrepreneurship and Skill Development Programme on Product Design & Development using Design Software and 3D Printing Operation will be organized by Dr. Prases K Mohanty, Assistant Professor and Dr. Shubhajit Das, Assistant Professor, Mechanical Engineering, sponsored by Ministry of Micro, Small and Medium Enterprises (MSME), from 13/3/2023 to 24/3/2023. More details, visit NITAP official website: www.nitap.ac.in or link of event: For Registration: https://forms.gle/ntrwkEBhWm3Ktsxi9 ",
"brochureUrl": "https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Brochure%2FAnnouncement%2FMSME%20Brouchure.pdf?alt=media&token=02c554b6-bb9d-42c7-b30d-76bff780b5fe",
"imgCaption": "Announcement",
"imgUrl": [],
"title": "Announcement"
},
"8J8vbX7FhXTXrXBj4AqH": {
"id": "8J8vbX7FhXTXrXBj4AqH",
"author": "S N Deepa",
"created": "02-Mar-2023, 10:12 pm",
"eventDate": "",
"content": "S.N.Deepa. (2022). 202211057825. Fruit Harvesting Inch Worm Robot - Indian Patent.",
"brochureUrl": "",
"imgCaption": "Patent (APA 7th edition format)",
"imgUrl": [],
"title": "Patent"
},
"B5gvMkAlUsjx7ho5chXa": {
"id": "B5gvMkAlUsjx7ho5chXa",
"author": "Preetisudha Meher",
"created": "28-Feb-2023, 7:17 pm",
"eventDate": "2023-02-21",
"content": "Dr. Preetisudha Meher, Assistant Professor, ECE, NITAP delivered a Invited Speech on \"“मातृभाषा का महत्व”\" in the at celebration of “International Mother Language Day” organised by Organized by Sree Narayana Gurukripa BED College, Pothencode, Tamilnadu in association with Siksha Sanskriti Utthhan Nyas, 21/2/2023.",
"brochureUrl": "",
"imgCaption": "Invited/Expert Lectures given by NIT AP members",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FInvited%2FExpert%20Lectures%20given%20by%20NIT%20AP%20members%2FWhatsApp%20Image%202023-02-28%20at%2019.12.49.jpeg?alt=media&token=f1412774-c5f1-498f-bbe0-8d616217d871"
],
"title": "Invited/Expert Lectures given by NIT AP members"
},
"Bb5kHCRLGPFQ2g5aFDuD": {
"id": "Bb5kHCRLGPFQ2g5aFDuD",
"author": "Preetisudha Meher",
"created": "28-Feb-2023, 7:20 pm",
"eventDate": "2023-02-22",
"content": "Dr. Preetisudha Meher, Assistant Professor, ECE, NITAP delivered a Invited Speech on \"National Education Policy - 2020\" in the “Artificial Intelligence, Machine Learning, and Internet of Things towards Engineering Applications” organised by Organized by Department of ECE, NERIST Arunachal Pradesh, 22/2/2023.",
"brochureUrl": "",
"imgCaption": "Invited/Expert Lectures given by NIT AP members",
"imgUrl": [],
"title": "Invited/Expert Lectures given by NIT AP members"
},
"FYhIe7EgPhNfGvXXxv5M": {
"id": "FYhIe7EgPhNfGvXXxv5M",
"author": "M. Momocha Singh",
"created": "01-Mar-2023, 10:00 am",
"eventDate": "",
"content": "M. Momocha Singh attended meetings with officials at Kendriya Vidyalaya Head Quarters, New Delhi for establishing New KV at NIT Arunachal Pradesh, Jote from 22nd January to 26th January, 2023.",
"brochureUrl": "",
"imgCaption": "Other",
"imgUrl": [],
"title": "KV opening at NIT Jote meeting"
},
"OgFh2Xs5nrGcchoBCxq3": {
"id": "OgFh2Xs5nrGcchoBCxq3",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 12:38 pm",
"eventDate": "2023-03-13",
"content": "Entrepreneurship and Skill Development Programme on Product Design & Development using Design Software and 3D Printing Operation will be organized by Dr. Prases K Mohanty, Assistant Professor and Dr. Shubhajit Das, Assistant Professor, Mechanical Engineering, sponsored by Ministry of Micro, Small and Medium Enterprises (MSME), from 13/3/2023 to 24/3/2023. More details, visit NITAP official website: www.nitap.ac.in or link of event: For Registration: https://forms.gle/ntrwkEBhWm3Ktsxi9 ",
"brochureUrl": "",
"imgCaption": "Announcement",
"imgUrl": [],
"title": "Announcement"
},
"QMjMCzszNQprKSPNxehj": {
"id": "QMjMCzszNQprKSPNxehj",
"author": "Nabakumar Pramanik",
"created": "23-Feb-2023, 6:14 pm",
"eventDate": "2023-01-26",
"content": "Dr. Nabakumar Pramanik, Associate Professor, CHE served as a *Reviewer* of \"Archiv der Pharmazie - Chemistry in Life Sciences\". Wiley-VCH GmbH. 26/1/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"Scmf3WmuVpdVuEaKg1gY": {
"id": "Scmf3WmuVpdVuEaKg1gY",
"author": "S N Deepa",
"created": "02-Mar-2023, 9:50 pm",
"eventDate": "2023-01-25",
"content": "S.N.Deepa, Associate Professor, Electrical Engineering, NITAP delivered a Keynote on \"Load Forecasting using Computational Intelligent Models\" in the 4th International Conference \ton Power and Embedded Drive Control ICPEDC 2023 organised by SSN College of Engineering, \tKalavakkam, Chennai., 25/1/2023.",
"brochureUrl": "",
"imgCaption": "Invited/Expert Lectures given by NIT AP members",
"imgUrl": [],
"title": "Invited/Expert Lectures given by NIT AP members"
},
"UHJbxLTGzUkhiBwv82TX": {
"id": "UHJbxLTGzUkhiBwv82TX",
"author": "Swarnendu Kumar Chakraborty",
"created": "28-Feb-2023, 12:20 pm",
"eventDate": "",
"content": "Our Alumnus, **Vivek Kumar Srivastava, M Tech 2016-18 Renewable Energy and Energy\nManagement** got the Best Poster Presentation Award among all the Electrical and Electronics\nPMRF Scholars in the **Annual PMRF Symposium 2023** held at the Indian Institute of\nTechnology, Madras, on 17th and 18th February 2023.",
"brochureUrl": "",
"imgCaption": "Vivek Kumar Srivastava receiving the Best Poster Presentation Award at the Annual PMRF Symposium 2023 at IIT Madras",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FOther%2F1.jpg?alt=media&token=efd51051-ce97-4d65-abb9-2be74e9ff8e0"
],
"title": "Alumni Cell Updates"
},
"UW18QJURhjqGsaraZLpf": {
"id": "UW18QJURhjqGsaraZLpf",
"author": "Sanjeev Kumar Metya",
"created": "22-Feb-2023, 8:21 pm",
"eventDate": "2023-02-17",
"content": "Dr. Sanjeev Kumar Metya, Assistant Professor, Electronics & Communication Engineering served as a *Reviewer* of \"International Transactions on Electrical Energy Systems\". Hindawi. 17/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"VOunV3vNOhc8cqhGhybr": {
"id": "VOunV3vNOhc8cqhGhybr",
"author": "M. Momocha Singh",
"created": "01-Mar-2023, 10:03 am",
"eventDate": "",
"content": "M. Momocha Singh participated in a refreshing session on \"Design Effective Innovation & Start-up Policy in HEIs\" organised by National Innovation and Startup Policy (NISP) Implementation Team, Ministry of Education's Innovation Cell held on 16th February, 2023",
"brochureUrl": "",
"imgCaption": "Other",
"imgUrl": [],
"title": "Design Effective Innovation & Start-up Policy in HEIs for NISP coordinator"
},
"d0uOKnXCePq6PqYEyC1B": {
"id": "d0uOKnXCePq6PqYEyC1B",
"author": "Swarnendu Kumar Chakraborty",
"created": "28-Feb-2023, 12:26 pm",
"eventDate": "",
"content": "Our Alumnus Abhishek Kumar (B Tech CSE 2016-20) joined 42Gears Mobility System as a software engineer.",
"brochureUrl": "",
"imgCaption": "Abhishek Kumar B.Tech CSE 2016-20",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FOther%2F2.jpg?alt=media&token=40ecadce-e59b-4eff-a543-5646d69064a4"
],
"title": "Alumni Cell Updates"
},
"dATqwiubOPmoEf1sUx96": {
"id": "dATqwiubOPmoEf1sUx96",
"author": "Swarnendu Kumar Chakraborty",
"created": "28-Feb-2023, 12:44 pm",
"eventDate": "",
"content": "Our Research Scholar **Soumya Upadhyay** PhD 2020 recently *published a patent* along with other faculty members of Department of Information Technology, College of Engineering Roorkee **on SYSTEM FOR ARTIFICIAL INTELLIGENCE BLOCKCHAIN ELECTRONIC COMMERCE BASED ON IOT/5G** on 10-02-2023. \nAPPLICATION No.-202311007707. \nName of the Applicant - COER University, Roorkee",
"brochureUrl": "",
"imgCaption": "Other",
"imgUrl": [],
"title": "Alumni Cell Updates"
},
"eWm8CihJML9FzIshpz7m": {
"id": "eWm8CihJML9FzIshpz7m",
"author": "S N Deepa",
"created": "02-Mar-2023, 9:53 pm",
"eventDate": "2023-02-14",
"content": "S.N.Deepa, Associate Professor, Electrical Engineering served as a *Reviewer* of \"Ain Shams Engineering Journal\". Elsevier Publishing. 14/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"imFEgjSpOe3bXzcKmkYc": {
"id": "imFEgjSpOe3bXzcKmkYc",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 1:07 pm",
"eventDate": "2023-02-20",
"content": "Dr. Shubhajit Das, Assistant Professor, Mechanical Engineering served as a *Reviewer* of \"Materials and Design\". Elsevier. 20/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"jEPOhKTyXWwcIMBae2sz": {
"id": "jEPOhKTyXWwcIMBae2sz",
"author": "M. Momocha Singh",
"created": "01-Mar-2023, 9:59 am",
"eventDate": "",
"content": "M. Momocha Singh participated in IIC consortium-specific orientation cum Q&A session “for institutionalizing the IIC institutions for better governance and growth in a particular state/UT” organised by Ministry of Education’s Innovation Cell (MIC) on 20th January 2023.",
"brochureUrl": "",
"imgCaption": "Other",
"imgUrl": [],
"title": "IIC consortium-specific orientation cum Q&A session"
},
"nsHtaWKpkZudMmGvmCA4": {
"id": "nsHtaWKpkZudMmGvmCA4",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 1:08 pm",
"eventDate": "2023-02-10",
"content": "Dr. Shubhajit Das, Assistant Professor, Mechanical Engineering served as a *Reviewer* of \"Materials Today\". Elsevier. 10/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"o3SFhvmMJrCXbdqm3Yr5": {
"id": "o3SFhvmMJrCXbdqm3Yr5",
"author": "Debjit Dutta",
"created": "27-Feb-2023, 9:27 pm",
"eventDate": "2023-02-10",
"content": "Dr. Debjit Dutta, Assistant Professor (Gr-I), Basic & Applied Sciences (NIT AP) served as a *Reviewer* of \"AICTE prescribed Engineering Mathematics (Calculus & Linear Algebra)-I Text Book\". Khanna Book publisher, NEW DELHI. 10/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"uFUyK4fm99rNaZjYWc8E": {
"id": "uFUyK4fm99rNaZjYWc8E",
"author": "Swarnendu Kumar Chakraborty",
"created": "28-Feb-2023, 12:47 pm",
"eventDate": "",
"content": "Our Alumnus Dr. Umesh Gupta (PhD 2017-21) was awarded the **Machine Learning Award** by **the editors of expert system of application** with **Certificate of Reviewing** in recognition to the review contributed to the journal.",
"brochureUrl": "",
"imgCaption": "Dr. Umesh Gupta received Machine Learning Award",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FOther%2F3.jpg?alt=media&token=87068fda-4d8c-41c4-bc9d-2dd0ee6f3c64"
],
"title": "Alumni Cell Updates"
},
"uQU1YidA1wany64rptwS": {
"id": "uQU1YidA1wany64rptwS",
"author": "Nabakumar Pramanik",
"created": "23-Feb-2023, 6:02 pm",
"eventDate": "2023-02-18",
"content": "Dr. Nabakumar Pramanik, Associate Professor, CHE served as a *Reviewer* of \"Iranian Polymer Journal\". Springer Nature. 18/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"wfXSqKS9hcDjBVWBAjFd": {
"id": "wfXSqKS9hcDjBVWBAjFd",
"author": "M. Momocha Singh",
"created": "01-Mar-2023, 10:04 am",
"eventDate": "",
"content": "M. Momocha Singh attended meetings with officials at Kendriya Vidyalaya Head Quarters, New Delhi “to follow up the matter related to establishment of New KV at NIT Arunachal Pradesh, Jote” as from 26th of February 2023 to 4th of March 2023",
"brochureUrl": "",
"imgCaption": "Other",
"imgUrl": [],
"title": "Project KV follow up meeting"
},
"wjbh57PReSfkWm3vJonJ": {
"id": "wjbh57PReSfkWm3vJonJ",
"author": "Sanjeev Kumar Metya",
"created": "22-Feb-2023, 8:26 pm",
"eventDate": "2023-01-05",
"content": "Dr. Sanjeev Kumar Metya, Assistant Professor, Electronics & Communication Engineering served as a *Reviewer* of \"International Conference on “Advancements in Smart Electronics, Materials and Communication Technologies” (ICASEMCT-2023)\". Springer. 5/1/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"yc5ABjPNj5xyFkVz8uQt": {
"id": "yc5ABjPNj5xyFkVz8uQt",
"author": "Sanjeev Kumar Metya",
"created": "22-Feb-2023, 8:28 pm",
"eventDate": "2023-02-01",
"content": "Dr. Sanjeev Kumar Metya, Assistant Professor, Electronics & Communication Engineering served as a *Reviewer* of \"Arab ICT Conference 2023 (AICTC 2023)\". IEEE. 1/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"yrUXC3AAAD5I9kAoWuns": {
"id": "yrUXC3AAAD5I9kAoWuns",
"author": "Preetisudha Meher",
"created": "28-Feb-2023, 7:22 pm",
"eventDate": "2023-02-13",
"content": "Internship course on on \"VLSI Chip Design\" was organized by Dr. Preetisudha Meher, at NIT Arunachal Pradesh, from 13/2/2023 to 12/3/2023.",
"brochureUrl": "",
"imgCaption": "Workshop / FDP / Conference / seminar / short term course etc.",
"imgUrl": [],
"title": "Workshop / FDP / Conference / seminar / short term course etc."
}
},
subSections: {
"2": {
"id": "2",
"title": "Invited/Expert Lectures given by NIT AP members",
"activityIds": [
"5iAyUdUMSwtKvmkd6Xgh",
"B5gvMkAlUsjx7ho5chXa",
"Bb5kHCRLGPFQ2g5aFDuD",
"Scmf3WmuVpdVuEaKg1gY"
]
},
"6": {
"id": "6",
"title": "Patent (APA 7th edition format)",
"activityIds": [
"8J8vbX7FhXTXrXBj4AqH"
]
},
"8": {
"id": "8",
"title": "Books",
"activityIds": [
"2uFZThvlrhAen1H6DPIM"
]
},
"12": {
"id": "12",
"title": "Reviewers",
"activityIds": [
"QMjMCzszNQprKSPNxehj",
"UW18QJURhjqGsaraZLpf",
"eWm8CihJML9FzIshpz7m",
"imFEgjSpOe3bXzcKmkYc",
"nsHtaWKpkZudMmGvmCA4",
"o3SFhvmMJrCXbdqm3Yr5",
"uQU1YidA1wany64rptwS",
"wjbh57PReSfkWm3vJonJ",
"yc5ABjPNj5xyFkVz8uQt"
]
},
"15": {
"id": "15",
"title": "Workshop / FDP / Conference / seminar / short term course etc.",
"activityIds": [
"yrUXC3AAAD5I9kAoWuns"
]
},
"16": {
"id": "16",
"title": "Outreach Activity",
"activityIds": [
"0ABlEuOxu0OfCFaUFdty",
"3fvSMFh5ImV6OwVRGsD7"
]
},
"17": {
"id": "17",
"title": "Announcement",
"activityIds": [
"889KxVRxKu0osSEhlcoY",
"OgFh2Xs5nrGcchoBCxq3"
]
},
"19": {
"id": "19",
"title": "Other",
"activityIds": [
"FYhIe7EgPhNfGvXXxv5M",
"UHJbxLTGzUkhiBwv82TX",
"VOunV3vNOhc8cqhGhybr",
"d0uOKnXCePq6PqYEyC1B",
"dATqwiubOPmoEf1sUx96",
"jEPOhKTyXWwcIMBae2sz",
"uFUyK4fm99rNaZjYWc8E",
"wfXSqKS9hcDjBVWBAjFd"
]
}
},
sections: {
'default': { id: 'default', title: 'All activiites', subSecIds: ["16", "8", "2", "17", "6", "19", "12", "15"] },
's0': { id: 's0', title: 'Academic Activities', subSecIds: [] },
's1': { id: 's1', title: 'Research & Development', subSecIds: [], categories: [] },
's2': { id: 's2', title: 'Faculty Empowerment Programs', subSecIds: [], categories: [] },
's3': { id: 's3', title: 'Awards', subSecIds: [], categories: [] },
's4': { id: 's4', title: 'Outreach Activities', subSecIds: [], categories: [] },
's5': { id: 's5', title: 'Alumni Association', subSecIds: [], categories: [] },
's6': { id: 's6', title: 'Upcoming Events', subSecIds: [], categories: [] },
},
sectionOrder: ['default', 's0', 's1', 's2', 's3', 's4', 's5', 's6']
}
const issue = {
"orders": {
"activities": {
"0ABlEuOxu0OfCFaUFdty": {
"id": "0ABlEuOxu0OfCFaUFdty",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 12:55 pm",
"eventDate": "2023-02-15",
"content": "Orientation Course for Engineering Graduates and Science Postgraduates (OCES) was organised by Dr. Shubhajit Das, Assistant Professor and Dr. S. K. Chakraborty, Associate Professor, Faculty In-Charge, Training and Placement Cell, NIT Arunachal Pradesh in collaboration with Bhabha Atomic Research Centre ( BARC ), Mumbai, on the Career opportunities in frontline areas of nuclear, accelerator, and material science and technology in various units of the Department of Atomic Energy (DAE), from 15/2/2023 to 15/2/2023.",
"brochureUrl": "",
"imgCaption": "Outreach Activity",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FOutreach%20Activity%2FBARC.jpeg?alt=media&token=b35f377f-4891-4d43-8421-2dd7c00f0962"
],
"title": "Outreach Activity"
},
"2uFZThvlrhAen1H6DPIM": {
"id": "2uFZThvlrhAen1H6DPIM",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 1:05 pm",
"eventDate": "",
"content": "Das, S. (2023). *Content contributor and adapter for the Indian version of Fundamentals of Modern Manufacturing: Materials, Processes and Systems, 7th Edition by Mikell P. Groover*. Willey India Pvt. Ltd.. ISBN: 9781119722014",
"brochureUrl": "",
"imgCaption": "Books",
"imgUrl": [],
"title": "Books"
},
"3fvSMFh5ImV6OwVRGsD7": {
"id": "3fvSMFh5ImV6OwVRGsD7",
"author": "M. Momocha Singh",
"created": "01-Mar-2023, 10:02 am",
"eventDate": "2023-02-01",
"content": "M. Momocha Singh attended and mentored students for “Science and Technology Exhibition” organised by National Institute of Technology, Manipur held on 1st-2nd February, 2023 was organised by NIT Manipur, Assistant Professor and HoD on the Science and Technology Exhibition, from 1/2/2023 to 2/3/2023.",
"brochureUrl": "",
"imgCaption": "Outreach Activity",
"imgUrl": [],
"title": "Outreach Activity"
},
"5iAyUdUMSwtKvmkd6Xgh": {
"id": "5iAyUdUMSwtKvmkd6Xgh",
"author": "Preetisudha Meher",
"created": "28-Feb-2023, 7:13 pm",
"eventDate": "2023-01-21",
"content": "Dr. Preetisudha Meher, Assistant Professor, ECE, NITAP delivered a Invited Talk on \"Teaching Methods for Inspiring the Students\" in the one week online STTP on “Digital Tools for Writing, Authoring, Reviewing Research Articles and Managing Classes for Effective Teaching” organised by Organized by Department of ECE, NERIST Arunachal Pradesh , 21/1/2023.",
"brochureUrl": "",
"imgCaption": "Invited/Expert Lectures given by NIT AP members",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FInvited%2FExpert%20Lectures%20given%20by%20NIT%20AP%20members%2FWhatsApp%20Image%202023-01-21%20at%2014.06.07.jpeg?alt=media&token=aaa1fbe6-e185-44ce-852d-a4a294811806"
],
"title": "Invited/Expert Lectures given by NIT AP members"
},
"889KxVRxKu0osSEhlcoY": {
"id": "889KxVRxKu0osSEhlcoY",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 12:38 pm",
"eventDate": "2023-03-13",
"content": "Entrepreneurship and Skill Development Programme on Product Design & Development using Design Software and 3D Printing Operation will be organized by Dr. Prases K Mohanty, Assistant Professor and Dr. Shubhajit Das, Assistant Professor, Mechanical Engineering, sponsored by Ministry of Micro, Small and Medium Enterprises (MSME), from 13/3/2023 to 24/3/2023. More details, visit NITAP official website: www.nitap.ac.in or link of event: For Registration: https://forms.gle/ntrwkEBhWm3Ktsxi9 ",
"brochureUrl": "https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Brochure%2FAnnouncement%2FMSME%20Brouchure.pdf?alt=media&token=02c554b6-bb9d-42c7-b30d-76bff780b5fe",
"imgCaption": "Announcement",
"imgUrl": [],
"title": "Announcement"
},
"8J8vbX7FhXTXrXBj4AqH": {
"id": "8J8vbX7FhXTXrXBj4AqH",
"author": "S N Deepa",
"created": "02-Mar-2023, 10:12 pm",
"eventDate": "",
"content": "S.N.Deepa. (2022). 202211057825. Fruit Harvesting Inch Worm Robot - Indian Patent.",
"brochureUrl": "",
"imgCaption": "Patent (APA 7th edition format)",
"imgUrl": [],
"title": "Patent"
},
"B5gvMkAlUsjx7ho5chXa": {
"id": "B5gvMkAlUsjx7ho5chXa",
"author": "Preetisudha Meher",
"created": "28-Feb-2023, 7:17 pm",
"eventDate": "2023-02-21",
"content": "Dr. Preetisudha Meher, Assistant Professor, ECE, NITAP delivered a Invited Speech on \"“मातृभाषा का महत्व”\" in the at celebration of “International Mother Language Day” organised by Organized by Sree Narayana Gurukripa BED College, Pothencode, Tamilnadu in association with Siksha Sanskriti Utthhan Nyas, 21/2/2023.",
"brochureUrl": "",
"imgCaption": "Invited/Expert Lectures given by NIT AP members",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FInvited%2FExpert%20Lectures%20given%20by%20NIT%20AP%20members%2FWhatsApp%20Image%202023-02-28%20at%2019.12.49.jpeg?alt=media&token=f1412774-c5f1-498f-bbe0-8d616217d871"
],
"title": "Invited/Expert Lectures given by NIT AP members"
},
"Bb5kHCRLGPFQ2g5aFDuD": {
"id": "Bb5kHCRLGPFQ2g5aFDuD",
"author": "Preetisudha Meher",
"created": "28-Feb-2023, 7:20 pm",
"eventDate": "2023-02-22",
"content": "Dr. Preetisudha Meher, Assistant Professor, ECE, NITAP delivered a Invited Speech on \"National Education Policy - 2020\" in the “Artificial Intelligence, Machine Learning, and Internet of Things towards Engineering Applications” organised by Organized by Department of ECE, NERIST Arunachal Pradesh, 22/2/2023.",
"brochureUrl": "",
"imgCaption": "Invited/Expert Lectures given by NIT AP members",
"imgUrl": [],
"title": "Invited/Expert Lectures given by NIT AP members"
},
"FYhIe7EgPhNfGvXXxv5M": {
"id": "FYhIe7EgPhNfGvXXxv5M",
"author": "M. Momocha Singh",
"created": "01-Mar-2023, 10:00 am",
"eventDate": "",
"content": "M. Momocha Singh attended meetings with officials at Kendriya Vidyalaya Head Quarters, New Delhi for establishing New KV at NIT Arunachal Pradesh, Jote from 22nd January to 26th January, 2023.",
"brochureUrl": "",
"imgCaption": "Other",
"imgUrl": [],
"title": "KV opening at NIT Jote meeting"
},
"OgFh2Xs5nrGcchoBCxq3": {
"id": "OgFh2Xs5nrGcchoBCxq3",
"author": "Shubhajit Das",
"created": "01-Mar-2023, 12:38 pm",
"eventDate": "2023-03-13",
"content": "Entrepreneurship and Skill Development Programme on Product Design & Development using Design Software and 3D Printing Operation will be organized by Dr. Prases K Mohanty, Assistant Professor and Dr. Shubhajit Das, Assistant Professor, Mechanical Engineering, sponsored by Ministry of Micro, Small and Medium Enterprises (MSME), from 13/3/2023 to 24/3/2023. More details, visit NITAP official website: www.nitap.ac.in or link of event: For Registration: https://forms.gle/ntrwkEBhWm3Ktsxi9 ",
"brochureUrl": "",
"imgCaption": "Announcement",
"imgUrl": [],
"title": "Announcement"
},
"QMjMCzszNQprKSPNxehj": {
"id": "QMjMCzszNQprKSPNxehj",
"author": "Nabakumar Pramanik",
"created": "23-Feb-2023, 6:14 pm",
"eventDate": "2023-01-26",
"content": "Dr. Nabakumar Pramanik, Associate Professor, CHE served as a *Reviewer* of \"Archiv der Pharmazie - Chemistry in Life Sciences\". Wiley-VCH GmbH. 26/1/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"Scmf3WmuVpdVuEaKg1gY": {
"id": "Scmf3WmuVpdVuEaKg1gY",
"author": "S N Deepa",
"created": "02-Mar-2023, 9:50 pm",
"eventDate": "2023-01-25",
"content": "S.N.Deepa, Associate Professor, Electrical Engineering, NITAP delivered a Keynote on \"Load Forecasting using Computational Intelligent Models\" in the 4th International Conference \ton Power and Embedded Drive Control ICPEDC 2023 organised by SSN College of Engineering, \tKalavakkam, Chennai., 25/1/2023.",
"brochureUrl": "",
"imgCaption": "Invited/Expert Lectures given by NIT AP members",
"imgUrl": [],
"title": "Invited/Expert Lectures given by NIT AP members"
},
"UHJbxLTGzUkhiBwv82TX": {
"id": "UHJbxLTGzUkhiBwv82TX",
"author": "Swarnendu Kumar Chakraborty",
"created": "28-Feb-2023, 12:20 pm",
"eventDate": "",
"content": "Our Alumnus, **Vivek Kumar Srivastava, M Tech 2016-18 Renewable Energy and Energy\nManagement** got the Best Poster Presentation Award among all the Electrical and Electronics\nPMRF Scholars in the **Annual PMRF Symposium 2023** held at the Indian Institute of\nTechnology, Madras, on 17th and 18th February 2023.",
"brochureUrl": "",
"imgCaption": "Vivek Kumar Srivastava receiving the Best Poster Presentation Award at the Annual PMRF Symposium 2023 at IIT Madras",
"imgUrl": [
"https://firebasestorage.googleapis.com/v0/b/designothon-bc5ca.appspot.com/o/Images%2FOther%2F1.jpg?alt=media&token=efd51051-ce97-4d65-abb9-2be74e9ff8e0"
],
"title": "Alumni Cell Updates"
},
"UW18QJURhjqGsaraZLpf": {
"id": "UW18QJURhjqGsaraZLpf",
"author": "Sanjeev Kumar Metya",
"created": "22-Feb-2023, 8:21 pm",
"eventDate": "2023-02-17",
"content": "Dr. Sanjeev Kumar Metya, Assistant Professor, Electronics & Communication Engineering served as a *Reviewer* of \"International Transactions on Electrical Energy Systems\". Hindawi. 17/2/2023.",
"brochureUrl": "",
"imgCaption": "Reviewers",
"imgUrl": [],
"title": "Reviewers"
},
"VOunV3vNOhc8cqhGhybr": {
"id": "VOunV3vNOhc8cqhGhybr",
"author": "M. Momocha Singh",
"created": "01-Mar-2023, 10:03 am",
"eventDate": "",