-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
1036 lines (982 loc) · 67.2 KB
/
Copy pathabout.html
File metadata and controls
1036 lines (982 loc) · 67.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About</title>
<link href="css/bootstrap.css" rel="stylesheet">
<!--<link href="css/animate.css" rel="stylesheet">-->
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="css/home_css.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- header start -->
<div class="example3">
<nav class="navbar navbar-default navbar-fixed-top navbar-links">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar3">
<span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span
class="icon-bar"></span> <span class="icon-bar"></span> </button>
<a class="navbar-brand" href="index.html"><img src="images/home/logo.jpeg" alt="#"> </a>
</div>
<div id="navbar3" class="navbar-collapse collapse">
<ul class="nav navbar-nav" style="background-color: #ffffff">
<li class=""><a href="index.html">Home</a>
</li>
<li class=""><a href="#">About</a>
</li>
<li class="">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Our Focus Areas <span
class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="./our-focus-areass/legal-framework-analysis.html">Legal Framework
Analysis</a>
</li>
<li><a href="./our-focus-areass/gram-panchayat.html">Gram Panchayat
Organization Development</a>
</li>
<li><a href="./our-focus-areass/technology-for-governance.html">Technology For
Governance</a>
</li>
<li><a href="./our-focus-areass/impact-evalution.html">Impact Evaluation</a>
</li>
</ul>
</li>
<li class=""><a href="gallery.html">Gallery</a>
</li>
<li class=""> <a class="dropdown-toggle" data-toggle="dropdown" href="#">Resources<span
class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="./resources/media-and-publication.html">Media and Publications</a>
</li>
<li><a href="./resources/case-studies.html">Case Studies</a>
</li>
<li><a href="./resources/reports.html">Reports</a>
</li>
</ul>
</li>
<li class=""><a href="projects.html">Projects</a>
</li>
<li class=""><a href="contact.html">Contact</a>
</li>
<li class=""><a target="_blank" href="http://orgmaptool.anodegovernancelab.in/">Org Map Tool</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<!-- header end -->
<div class="jumbotron jumbotron-sm">
<div class="container">
<div class="row">
<div class="col-sm-12 col-lg-12 text-center animated pulse">
<h1 style="font-size: 27px; color: #ffffff"> About Us </h1>
</div>
</div>
</div>
</div>
<div class="container" style="padding-bottom: 10px; margin-bottom: 120px;">
<div class="row">
<div class="col-md-10">
<!-- tabs left -->
<ul class="nav nav-pills nav-stacked hidden-md hidden-lg hidden-sm"
style="margin-bottom: 20px !important">
<li class="active"><a href="#a" data-toggle="tab">Anode Governance Lab</a>
</li>
<li><a href="#b" data-toggle="tab">People</a>
</li>
<li><a href="#f" data-toggle="tab">Partners</a>
</li>
</ul>
<div class="tabbable tabs-left">
<ul class="nav nav-tabs hidden-xs" style="padding: 15px !important">
<li class="active"><a href="#a" data-toggle="tab" aria-expanded="true">Anode Governance Lab</a>
</li>
<li class=""><a href="#b" data-toggle="tab" aria-expanded="false">People</a>
</li>
<li class=""><a href="#f" data-toggle="tab" aria-expanded="false">Partners - Past and
Present</a>
</li>
</ul>
<div class="tab-content col-md-8" style="background-color: #fff;padding: 20px !important;">
<div class="tab-pane active" id="a">
<p
style="box-sizing: inherit; font-family: myFirstFont; text-align: justify; font-size: 13px !important;">
Anode Governance Lab is a Bangalore based organisation that works towards strengthening
governance and enabling public institutions to function effectively. Our belief is that
vibrant and learning institutions adapt and negotiate with the external environment to
deliver their mandate consistently. Our institution building efforts leverage
organisation development (OD) principles, which adopts a systemic view to change,
associating with members of the institution as participants and not recipients of
change.</p>
<p
style="text-align: justify; box-sizing: inherit; font-family: myFirstFont; font-size: 13px !important;">
We partner with professionals from different disciplines, as well as with government and
non-government organisations that are committed to sustainable change processes through
effective institutions.</p>
<p style="box-sizing: inherit; font-family: myFirstFont; font-size: 13px !important;">Our
focus areas:</p>
<ul class="tab_ul" style="box-sizing: inherit; list-style-image: url(" images=""
li_icon.png");="" font-size:="" 13px;="" font-family:="" myfirstfont;"="">
<li style="box-sizing: inherit;">Research and analysis of legal framework impacting
governance</li>
<li style="box-sizing: inherit;">Strengthening institutional capacities of local
governments, leveraging principles of organisation development</li>
<li style="box-sizing: inherit;">Leveraging Technology for Driving Transparency and
Accountability</li>
<li style="box-sizing: inherit;">Impact evaluation of existing programs</li>
</ul> <a id="readmore" data-toggle="collapse" data-target="#aboutusinner"><span
class="label label-default">Read More <i class="fa fa-plus"></i></span> </a>
<div id="aboutusinner" class="collapse readMore">
<p
style="box-sizing: inherit; font-family: myFirstFont; text-align: justify; font-size: 13px !important;">
<b style="box-sizing: inherit;">Our experience:</b>
</p>
<p style="text-align: justify; margin-bottom: 0px; font-stretch: normal; font-size: 12px; line-height: normal;"
helvetica="" neue";="" color:="" rgb(69,="" 69,="" 69);"="">We have been working
with rural local government institutions since 2011. Our journey started in
Karnataka with an intensive 3-year action research project, premised on the
assumption that effective rural local governments (Gram Panchayats) will be able to
address the persistent gaps in delivery of services at the last mile. With
encouraging results, we formalised the Gram Panchayat Organisation Development
(GPOD) framework, which was subsequently selected as the foundation for an
innovation project by the Union Ministry of Panchayat Raj, under the Rajiv Gandhi
Panchayat Sashaktikaran Abhiyan (RGPSA) program.</p>
<p style="margin-bottom: 0px; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "
helvetica="" neue";="" color:="" rgb(69,="" 69,="" 69);="" min-height:="" 14px;"="">
<br>
</p>
<p style="text-align: justify; margin-bottom: 0px; font-stretch: normal; font-size: 12px; line-height: normal;"
helvetica="" neue";="" color:="" rgb(69,="" 69,="" 69);"="">Our work is founded on a
deep understanding and research related to internal arrangements of institutions, as
well as the external environment that they exist in: social, legal and
administrative, enabling us to design our efforts to needs of different
contexts. </p>
<p style="margin-bottom: 0px; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "
helvetica="" neue";="" color:="" rgb(69,="" 69,="" 69);="" min-height:="" 14px;"="">
<br>
</p>
<p
style="box-sizing: inherit; font-family: myFirstFont; text-align: justify; font-size: 13px !important;">
<span style="color: rgb(69, 69, 69); font-family: " helvetica="" neue";=""
font-size:="" 12px;"="">We are presently working across 4 states: Karnataka,
Jharkhand, Madhya Pradesh and Maharashtra</span>.
</p>
<p
style="box-sizing: inherit; font-family: myFirstFont; text-align: justify; font-size: 13px !important;">
<a href="http://localhost:81/anode/anode/projects"
style="box-sizing: inherit; color: inherit;"><span class="label label-default"
style="box-sizing: inherit; font-size: 9.75px;">Projects</span></a>
</p>
<p
style="box-sizing: inherit; font-family: myFirstFont; text-align: justify; font-size: 13px !important;">
<b style="box-sizing: inherit;">Our purpose:</b>
</p>
<p
style="box-sizing: inherit; font-family: myFirstFont; text-align: justify; font-size: 13px !important;">
Anode aims to shape the approach for building effective local governments, rural and
urban, and other institutions towards enabling deeper democratic processes and
improvement in delivery of services. We hope to be engaged in more critical work,
developing connections and conversations between presently disparate, yet related
institutions, towards further solution building and targeted results.</p>
<p
style="box-sizing: inherit; font-family: myFirstFont; text-align: justify; font-size: 13px !important;">
</p>
<p
style="box-sizing: inherit; font-family: myFirstFont; text-align: justify; font-size: 13px !important;">
<b style="box-sizing: inherit;">Incorporation details:</b>
</p>
<p
style="box-sizing: inherit; font-family: myFirstFont; text-align: justify; font-size: 13px !important;">
Anode Governance Lab is registered as a Governance and Management consulting
organisation, as a Commercial Establishment under the Karnataka Shops and Commercial
Establishments Act,1961 on 30-03-2016. The Registration is valid upto 31-12-2020.
Its registered office is at 514, Raindrops Apartments, 10 ½ Haralur Road, Off
Sarjapur Road, Bangalore 560102. </p>
</div>
</div>
<div class="tab-pane" id="b">
<div class="col-md-12">
<h4>
<b>
Core team
</b>
</h4>
<hr>
<div class="row teamCard">
<div class="col-md-3">
<img src="images/about/one-sonali.jpeg" class="img-responsive img-rounded">
</div>
<div class="col-md-9 text-justify">
<p>
<b>
Sonali Srivastava
</b>
<br>
Founder and CEO
<br>
<a target="_blank"
href="https://www.linkedin.com/in/sonali-srivastava-6401374/"
class="fa fa-linkedin"></a>
|
<a class="fa fa-envelope" href="mailto:sonali@anodegovernancelab.in"></a>
</p>
<p>
Sonali founded Anode to help harness the capacities of local institutions,
and mainstream local institutions towards the end of inclusive and effective
governance. She has been instrumental in conceptualising the Gram Panchayat
Organisation Development (GPOD) framework, an organisational capacity
development tool that helps transform Panchayats into responsive units of
self-governments.
</p>
<a style="margin-left: 5px" data-toggle="collapse" data-target="#name1"><span
class="label label-default">Read More <i class="fa fa-plus"></i></span>
</a>
</div>
<div class="col-md-12 text-justify">
<div id="name1" class="collapse readMore">
<p>
Sonali has 25+ years of experience as a development & management
professional. She has previously worked at Asian Paints (India) Ltd,
Barefoot College Tilonia, Eicher Consulting Services, Arghyam and
Avantika Foundation. She is a Director on the Board of Trickle Up India
(can add link), which is committed to bringing the ultra-poor out of
poverty, Governing Council member of India Panchayat Foundation, an
independent non-partisan, pan-India multi-stakeholder platform to
strengthen Panchayati Raj Institutions, and Member of the TIDE General
body, a development organisation that leverages technology for
conserving environment and addressing societal issues.
</p>
<p>
Sonali holds a Personnel Management and Industrial Relations degree from
XLRI Jamshedpur and a Masters in Development Studies from SOAS,
University of London.
</p>
<p>
Sonali is a keen yoga practitioner, enjoys singing sessions, lending her
voice too at times. She loves the calm and quiet of the outdoors and has
dreams of making it to the Everest base camp sometime in her life!
</p>
</div>
</div>
</div>
<div class="row teamCard">
<div class="col-md-3">
<img src="images/about/two-Hemant.jpeg" class="img-responsive img-rounded">
</div>
<div class="col-md-9 text-justify">
<p>
<b>
Hemant Sharma
</b>
<br>
Advisor (Founding Team)
<br>
<a target="_blank" href="https://www.linkedin.com/in/hemant-sharma-7bb370/"
class="fa fa-linkedin"></a>
|
<a class="fa fa-envelope" href="mailto:hemant@anodegovernancelab.in"></a>
</p>
<p>
Hemant advises Anode on organisation building with a focus on Panchayats
prioritising education. He works as an advisor with NGO's and educational
institutions like Chirag, MEC College, Saandeepani School, CDLG and Avantika
Foundation and has also been a visiting faculty at Indian Institute of
Management, Bangalore, for their PGSEM program. He has 28 years of
experience as a HR professional across industries like automobile,
pharmaceutical, telecom, FMCG, IT, test & measurement and medical
technology. </p>
<p></p>
<a style="margin-left: 5px" data-toggle="collapse" data-target="#name2"><span
class="label label-default">Read More <i class="fa fa-plus"></i></span>
</a>
</div>
<div class="col-md-12 text-justify">
<div id="name2" class="collapse readMore">
<p>
With assignments in both Indian and multinational companies, the last 14
years of his career were as Head of the HR function at Sun Microsystems
India and as Vice President - HR, Danaher, India.
</p>
<p>
He has an MBA from XLRI, as well as a Master’s degree specialisation in
Education, from Azim Premji University. His human resource training
gives him a keen insight into the challenges of human capital
availability and development.
</p>
</div>
</div>
</div>
<div class="row teamCard">
<div class="col-md-3">
<img src="images/about/three-pragya.jpeg" class="img-responsive img-rounded">
</div>
<div class="col-md-9 text-justify">
<p>
<b>
Pragya Pathak
</b>
<br>
Project & Change Management Lead (Founding Team)
<br>
<a target="_blank" href="https://www.linkedin.com/in/pragya-pathak-256787b/"
class="fa fa-linkedin"></a>
|
<a class="fa fa-envelope" href="mailto:pragya@anodegovernancelab.in"></a>
</p>
<p>
Pragya is a social researcher with over 15 years of experience in designing
and implementing projects. She develops and designs the project frameworks
and implementation strategies for the project teams. Her experience spans a
wide range of sectors including institutional strengthening, governance,
gender, and labour rights both in formal and informal sectors across urban
and rural settings.
</p>
<a style="margin-left: 5px" data-toggle="collapse" data-target="#name3"><span
class="label label-default">Read More <i class="fa fa-plus"></i></span>
</a>
</div>
<div class="col-md-12 text-justify">
<div id="name3" class="collapse readMore">
<p>
She is analytical and skilled in problem-solving, qualitative research
methodologies, project and team management. She has a master's degree in
sociology from Jawaharlal Nehru University and a bachelor's degree in
History from Delhi University (Lady Shri Ram College). </p>
<p>
Her personal interests include exploring new cultures and environments,
reading, water sports and cooking.
</p>
</div>
</div>
</div>
<div class="row teamCard">
<div class="col-md-3">
<img src="images/about/four-divya.jpeg" class="img-responsive img-rounded">
</div>
<div class="col-md-9 text-justify">
<p>
<b>
Divya Krishnakumar
</b>
<br>
Divya Krishnakumar
<br>
<a target="_blank"
href="https://www.linkedin.com/in/divya-krishnakumar-16569046/"
class="fa fa-linkedin"></a>
|
<a class="fa fa-envelope" href="mailto:divya@anodegovernancelab.in"></a>
</p>
<p>
Divya anchors the research and partnership verticals at Anode. She works on
research and design of Anode’s projects in Jharkhand, Madhya Pradesh and
Karnataka. Her role also involves grant conceptualization, mapping
stakeholders and fostering alliances with key funders and partners.
</p>
<a style="margin-left: 5px" data-toggle="collapse" data-target="#name4"><span
class="label label-default">Read More <i class="fa fa-plus"></i></span>
</a>
</div>
<div class="col-md-12 text-justify">
<div id="name4" class="collapse readMore">
<p>
She has 8 years of experience in the social impact, sustainable
construction and ecological sectors. She has worked in Barefoot College,
Tilonia, and as a freelance architectural designer for various clients.
</p>
<p>
Her work reflects her critical thinking, project management skills, and
attention to detail. Divya has a Bachelor’s in Architecture from MS
Ramaiah Institute of Technology and has completed a certificate course
on Decentralised water and sanitation from UNESCO- IHE, Netherlands.
</p>
<p>
Divya loves to read, paint and explore traditional knowledge and skills
in rural areas.
</p>
</div>
</div>
</div>
<div class="row teamCard">
<div class="col-md-3">
<img src="images/about/five-Lingadevaru.jpeg"
class="img-responsive img-rounded">
</div>
<div class="col-md-9 text-justify">
<p>
<b>
Lingadevaru ES
</b>
<br>
Project Manager
<br>
<a target="_blank"
href="https://www.linkedin.com/in/lingadevaru-e-s-15110223/"
class="fa fa-linkedin"></a>
|
<a class="fa fa-envelope"
href="mailto:lingadevaru@anodegovernancelab.in"></a>
</p>
<p>
Lingadevaru is the project manager for Anode’s Chitradurga project. He
implements the project and helps design new initiatives.
<br>
He has over 15 years of experience implementing projects in education and
local governance in Prajayatna, where he worked closely with their partners
Pradan and TRIF. He also worked as a Project Manager in BUZZ India. His
experience spans Karnataka, Andhra Pradesh, Jharkhand, Madhya Pradesh, Uttar
Pradesh and Rajasthan.
</p>
<a style="margin-left: 5px" data-toggle="collapse" data-target="#name5"><span
class="label label-default">Read More <i class="fa fa-plus"></i></span>
</a>
</div>
<div class="col-md-12 text-justify">
<div id="name5" class="collapse readMore">
<p>
He is also an advisor to ORDER Tumkur, a volunteer at Gandhi School of
Natural Farming, Tumkur and a promoter with Tumkur Organics.
</p>
<p>
Lingadevaru is a fast learner, skilled facilitator and team player. He
holds a postgraduate degree in Environmental sciences from Bangalore
University and Post graduate Diploma Degree in Journalism and mass
communication from Karnataka state open University.
</p>
<p>
He is passionate about working with communities, natural farming,
trekking and travelling.
</p>
</div>
</div>
</div>
<div class="row teamCard">
<div class="col-md-3">
<img src="images/about/six-ravi.jpeg" class="img-responsive img-rounded">
</div>
<div class="col-md-9 text-justify">
<p>
<b>
Ravi D.
</b>
<br>
Senior Field Coordinator
<br>
<a class="fa fa-envelope" href="mailto:ravi_d@anodegovernancelab.in"></a>
</p>
<p>
Ravi was the first member of our field team in Chitradurga. His
understanding of the local context has played an integral role in initiating
our interactions with GPs.
<br>
He has 12 years of experience working closely with various community and
government stakeholders, during his time with Prajayatna and Akshara
Foundation
</p>
<a style="margin-left: 5px" data-toggle="collapse" data-target="#name6"><span
class="label label-default">Read More <i class="fa fa-plus"></i></span>
</a>
</div>
<div class="col-md-12 text-justify">
<div id="name6" class="collapse readMore">
<p>
Ravi is meticulous, skilled at mobilising communities and a fast
learner. He has a B. Ed. From Revanasiddeswara college, Bengaluru.
</p>
<p>
He enjoys staying updated on current issues, travelling to new places,
listening to music and watching movies.
</p>
</div>
</div>
</div>
<div class="row teamCard">
<div class="col-md-3">
<img src="images/about/seven-Lingaraju.jpeg" class="img-responsive img-rounded">
</div>
<div class="col-md-9 text-justify">
<p>
<b>
Lingaraju M
</b>
<br>
Field Coordinator
<br>
<a class="fa fa-envelope" href="mailto:lingaraju@anodegovernancelab.in"></a>
</p>
<p>
Lingaraju, a member of our field team in Chitradurga and is handholding 5
Gram Panchayats here though the 3-year GPOD journey.
<br>
He has worked as a lecturer in Polytechnic College Chitradurga, as a
vocational trainer to underprivileged youth, a teacher training coordinator
with Government of Karnataka and also a trainer to Taluk and Zilla Panchayat
elected members.
</p>
<a style="margin-left: 5px" data-toggle="collapse" data-target="#name7"><span
class="label label-default">Read More <i class="fa fa-plus"></i></span>
</a>
</div>
<div class="col-md-12 text-justify">
<div id="name7" class="collapse readMore">
<p>
Lingaraju is a skilled trainer and fast learner. He has a Diploma in
Automobile Engineering from Rural polytechnic, Haveri and Bachelor in
Automobile Engineering from Malnad College of Engineering, Hasan.
</p>
<p>
He is interested in learning about new developments across the social
sector and politics.
</p>
</div>
</div>
</div>
<div class="row teamCard">
<div class="col-md-3">
<img src="images/about/eight-deepa.jpeg" class="img-responsive img-rounded">
</div>
<div class="col-md-9 text-justify">
<p>
<b>
Deepa R.
</b>
<br>
Field Coordinator
<br>
<a class="fa fa-envelope" href="mailto:deepa@anodegovernancelab.in"></a>
</p>
<p>
Deepa supports the team in community mobilisation and research of
stakeholders such as CBOs, to make our initiatives more effective.
<br>
She has over 7 years of experience working with DATA charitable society,
Rural Literacy & Health Programme, as an auditor in the MGNREGA program
and Suchethana Network.
</p>
<a style="margin-left: 5px" data-toggle="collapse" data-target="#name8"><span
class="label label-default">Read More <i class="fa fa-plus"></i></span>
</a>
</div>
<div class="col-md-12 text-justify">
<div id="name8" class="collapse readMore">
<p>
Deepa is an avid learner and passionate about her work. She holds a B.A.
from Government Arts College, Chitradurga and Masters in Social work
from Davangere University.
</p>
<p>
Her interests include listening to music and reading books.
</p>
</div>
</div>
</div>
<div class="row teamCard">
<div class="col-md-3">
<img src="images/about/nine-madhusudhan.png" class="img-responsive img-rounded">
</div>
<div class="col-md-9 text-justify">
<p>
<b>
Madhusudhan S
</b>
<br>
Field Coordinator
<br>
<a class="fa fa-envelope"
href="mailto:madhusudhan@anodegovernancelab.in"></a>
</p>
<p>
Madhusudhan is a member of our field team in Chitradurga and is building the
capacity of 5 Gram Panchayats in Challakere Taluk through the 3- year GPOD
journey.
<br>
He has more than 10 years of experience working in the field of education as
a coordinator across various taluks of Chitradurga District with Niru
Nirmalikarana, Edutel Technology, KHPT and Pratham foundation.
</p>
<a style="margin-left: 5px" data-toggle="collapse" data-target="#name9"><span
class="label label-default">Read More <i class="fa fa-plus"></i></span>
</a>
</div>
<div class="col-md-12 text-justify">
<div id="name9" class="collapse readMore">
<p>
He has great problem solving and interpersonal skills. Madhusudhan has a
B.Sc. from SJM College, Chitradurga and B.Ed. from SVC, Chitradurga.
</p>
<p>
He enjoys playing cricket and badminton. He also practises agriculture
outside of his professional work.
</p>
</div>
</div>
</div>
<h4>
<b>
Friends & Collaborators
</b>
</h4>
<hr>
<div class="row teamCard">
<div class="col-md-3">
<img src="images/about/ten-Anjali.jpeg" class="img-responsive img-rounded">
</div>
<div class="col-md-9 text-justify">
<p>
<b>Dr. Anjali Karol Mohan </b> led research and policy initiatives at Anode
Governance Lab where she brought her deep understanding of government
functioning along with facilitative pedagogy to guide the work at different
stages of Anode’s work. Over the past three decades Anjali’s research and
practice has straddled the broad areas of development, urbanisation and
urban management, organisational and institutional frameworks, public policy
and information and communication technologies and development (ICTD). She
is currently working at the intersection of urbanisation, climate change and
informality aiming to evolve a bottom-up planning framework for cities.
Anjali is a geographer with an urban and regional planning degree from the
School of Planning and Architecture, New Delhi. She has a PhD on
(e)Governance and public policy from IIIT Bangalore.
</p>
</div>
</div>
<div class="row teamCard">
<div class="col-md-3">
<img src="images/about/eleven-Padmavathy.jpeg"
class="img-responsive img-rounded">
</div>
<div class="col-md-9 text-justify">
<p>
<b>Padmavathy Bareddy</b> worked as a Coordinator- Project and Change
Management at Anode. During her time in Anode, she oversaw our project in
Jharkhand, and also worked on new solutions related to Information
Technology. Her work experience includes stints at IBM and Dhwani RIS.
Padma has a Master’s in Public Policy and Governance from Azim Premji
University, Bangalore, and Bachelors in Computer Engineering from Pune
Institute of Computer Technology, Pune University, Pune.
</p>
</div>
</div>
<h4>
<b>
Board members
</b>
</h4>
<hr>
<div class="row teamCard">
<div class="col-md-12 text-justify">
<p>
<b>Milind Chalisgaonkar</b> is a board member of Anode Governance Lab’s
non-profit arm - Anode Governance Foundation. He is a management consultant,
independent director and mentor with experience in multiple sectors. He has
held CEO level positions from 1993 to 2009. His experience has been in
building winning teams in startup companies as well as existing
organisations. His forte is turning businesses around as well as growing new
businesses at a rapid pace.
<br>
Since 2010 he has successfully mentored several CXOs in the IT, BPO,
Consulting, Financial services, Manufacturing, FMCG and Contract Research
industries. He is an Independent Director at Allsec Technologies Ltd (listed
BPO service provider), Infrasoft Technologies Ltd., Navi General Insurance
Ltd. as well as the Director/ Co-Founder of Spark Career Mentors Pvt. Ltd.
<br>
Milind has completed his B.Tech (Ceramics) from Indian Institute of
Technology at BHU, Varanasi (1981-85). He has a Post Graduate Diploma in
Business Management (MBA – Marketing Systems) from XLRI, Jamshedpur
(1987-89).
</p>
</div>
</div>
<div class="row teamCard">
<div class="col-md-12 text-justify">
<p>
<b>Parveen Sikand</b> is a board member of Anode Governance Lab’s non-profit
arm - Anode Governance Foundation. She has been a social worker, funding
collaborator and teacher since 1986. Her career has included deep engagement
with communities and their challenges, facilitating forums for various
stakeholders, liaising funding opportunities with stakeholders and NGOs, as
well as children’s education.
<br>
Parveen's experience includes rights-based work with SRUTI (Society for
Rural Urban Tribal Initiative), program analyst for Bharatiya Yuva Shakti
Trust (in partnership with CII), volunteer with SWRC (Social Work &
Research Center/ Barefoot College), Tilonia, Rajasthan. During this time,
she formalised and headed the SAMPDA Network consisting of 16 NGOs
associated with SWRC. Parveen has also worked with IndiaCares Foundation and
has set up Child for Life in St. John’s Academy of Medical Sciences, and
more recently associated with their medical teams for disaster relief work.
Parveen also taught at KFI, the Valley School in Bangalore and conducted
workshops for teachers at Vivek High School, Chandigarh. She is also on the
Board of Omarela Trust and SKID (Sheila Kotawala School for the Deaf).
<br>
Parveen completed her B.Sc in Anthropology from London University in 1986.
</p>
</div>
</div>
</div>
</div>
<div class="tab-pane" id="f">
<div class="col-md-12">
<div class="row">
<div class="col-md-3">
<img class="img-responsive img-thumbnail" src="./images/assets/bajaj.jpeg">
</div>
<div class="col-md-9">
<p>
<b>
<a target="_blank" href="https://www.bajajfoundation.org/">
Kamalnayan Bajaj Foundation
</a>
</b>
</p>
<p>
<a target="_blank" href="./projects.html#maha">
Maharashtra
</a>
</p>
</div>
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<div class="col-md-3">
<img class="img-responsive img-thumbnail" src="./images/assets/samridhi.jpeg">
</div>
<div class="col-md-9">
<p>
<b>
<a target="_blank" href="https://www.mission-samriddhi.org">
Mission Samriddhi
</a>
</b>
</p>
<p>
<a target="_blank" href="./projects.html#maha">
Maharashtra
</a>
</p>
</div>
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<div class="col-md-3">
<img class="img-responsive img-thumbnail" src="./images/assets/tri.jpeg">
</div>
<div class="col-md-9">
<p>
<b>
<a target="_blank" href="https://www.trif.in">
Transform Rural India
</a>
</b>
</p>
<p>
<a target="_blank" href="./projects.html#mp">
Madhya Pradesh
</a>
</p>
</div>
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<div class="col-md-3">
<img class="img-responsive img-thumbnail" src="./images/assets/pradan.jpeg">
</div>
<div class="col-md-9">
<p>
<b>
<a target="_blank" href="https://www.pradan.net">
Pradan (Professional Assistance for Development Action)
</a>
</b>
</p>
<p>
<a target="_blank" href="./projects.html#jk">
Jharkhand and Madhya Pradesh
</a>
</p>
</div>
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<div class="col-md-3">
<img class="img-responsive img-thumbnail" src="./images/assets/sulochna.jpeg">
</div>
<div class="col-md-9">
<p>
<b>
<a target="_blank" href="http://sulochanathaparfoundation.org/">
Sulochana Thapar Foundation
</a>
</b>
</p>
<p>
<a target="_blank" href="./projects.html#maha">
Maharashtra
</a>
</p>
</div>
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<div class="col-md-3">
<img class="img-responsive img-thumbnail"
src="./images/assets/sightsavers.jpeg">
</div>
<div class="col-md-9">
<p>
<b>
<a target="_blank" href="https://www.sightsaversindia.in">
Sightsavers
</a>
</b>
</p>
<p>
<a target="_blank" href="./projects.html#ms">
For 8 States across India
</a>
</p>
</div>
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<div class="col-md-3">
<img class="img-responsive img-thumbnail" src="./images/assets/iiitb.jpeg">
</div>
<div class="col-md-9">
<p>
<b>
<a target="_blank" href="https://www.iiitb.ac.in/">
International Institute of Information Technology Bangalore (IIIT-B)
</a>
</b>
</p>
</div>
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<div class="col-md-3">
<img class="img-responsive img-thumbnail"
src="./images/assets/govt-of-karnataka.jpeg">
</div>
<div class="col-md-9">
<p>
<b>
<a target="_blank" href="https://rdpr.karnataka.gov.in/english">
Rural Development and Panchayat Raj Department, Government of
Karnataka
</a>
</b>
</p>
<p>
<a target="_blank" href="./projects.html#kar">
Karnataka
</a>
</p>
</div>
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<div class="col-md-3">
<img class="img-responsive img-thumbnail" src="./images/assets/arghyam.jpeg">
</div>
<div class="col-md-9">
<p>
<b>
<a target="_blank" href="https://arghyam.org">
Arghyam
</a>
</b>
</p>
<p>
<a target="_blank" href="./projects.html#jk">
Chhattisgarh, Jharkhand
</a>
</p>
</div>
<div class="col-md-12">
<hr>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /tabs -->
<div class="col-md-2 animated slideInRight">
<h1 class="sub-heading"> Projects </h1>
<ul class="tab_ul">
<li><a href="./projects.html#jk">Jharkhand</a></li>
<li><a href="./projects.html#kar">Karnataka</a></li>
<li><a href="./projects.html#mp">Madhya Pradesh</a></li>
<li><a href="./projects.html#maha">Maharashtra</a></li>
<li><a href="./projects.html#up">Uttar Pradesh</a></li>
<li><a href="./projects.html#ms">Multiple States</a></li>
</ul>
</div>
</div>
</div>
<!--
<footer class="container-fluid anodeFooter">
<div class="footer-bottom" style="margin-top: 20px">
<div class="col-lg-6 text-left">
<p> Copyright ©2017 Anode Governance Lab. All Rights Reserved. </p>
</div>
<div class="col-lg-6 text-right">
<a target="_blank" href="privacy.html"> Privacy and Cookies Policy </a>
&
<a target="_blank" href="terms.html"> Terms of Use </a>
</div>
<div>
<i>built with 🧡 by <a
href="https://t4glabs.discourse.group/u?cards=no&group=Tech4Good-Fellows&order=likes_received&period=all">T4G
Labs Fellows</a> & Hosted Freely on <a class="t4g-link-color"
href="https://github.com/t4glabs/anode-website">Github
Pages</a>
</i>
</div>
</div>