-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuzz.json
More file actions
3557 lines (3509 loc) · 186 KB
/
Buzz.json
File metadata and controls
3557 lines (3509 loc) · 186 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
[
{
"id":17228,
"date":"2020-12-27T11:23:37",
"date_gmt":"2020-12-27T05:53:37",
"guid":{
"rendered":"https:\/\/dduconnect.in\/?p=17228"
},
"modified":"2020-12-27T15:44:52",
"modified_gmt":"2020-12-27T10:14:52",
"slug":"heartfullness-meditation-orientation",
"status":"publish",
"type":"post",
"link":"https:\/\/dduconnect.in\/buzz\/2020\/12\/27\/heartfullness-meditation-orientation\/",
"title":{
"rendered":"Heartfullness Meditation Orientation"
},
"content":{
"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"17228\" class=\"elementor elementor-17228\" data-elementor-settings=\"[]\">\n\t\t\t<div class=\"elementor-inner\">\n\t\t\t\t<div class=\"elementor-section-wrap\">\n\t\t\t\t\t\t\t<section class=\"elementor-element elementor-element-8641943 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-id=\"8641943\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t<div class=\"elementor-row\">\n\t\t\t\t<div class=\"aux-parallax-section elementor-element elementor-element-18ec6e6 elementor-column elementor-col-100 elementor-top-column\" data-id=\"18ec6e6\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-column-wrap elementor-element-populated\">\n\t\t\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dc92f08 elementor-widget elementor-widget-text-editor\" data-id=\"dc92f08\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\"><p>Beginning 16th of December, a 3 day webinar was conducted by Dr. ND Desai Faculty of Medical Sciences and Research and Heartfullness Institute, with a goal to motivate students to practice medication and inculcate it into their lifestyle. Amidst the pandemic, the government recognized the need to address mental health issues and give support by adding meditation to their lifestyle. On the first day a broad idea was given to the students about what the benefits of meditation are and how it helps you discard unwanted thoughts and organize the important ones by Pediatrician Dr. Natwar Sharma. On the second day, the students were familiarized with the technique of “Cleansing” their thoughts and removing certain “impressions” from the mind by Orthopedic Surgeon Dr. Manish Kulkarni. The last day was equally meaningful and students were sensitized with the idea of “Connecting with Yourself” by Cardiologist Dr. Rahul Mehrotra. This brought clarity to a lot of students and helped them prioritize the right things in life.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t",
"protected":false
},
"excerpt":{
"rendered":"<p>Beginning 16th of December, a 3 day webinar was conducted by Dr. ND Desai Faculty of Medical Sciences and Research and Heartfullness Institute, with a goal to motivate students to practice medication and inculcate it into their lifestyle. Amidst the pandemic, the government recognized the need to address mental health issues and give support by […]<\/p>\n",
"protected":false
},
"author":22,
"featured_media":13153,
"comment_status":"closed",
"ping_status":"closed",
"sticky":false,
"template":"",
"format":"standard",
"meta":[
],
"categories":[
167
],
"tags":[
],
"_links":{
"self":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts\/17228"
}
],
"collection":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts"
}
],
"about":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/types\/post"
}
],
"author":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/users\/22"
}
],
"replies":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/comments?post=17228"
}
],
"version-history":[
{
"count":3,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts\/17228\/revisions"
}
],
"predecessor-version":[
{
"id":17248,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts\/17228\/revisions\/17248"
}
],
"wp:featuredmedia":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/media\/13153"
}
],
"wp:attachment":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/media?parent=17228"
}
],
"wp:term":[
{
"taxonomy":"category",
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/categories?post=17228"
},
{
"taxonomy":"post_tag",
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/tags?post=17228"
}
],
"curies":[
{
"name":"wp",
"href":"https:\/\/api.w.org\/{rel}",
"templated":true
}
]
},
"_embedded":{
"author":[
{
"id":22,
"name":"Bhagyarajsinh Gohil",
"url":"",
"description":"",
"link":"https:\/\/dduconnect.in\/author\/bhagyarajsinh\/",
"slug":"bhagyarajsinh",
"avatar_urls":{
"24":"https:\/\/secure.gravatar.com\/avatar\/f0cceb1b91f1e260f8ca8f95d7001ad0?s=24&r=g",
"48":"https:\/\/secure.gravatar.com\/avatar\/f0cceb1b91f1e260f8ca8f95d7001ad0?s=48&r=g",
"96":"https:\/\/secure.gravatar.com\/avatar\/f0cceb1b91f1e260f8ca8f95d7001ad0?s=96&r=g"
},
"_links":{
"self":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/users\/22"
}
],
"collection":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/users"
}
]
}
}
],
"wp:featuredmedia":[
{
"id":4452,
"date":"2019-02-25T22:13:28",
"slug":"buzz-3",
"type":"attachment",
"link":"https:\/\/dduconnect.in\/buzz\/attachment\/buzz-3\/",
"title":{
"rendered":"buzz"
},
"author":1,
"caption":{
"rendered":""
},
"alt_text":"",
"media_type":"image",
"mime_type":"image\/jpeg",
"media_details":{
"width":1920,
"height":600,
"file":"2019\/02\/buzz-1.jpg",
"sizes":{
"thumbnail":{
"file":"buzz-1-150x150.jpg",
"width":150,
"height":150,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-150x150.jpg"
},
"medium":{
"file":"buzz-1-300x300.jpg",
"width":300,
"height":300,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-300x300.jpg"
},
"medium_large":{
"file":"buzz-1-768x600.jpg",
"width":768,
"height":600,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-768x600.jpg"
},
"large":{
"file":"buzz-1-1024x600.jpg",
"width":1024,
"height":600,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-1024x600.jpg"
},
"post-thumbnail":{
"file":"buzz-1-280x180.jpg",
"width":280,
"height":180,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-280x180.jpg"
},
"awsm_team":{
"file":"buzz-1-500x500.jpg",
"width":500,
"height":500,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-500x500.jpg"
},
"full":{
"file":"buzz-1.jpg",
"width":1920,
"height":600,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1.jpg"
}
},
"image_meta":{
"aperture":"0",
"credit":"",
"camera":"",
"caption":"",
"created_timestamp":"0",
"copyright":"",
"focal_length":"0",
"iso":"0",
"shutter_speed":"0",
"title":"",
"orientation":"0",
"keywords":[
]
}
},
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1.jpg",
"_links":{
"self":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/media\/4452"
}
],
"collection":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/media"
}
],
"about":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/types\/attachment"
}
],
"author":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/users\/1"
}
],
"replies":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/comments?post=4452"
}
]
}
}
],
"wp:term":[
[
{
"id":167,
"link":"https:\/\/dduconnect.in\/category\/buzz\/",
"name":"BUZZ",
"slug":"buzz",
"taxonomy":"category",
"_links":{
"self":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/categories\/167"
}
],
"collection":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/categories"
}
],
"about":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/taxonomies\/category"
}
],
"wp:post_type":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts?categories=167"
}
],
"curies":[
{
"name":"wp",
"href":"https:\/\/api.w.org\/{rel}",
"templated":true
}
]
}
}
],
[
]
]
}
},
{
"id":17194,
"date":"2020-12-20T22:04:53",
"date_gmt":"2020-12-20T16:34:53",
"guid":{
"rendered":"https:\/\/dduconnect.in\/?p=17194"
},
"modified":"2020-12-27T10:28:08",
"modified_gmt":"2020-12-27T04:58:08",
"slug":"heroes-in-pandemic",
"status":"publish",
"type":"post",
"link":"https:\/\/dduconnect.in\/buzz\/2020\/12\/20\/heroes-in-pandemic\/",
"title":{
"rendered":"Heroes in pandemic"
},
"content":{
"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"17194\" class=\"elementor elementor-17194\" data-elementor-settings=\"[]\">\n\t\t\t<div class=\"elementor-inner\">\n\t\t\t\t<div class=\"elementor-section-wrap\">\n\t\t\t\t\t\t\t<section class=\"elementor-element elementor-element-10f5f61 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-id=\"10f5f61\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t<div class=\"elementor-row\">\n\t\t\t\t<div class=\"aux-parallax-section elementor-element elementor-element-a1ac7c0 elementor-column elementor-col-100 elementor-top-column\" data-id=\"a1ac7c0\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-column-wrap elementor-element-populated\">\n\t\t\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e173048 elementor-widget elementor-widget-text-editor\" data-id=\"e173048\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\"><p>In these unprecedented and changing times, two alumni of Dharmsinh Desai university have devoted themselves to assist people in need, in an effort to fight hunger and help families adversely affected by the pandemic.<\/p>\n<p>Dr. Sajid Mogal (2015) and Dr. Furqan Maulvi (2016) are alumni of DDU, who were guided for their Ph.D. thesis by Dr. Dinesh O. Shah \u2013 founder of Shah-Schulman Center for Surface Science and Nanotechnology, DDU. After Ph.D., Dr. Mogal took a teaching position in Central Gujarat near Mehsana and Dr. Maulvi rejoined as a faculty member at Maliba Pharmacy College, Surat. When the Covid-19 hit their areas, both of them devoted their spare time to assist the people undergoing tragedies. <\/p>\n<p>The other student, Dr. Sajid Mogal provided leadership to offer a medical treatment Center for Covid-19 victims by collecting donations amounting up to 2.5 Crore rupees, rent a large hall, provide 30 beds, hire medical staff and obtain Oxygen cylinders for patients. In this hall, the charges for the treatment are just Rs. 1.0 per day. This hall serves as a blessing to poor people and those who could not get into regular hospitals.<\/p>\n<p>The students of Gujarati medium were facing problem during pandemic as the online courses were having quality lecture notes in Gujarati. Dr Mogal who had schooling in Gujarati medium took initiative and started YouTube channel \u201c<em>Space and Time<\/em>\u201d for Physics (JEE\/NEET content) in Gujarati. More than 700 students across Gujarat attend this high quality courses free (https:\/\/www.youtube.com\/c\/SajidMogal)<\/p>\n<p>Dr. Furqan Maulvi organized Faiza-ne-Panjetan Committee to distribute free food, milk, fruits and vegetables to 450 victim families in Surat for 3 months. The Committee was awarded by SMC and Surat Jain Samaj. Dr. Dinesh Shah was deeply touched by their social service that he sent his own contribution (1000 USD) to assist in their food distribution program.<\/p>\n<p>The help was given to all victims irrespective of their religion. Dr. Mogal and Dr. Maulavi are doing commendable work and continue to aid people in need on top of their regular duties in their colleges. <\/p>\n<p>Whenever times get tough, people emerge as heroes to help in any way possible and serve as inspiration for others. What India needs is a new generation of young people like these two students to provide leadership and inspire people to go above and beyond. India can move forward rapidly if all of us unite as equals, help each other and fight for humanity.<\/p>\n<div>\n<div>\n<div>\n<p><!-- [if !supportAnnotations]--><\/p>\n<\/div>\n<p><!--[endif]--><\/p>\n<\/div>\n<\/div><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t",
"protected":false
},
"excerpt":{
"rendered":"<p>In these unprecedented and changing times, two alumni of Dharmsinh Desai university have devoted themselves to assist people in need, in an effort to fight hunger and help families adversely affected by the pandemic. Dr. Sajid Mogal (2015) and Dr. Furqan Maulvi (2016) are alumni of DDU, who were guided for their Ph.D. thesis by […]<\/p>\n",
"protected":false
},
"author":23,
"featured_media":4452,
"comment_status":"open",
"ping_status":"closed",
"sticky":false,
"template":"",
"format":"standard",
"meta":[
],
"categories":[
167
],
"tags":[
],
"_links":{
"self":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts\/17194"
}
],
"collection":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts"
}
],
"about":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/types\/post"
}
],
"author":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/users\/23"
}
],
"replies":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/comments?post=17194"
}
],
"version-history":[
{
"count":5,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts\/17194\/revisions"
}
],
"predecessor-version":[
{
"id":17227,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts\/17194\/revisions\/17227"
}
],
"wp:featuredmedia":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/media\/4452"
}
],
"wp:attachment":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/media?parent=17194"
}
],
"wp:term":[
{
"taxonomy":"category",
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/categories?post=17194"
},
{
"taxonomy":"post_tag",
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/tags?post=17194"
}
],
"curies":[
{
"name":"wp",
"href":"https:\/\/api.w.org\/{rel}",
"templated":true
}
]
},
"_embedded":{
"author":[
{
"id":23,
"name":"Viraj Mahida",
"url":"",
"description":"",
"link":"https:\/\/dduconnect.in\/author\/viraj\/",
"slug":"viraj",
"avatar_urls":{
"24":"https:\/\/secure.gravatar.com\/avatar\/3db81ef1a458c69cd3ab7efb222c7aad?s=24&r=g",
"48":"https:\/\/secure.gravatar.com\/avatar\/3db81ef1a458c69cd3ab7efb222c7aad?s=48&r=g",
"96":"https:\/\/secure.gravatar.com\/avatar\/3db81ef1a458c69cd3ab7efb222c7aad?s=96&r=g"
},
"_links":{
"self":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/users\/23"
}
],
"collection":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/users"
}
]
}
}
],
"wp:featuredmedia":[
{
"id":4452,
"date":"2019-02-25T22:13:28",
"slug":"buzz-3",
"type":"attachment",
"link":"https:\/\/dduconnect.in\/buzz\/attachment\/buzz-3\/",
"title":{
"rendered":"buzz"
},
"author":1,
"caption":{
"rendered":""
},
"alt_text":"",
"media_type":"image",
"mime_type":"image\/jpeg",
"media_details":{
"width":1920,
"height":600,
"file":"2019\/02\/buzz-1.jpg",
"sizes":{
"thumbnail":{
"file":"buzz-1-150x150.jpg",
"width":150,
"height":150,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-150x150.jpg"
},
"medium":{
"file":"buzz-1-300x300.jpg",
"width":300,
"height":300,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-300x300.jpg"
},
"medium_large":{
"file":"buzz-1-768x600.jpg",
"width":768,
"height":600,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-768x600.jpg"
},
"large":{
"file":"buzz-1-1024x600.jpg",
"width":1024,
"height":600,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-1024x600.jpg"
},
"post-thumbnail":{
"file":"buzz-1-280x180.jpg",
"width":280,
"height":180,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-280x180.jpg"
},
"awsm_team":{
"file":"buzz-1-500x500.jpg",
"width":500,
"height":500,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-500x500.jpg"
},
"full":{
"file":"buzz-1.jpg",
"width":1920,
"height":600,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1.jpg"
}
},
"image_meta":{
"aperture":"0",
"credit":"",
"camera":"",
"caption":"",
"created_timestamp":"0",
"copyright":"",
"focal_length":"0",
"iso":"0",
"shutter_speed":"0",
"title":"",
"orientation":"0",
"keywords":[
]
}
},
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1.jpg",
"_links":{
"self":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/media\/4452"
}
],
"collection":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/media"
}
],
"about":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/types\/attachment"
}
],
"author":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/users\/1"
}
],
"replies":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/comments?post=4452"
}
]
}
}
],
"wp:term":[
[
{
"id":167,
"link":"https:\/\/dduconnect.in\/category\/buzz\/",
"name":"BUZZ",
"slug":"buzz",
"taxonomy":"category",
"_links":{
"self":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/categories\/167"
}
],
"collection":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/categories"
}
],
"about":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/taxonomies\/category"
}
],
"wp:post_type":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts?categories=167"
}
],
"curies":[
{
"name":"wp",
"href":"https:\/\/api.w.org\/{rel}",
"templated":true
}
]
}
}
],
[
]
]
}
},
{
"id":8077,
"date":"2019-12-15T09:51:00",
"date_gmt":"2019-12-15T04:21:00",
"guid":{
"rendered":"https:\/\/dduconnect.in\/?p=8077"
},
"modified":"2020-03-08T17:01:32",
"modified_gmt":"2020-03-08T11:31:32",
"slug":"dsc-ddu",
"status":"publish",
"type":"post",
"link":"https:\/\/dduconnect.in\/buzz\/2019\/12\/15\/dsc-ddu\/",
"title":{
"rendered":"DSC DDU"
},
"content":{
"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"8077\" class=\"elementor elementor-8077\" data-elementor-settings=\"[]\">\n\t\t\t<div class=\"elementor-inner\">\n\t\t\t\t<div class=\"elementor-section-wrap\">\n\t\t\t\t\t\t\t<section class=\"elementor-element elementor-element-ac6e34d elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-id=\"ac6e34d\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t<div class=\"elementor-row\">\n\t\t\t\t<div class=\"aux-parallax-section elementor-element elementor-element-c6d806b elementor-column elementor-col-100 elementor-top-column\" data-id=\"c6d806b\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-column-wrap elementor-element-populated\">\n\t\t\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eab54f0 elementor-widget elementor-widget-text-editor\" data-id=\"eab54f0\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\">The Developer Students Club (DSC) of our University which is powered by Google Developers, held seminars in the first as well as the second session of the current semester.\nThe first seminar, ‘Introduction to Android Development’ was held on 6th July ’19. Students were taught the basics of Android App Development followed by a workshop where students gained hands-on experience. The seminar was well received by the students and introduced them to the world of app development which is a trending field in smartphone technology.\nThe Cloud Study Jam seminar was conducted on 13th July and was focused on the Google Cloud Platform and its fundamentals. They were taught the basics of Cloud Computing and later during the workshop, they were given access to Google Cloud Platform itself to perform various tasks in the form of labs. Their progress was tracked and on successful completion of the labs, they were provided with goodies from Google Developers. Due to the enthusiasm shown by the students and limited seats, the club conducted a second Cloud Study Jam on 10th Aug for the students who could not attend the first.\nThe seminar ‘Machine Learning from Scratch’, was conducted on 19th July where the students were introduced to the fascinating world of machine learning. They learned about various libraries and gained hands-on experience in neural networks later in the workshop.\nAll the seminars were received with great enthusiasm from the students. They were coordinated by the Developer Students Club Lead Vivek Parmar ( CE 7th Semester) and the members from the respective teams of Android Development, Google Cloud Platform and Machine Learning. The seminars were a great success and the efforts of Developer Student Club to introduce students to the latest as well as trending technologies were commendable. \n\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t",
"protected":false
},
"excerpt":{
"rendered":"<p>The Developer Students Club (DSC) of our University which is powered by Google Developers, held seminars in the first as well as the second session of the current semester. The first seminar, ‘Introduction to Android Development’ was held on 6th July ’19. Students were taught the basics of Android App Development followed by a workshop […]<\/p>\n",
"protected":false
},
"author":15,
"featured_media":4452,
"comment_status":"open",
"ping_status":"closed",
"sticky":false,
"template":"",
"format":"standard",
"meta":[
],
"categories":[
167
],
"tags":[
],
"_links":{
"self":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts\/8077"
}
],
"collection":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts"
}
],
"about":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/types\/post"
}
],
"author":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/users\/15"
}
],
"replies":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/comments?post=8077"
}
],
"version-history":[
{
"count":3,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts\/8077\/revisions"
}
],
"predecessor-version":[
{
"id":8092,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts\/8077\/revisions\/8092"
}
],
"wp:featuredmedia":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/media\/4452"
}
],
"wp:attachment":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/media?parent=8077"
}
],
"wp:term":[
{
"taxonomy":"category",
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/categories?post=8077"
},
{
"taxonomy":"post_tag",
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/tags?post=8077"
}
],
"curies":[
{
"name":"wp",
"href":"https:\/\/api.w.org\/{rel}",
"templated":true
}
]
},
"_embedded":{
"author":[
{
"id":15,
"name":"Harshal Parmecha",
"url":"",
"description":"",
"link":"https:\/\/dduconnect.in\/author\/harshal\/",
"slug":"harshal",
"avatar_urls":{
"24":"https:\/\/secure.gravatar.com\/avatar\/1fdd2f9b1af2e03f09c831a026734f42?s=24&r=g",
"48":"https:\/\/secure.gravatar.com\/avatar\/1fdd2f9b1af2e03f09c831a026734f42?s=48&r=g",
"96":"https:\/\/secure.gravatar.com\/avatar\/1fdd2f9b1af2e03f09c831a026734f42?s=96&r=g"
},
"_links":{
"self":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/users\/15"
}
],
"collection":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/users"
}
]
}
}
],
"wp:featuredmedia":[
{
"id":4452,
"date":"2019-02-25T22:13:28",
"slug":"buzz-3",
"type":"attachment",
"link":"https:\/\/dduconnect.in\/buzz\/attachment\/buzz-3\/",
"title":{
"rendered":"buzz"
},
"author":1,
"caption":{
"rendered":""
},
"alt_text":"",
"media_type":"image",
"mime_type":"image\/jpeg",
"media_details":{
"width":1920,
"height":600,
"file":"2019\/02\/buzz-1.jpg",
"sizes":{
"thumbnail":{
"file":"buzz-1-150x150.jpg",
"width":150,
"height":150,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-150x150.jpg"
},
"medium":{
"file":"buzz-1-300x300.jpg",
"width":300,
"height":300,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-300x300.jpg"
},
"medium_large":{
"file":"buzz-1-768x600.jpg",
"width":768,
"height":600,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-768x600.jpg"
},
"large":{
"file":"buzz-1-1024x600.jpg",
"width":1024,
"height":600,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-1024x600.jpg"
},
"post-thumbnail":{
"file":"buzz-1-280x180.jpg",
"width":280,
"height":180,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-280x180.jpg"
},
"awsm_team":{
"file":"buzz-1-500x500.jpg",
"width":500,
"height":500,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1-500x500.jpg"
},
"full":{
"file":"buzz-1.jpg",
"width":1920,
"height":600,
"mime_type":"image\/jpeg",
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1.jpg"
}
},
"image_meta":{
"aperture":"0",
"credit":"",
"camera":"",
"caption":"",
"created_timestamp":"0",
"copyright":"",
"focal_length":"0",
"iso":"0",
"shutter_speed":"0",
"title":"",
"orientation":"0",
"keywords":[
]
}
},
"source_url":"https:\/\/dduconnect.in\/wp-content\/uploads\/2019\/02\/buzz-1.jpg",
"_links":{
"self":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/media\/4452"
}
],
"collection":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/media"
}
],
"about":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/types\/attachment"
}
],
"author":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/users\/1"
}
],
"replies":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/comments?post=4452"
}
]
}
}
],
"wp:term":[
[
{
"id":167,
"link":"https:\/\/dduconnect.in\/category\/buzz\/",
"name":"BUZZ",
"slug":"buzz",
"taxonomy":"category",
"_links":{
"self":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/categories\/167"
}
],
"collection":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/categories"
}
],
"about":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/taxonomies\/category"
}
],
"wp:post_type":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts?categories=167"
}
],
"curies":[
{
"name":"wp",
"href":"https:\/\/api.w.org\/{rel}",
"templated":true
}
]
}
}
],
[
]
]
}
},
{
"id":8075,
"date":"2019-12-14T09:49:00",
"date_gmt":"2019-12-14T04:19:00",
"guid":{
"rendered":"https:\/\/dduconnect.in\/?p=8075"
},
"modified":"2020-03-08T16:54:15",
"modified_gmt":"2020-03-08T11:24:15",
"slug":"oral-implantology-seminar-2",
"status":"publish",
"type":"post",
"link":"https:\/\/dduconnect.in\/buzz\/2019\/12\/14\/oral-implantology-seminar-2\/",
"title":{
"rendered":"ORAL IMPLANTOLOGY SEMINAR"
},
"content":{
"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"8075\" class=\"elementor elementor-8075\" data-elementor-settings=\"[]\">\n\t\t\t<div class=\"elementor-inner\">\n\t\t\t\t<div class=\"elementor-section-wrap\">\n\t\t\t\t\t\t\t<section class=\"elementor-element elementor-element-04a64a8 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\" data-id=\"04a64a8\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t<div class=\"elementor-row\">\n\t\t\t\t<div class=\"aux-parallax-section elementor-element elementor-element-f36ac75 elementor-column elementor-col-100 elementor-top-column\" data-id=\"f36ac75\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-column-wrap elementor-element-populated\">\n\t\t\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t<div class=\"elementor-element elementor-element-183c67d elementor-widget elementor-widget-text-editor\" data-id=\"183c67d\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\"><p>On 14th December 2019, a seminar on oral implantology was conducted by Faculty of Dental Science. Dr Arvind U D, an Oral and Maxillofacial surgeon, gave a guest lecture on Implantology and Maxillofacial surgery. He was awarded \u201cExcellence in Dental Implantology\u201d by Indian Health Professional awards, New Delhi in 2017. He has an experience of over ten years in the field of Dental Implantology. He is the CEO of Dr Arvind\u2019s Dental and Maxillofacial clinic in Hyderabad. In this seminar, he explained the research carried out on Implantology and Maxillofacial surgery and its advantages in detail. Implantology is a branch of dentistry dedicated to dental implants of an artificial tooth. Oral and maxillofacial surgery is focused on treating problems related to the hard and soft tissues of the face, mouth and jaws. He focused on the technique to perform the surgery and its success rate over a period. The lecture was then followed by a live demonstration of the surgery on an oral model. His expertise in the field and experience made the study of Implantology easy and very useful for the students of Dental Science. The seminar was very beneficial for the students.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t",
"protected":false
},
"excerpt":{
"rendered":"<p>On 14th December 2019, a seminar on oral implantology was conducted by Faculty of Dental Science. Dr Arvind U D, an Oral and Maxillofacial surgeon, gave a guest lecture on Implantology and Maxillofacial surgery. He was awarded \u201cExcellence in Dental Implantology\u201d by Indian Health Professional awards, New Delhi in 2017. He has an experience of […]<\/p>\n",
"protected":false
},
"author":15,
"featured_media":4452,
"comment_status":"open",
"ping_status":"closed",
"sticky":false,
"template":"",
"format":"standard",
"meta":[
],
"categories":[
167
],
"tags":[
],
"_links":{
"self":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts\/8075"
}
],
"collection":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts"
}
],
"about":[
{
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/types\/post"
}
],
"author":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/users\/15"
}
],
"replies":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/comments?post=8075"
}
],
"version-history":[
{
"count":5,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts\/8075\/revisions"
}
],
"predecessor-version":[
{
"id":8095,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/posts\/8075\/revisions\/8095"
}
],
"wp:featuredmedia":[
{
"embeddable":true,
"href":"https:\/\/dduconnect.in\/wp-json\/wp\/v2\/media\/4452"