-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1238 lines (1202 loc) · 46.6 KB
/
index.html
File metadata and controls
1238 lines (1202 loc) · 46.6 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 name="viewport" content="width=device-width, initial-scale=1.0" />
<title>D L Siem</title>
<link rel="stylesheet" href="styles.css" />
<!-- icon -->
<link rel="icon" href="Files/logo102.jpeg" type="image/x-icon" />
<script
src="https://kit.fontawesome.com/c41c8c1ba5.js"
crossorigin="anonymous"
></script>
<link rel="manifest" href="Files/site.webmanifest" />
</head>
<body>
<header>
<div class="header">
<div class="name">
<h3>Siem</h3>
</div>
<div class="nav"></div>
</div>
</header>
<div class="parentContainer">
<h1>Navigation</h1>
<!-- Table of Contents -->
<div id="toc">
<h2>Contents</h2>
<a href="#one-piece">One Piece</a>
<div class="subcontent">
<a href="#key-moments">Key Moments</a>
</div>
<a href="#website-list">Website List</a>
<div class="subcontent">
<a href="#studios-websites">Studios Website</a>
<a href="#software-websites">Software Websites</a>
</div>
<a href="#movies">Movies</a>
<a href="#youtube-channel">Youtube Channel</a>
<div class="subcontent">
<a href="#3d-animation">3D Animation</a>
<a href="#2d-animation">2D Animation & Drawing</a>
</div>
<a href="#useful-image-resources">Useful Image Resources</a>
<a href="#studies">Learning</a>
<div class="subcontent">
<a href="#daily">Daily</a>
<a href="#daily-drawing">Daily Drawing</a>
<a href="#monday-friday">Monday & Friday</a>
<a href="#tuesday-saturday">Tuesday & Saturday</a>
<a href="#wednesday-sunday">Wednesday & Sunday</a>
<a href="#thursday">Thursday</a>
</div>
</div>
<!-- One Piece -->
<section id="one-piece">
<h1 class="chapter-name">One Piece</h1>
<img
src="Files/images/one-piece.jpg"
alt="One Piece"
class="section-image"
/>
<p>
One Piece is a Japanese manga series written and illustrated by
Eiichiro Oda. It has been serialized in Shueisha's Weekly Shōnen Jump
magazine since July 22, 1997, and has been collected into 111 tankōbon
volumes. The anime adaptation produced by Toei Animation premiered in
Japan on Fuji Television on October 20, 1999.
</p>
<p>
Visit the officical website
<a class="normal-links" target="_blank" href="https://one-piece.com/"
>here</a
>.
</p>
<h2 id="key-moments">
Key moments with Anime-episode and Manga Chapter
</h2>
<!--table with three column with -->
<div class="table-container">
<table>
<tr>
<th>Key Moments</th>
<th>Anime</th>
<th>Manga</th>
</tr>
<tr>
<td>Gear 2</td>
<td>Ep 272</td>
<td>Ch 387</td>
</tr>
<tr>
<td>Gear 3</td>
<td>Ep 288</td>
<td>Ch 403</td>
</tr>
<tr>
<td>Gear 4</td>
<td>Ep 726</td>
<td>Ch 784</td>
</tr>
<tr>
<td>Gear 5</td>
<td>Ep 1071</td>
<td>Ch 1044</td>
</tr>
<tr>
<td>Imu first appearance</td>
<td>Ep 885</td>
<td>Ch 906</td>
</tr>
<tr>
<td>Luffy vs 5 Elders</td>
<td>Ep --</td>
<td>Ch 1110</td>
</tr>
<tr>
<td>Imu Speaks</td>
<td>Ep 1118</td>
<td>Ch 1085</td>
</tr>
<tr>
<td>Sabo Return</td>
<td>Ep 663</td>
<td>Ch 731</td>
</tr>
<tr>
<td>Thankyou Merry!</td>
<td>Ep 312</td>
<td>Ch 430</td>
</tr>
<!-- planet fall -->
<tr>
<td>Planet Fall</td>
<td>Ep --</td>
<td>Ch 1110</td>
</tr>
<!-- Mural -->
<tr>
<td>Mural</td>
<td>Ep --</td>
<td>Ch 1138</td>
</tr>
</table>
</div>
</section>
<!-- Website Lists -->
<section id="website-list">
<h1 class="chapter-name">Website List</h1>
<p>
List of websites varying from animation studios, software, blogs,
useful tools, resources, and much more. The list is not exhaustive and
will be updated regularly. The list is not in any particular order.
</p>
<h2 id="studios-websites">Studios</h2>
<p>
List of animation studios, live action studios and other important
media distrubution bodies mostly but not limited to animation and
comics.
</p>
<div class="grid-container">
<!-- Pixar -->
<div class="grid-item">
<a
href="https://www.pixar.com/"
target="_blank"
rel="noopener noreferrer"
>Pixar</a
>
</div>
<!-- Disney -->
<div class="grid-item">
<a
href="https://www.disney.com/"
target="_blank"
rel="noopener noreferrer"
>Disney</a
>
</div>
<!-- Marvel -->
<div class="grid-item">
<a
href="https://www.marvel.com/"
target="_blank"
rel="noopener noreferrer"
>Marvel</a
>
</div>
<!-- DC -->
<div class="grid-item">
<a
href="https://www.dc.com/"
target="_blank"
rel="noopener noreferrer"
>DC</a
>
</div>
<!-- Warner Bros -->
<div class="grid-item">
<a
href="https://www.warnerbros.com/"
target="_blank"
rel="noopener noreferrer"
>Warner Bros</a
>
</div>
<!-- Disney Animation -->
<div class="grid-item">
<a
href="https://www.disneyanimation.com/"
target="_blank"
rel="noopener noreferrer"
>Disney Animation</a
>
</div>
<!-- Ghibli -->
<div class="grid-item">
<a
href="https://www.ghibli.jp/"
target="_blank"
rel="noopener noreferrer"
>Ghibli</a
>
</div>
<!-- Sony Animation -->
<div class="grid-item">
<a
href="https://www.sonypicturesanimation.com/"
target="_blank"
rel="noopener noreferrer"
>Sony Animation</a
>
</div>
<!-- Toei Animation -->
<div class="grid-item">
<a
href="https://www.toei-anim.co.jp/"
target="_blank"
rel="noopener noreferrer"
>Toei Animation</a
>
</div>
<!-- Shueisha -->
<div class="grid-item">
<a
href="https://www.shueisha.co.jp/"
target="_blank"
rel="noopener noreferrer"
>Shueisha</a
>
</div>
<!-- Viz Media -->
<div class="grid-item">
<a
href="https://www.viz.com/"
target="_blank"
rel="noopener noreferrer"
>Viz Media</a
>
</div>
<!-- Universal Picture -->
<div class="grid-item">
<a
href="https://www.universalpictures.com/"
target="_blank"
rel="noopener noreferrer"
>Universal Pictures</a
>
</div>
<!-- disney plus -->
<div class="grid-item">
<a
href="https://www.disneyplus.com/"
target="_blank"
rel="noopener noreferrer"
>Disney Plus</a
>
</div>
<!-- Netflix -->
<div class="grid-item">
<a
href="https://www.netflix.com/"
target="_blank"
rel="noopener noreferrer"
>Netflix</a
>
</div>
<!-- illumination -->
<div class="grid-item">
<a
href="https://www.illumination.com/"
target="_blank"
rel="noopener noreferrer"
>Illumination</a
>
</div>
<!-- dream works -->
<div class="grid-item">
<a
href="https://www.dreamworks.com/"
target="_blank"
rel="noopener noreferrer"
>DreamWorks</a
>
</div>
</div>
<h2 id="software-websites">Software</h2>
<p>
List of software websites for animation, graphic design, and video
editing. Some are open-source software(OSS) and others are one-time
payment(OTP) or free(FREE) software.
</p>
<div class="grid-container">
<!-- Blender -->
<div class="grid-item">
<a
href="https://www.blender.org/"
target="_blank"
rel="noopener noreferrer"
>Blender(OSS)</a
>
</div>
<!-- Adobe -->
<div class="grid-item">
<a
href="https://www.adobe.com/"
target="_blank"
rel="noopener noreferrer"
>Adobe</a
>
</div>
<!-- OpenToonz -->
<div class="grid-item">
<a
href="https://opentoonz.github.io/e/"
target="_blank"
rel="noopener noreferrer"
>OpenToonz(OSS)</a
>
</div>
<!-- Clip Studio Paint -->
<div class="grid-item">
<a
href="https://www.clipstudio.net/en"
target="_blank"
rel="noopener noreferrer"
>Clip Studio Paint</a
>
</div>
<!-- Unreal Engine -->
<div class="grid-item">
<a
href="https://www.unrealengine.com/en-US/"
target="_blank"
rel="noopener noreferrer"
>Unreal Engine</a
>
</div>
<!-- Unity -->
<div class="grid-item">
<a
href="https://unity.com/"
target="_blank"
rel="noopener noreferrer"
>Unity</a
>
</div>
<!-- Krita -->
<div class="grid-item">
<a
href="https://krita.org/en/"
target="_blank"
rel="noopener noreferrer"
>Krita(OSS)</a
>
</div>
<!-- GIMP -->
<div class="grid-item">
<a
href="https://www.gimp.org/"
target="_blank"
rel="noopener noreferrer"
>GIMP(OSS)</a
>
</div>
<!-- Inkscape -->
<div class="grid-item">
<a
href="https://inkscape.org/"
target="_blank"
rel="noopener noreferrer"
>Inkscape(OSS)</a
>
</div>
<!-- DaVinci Resolve -->
<div class="grid-item">
<a
href="https://www.blackmagicdesign.com/products/davinciresolve/"
target="_blank"
rel="noopener noreferrer"
>DaVinci Resolve(OTP)</a
>
</div>
<!-- Lightworks -->
<div class="grid-item">
<a
href="https://www.lwks.com/"
target="_blank"
rel="noopener noreferrer"
>Lightworks</a
>
</div>
<!-- Natron -->
<div class="grid-item">
<a
href="https://natrongithub.github.io/"
target="_blank"
rel="noopener noreferrer"
>Natron(OSS)</a
>
</div>
<!-- Synfig -->
<div class="grid-item">
<a
href="https://www.synfig.org/"
target="_blank"
rel="noopener noreferrer"
>Synfig(OSS)</a
>
</div>
<!-- Pencil2D -->
<div class="grid-item">
<a
href="https://www.pencil2d.org/"
target="_blank"
rel="noopener noreferrer"
>Pencil2D(OSS)</a
>
</div>
<!-- TVPaint -->
<div class="grid-item">
<a
href="https://www.tvpaint.com/"
target="_blank"
rel="noopener noreferrer"
>TVPaint</a
>
</div>
<!-- Moho -->
<div class="grid-item">
<a
href="https://www.mohoanimation.com/"
target="_blank"
rel="noopener noreferrer"
>Moho(OTP)</a
>
</div>
<!-- CACANi -->
<div class="grid-item">
<a
href="https://www.cacani.sg/"
target="_blank"
rel="noopener noreferrer"
>CACANi</a
>
</div>
<!-- Plastic Animation Paper -->
<div class="grid-item">
<a
href="https://www.animationpaper.com/"
target="_blank"
rel="noopener noreferrer"
>
Animation Paper(FREE)</a
>
</div>
<!-- Animation Desk -->
<div class="grid-item">
<a
href="https://www.kdanmobile.com/en/animation-desk"
target="_blank"
rel="noopener noreferrer"
>Animation Desk</a
>
</div>
</div>
</section>
<!-- Movies Sections -->
<section id="movies">
<h1 class="chapter-name">Movies</h1>
<p>
List of movies from different genres and languages. The list is not
exhaustive and will be updated regularly. The list is not in any
particular order.
</p>
<div class="movie-card">
<h2>Avengers(2012)</h2>
<!-- Checkbox for toggling details -->
<input type="checkbox" id="toggle1" class="toggle" />
<!-- Label as button -->
<label for="toggle1" class="expand-btn">Show Details</label>
<!-- Movie details (initially hidden) -->
<div class="details">
<p>Director: Joss Whedon</p>
<p>Rating: 8.0/10</p>
<p>Genre: Action, Adventure, Sci-Fi</p>
<p>Stars: Robert Downey Jr., Chris Evans, Scarlett Johansson</p>
<a
href="https://www.imdb.com/title/tt0848228/"
target="_blank"
rel="noopener noreferrer"
>IMDb</a
>
</div>
</div>
</section>
<!-- Youtube Channel -->
<section id="youtube-channel">
<h1 class="chapter-name">Tips and Tricks Resources</h1>
<p>
List of some useful Youtube Channels, Websites etc. for animation,
drawing, entertainment, interesting and educational content. The list
is not exhaustive and will be updated regularly. The list is not in
any particular order.
</p>
<h2 id="3d-animation">3D Animation</h2>
<div class="grid-container">
<div class="grid-item">
<a
href="https://www.youtube.com/@blenderguru"
target="_blank"
rel="noopener noreferrer"
>Blender Guru</a
>
</div>
</div>
<h2 id="2d-animation">2D Animation & Drawing</h2>
<div class="grid-container">
<!-- Proko -->
<div class="grid-item">
<a
href="https://www.youtube.com/@prokoTV"
target="_blank"
rel="noopener noreferrer"
>Proko</a
>
</div>
<!-- Uncomfortable -->
<div class="grid-item">
<a
href="https://www.youtube.com/@Uncomfortable"
target="_blank"
rel="noopener noreferrer"
>Uncomfortable</a
>
</div>
<!-- Jazza -->
<div class="grid-item">
<a
href="https://www.youtube.com/@Jazza"
target="_blank"
rel="noopener noreferrer"
>Jazza</a
>
</div>
<!-- Aaron Blaise -->
<div class="grid-item">
<a
href="https://www.youtube.com/@AaronBlaiseArt"
target="_blank"
rel="noopener noreferrer"
>Aaron Blaise</a
>
</div>
<!-- Sycra -->
<div class="grid-item">
<a
href="https://www.youtube.com/@Sycra"
target="_blank"
rel="noopener noreferrer"
>Sycra</a
>
</div>
<!-- Sinix Design -->
<div class="grid-item">
<a
href="https://www.youtube.com/@SinixDesign"
target="_blank"
rel="noopener noreferrer"
>Sinix Design</a
>
</div>
<!-- Marco Bucci -->
<div class="grid-item">
<a
href="https://www.youtube.com/@marcobucci"
target="_blank"
rel="noopener noreferrer"
>Marco Bucci</a
>
</div>
</div>
</section>
<!-- Useful Resources -->
<section id="useful-image-resources">
<h1 class="chapter-name">Useful Image Resources</h1>
<p>
List of useful image resources for drawing, references, practice,
learning etc.
</p>
<div class="grid-container">
<!-- Pinterest -->
<div class="grid-item">
<a
href="https://www.pinterest.com/"
target="_blank"
rel="noopener noreferrer"
>Pinterest</a
>
</div>
<!-- ArtStation -->
<div class="grid-item">
<a
href="https://www.artstation.com/"
target="_blank"
rel="noopener noreferrer"
>ArtStation</a
>
</div>
<!-- DeviantArt -->
<div class="grid-item">
<a
href="https://www.deviantart.com/"
target="_blank"
rel="noopener noreferrer"
>DeviantArt</a
>
</div>
<!-- Behance -->
<div class="grid-item">
<a
href="https://www.behance.net/"
target="_blank"
rel="noopener noreferrer"
>Behance</a
>
</div>
<!-- Unsplash -->
<div class="grid-item">
<a
href="https://unsplash.com/"
target="_blank"
rel="noopener noreferrer"
>Unsplash</a
>
</div>
<!-- Pexels -->
<div class="grid-item">
<a
href="https://www.pexels.com/"
target="_blank"
rel="noopener noreferrer"
>Pexels</a
>
</div>
<!-- Pixabay -->
<div class="grid-item">
<a
href="https://pixabay.com/"
target="_blank"
rel="noopener noreferrer"
>Pixabay</a
>
</div>
<!-- gettyimages -->
<div class="grid-item">
<a
href="https://engage.gettyimages.com/archive-collections#/"
target="_blank"
rel="noopener noreferrer"
>GettyImages</a
>
</div>
<!-- Images Bazaar -->
<div class="grid-item">
<a
href="https://www.imagesbazaar.com/"
target="_blank"
rel="noopener noreferrer"
>Images Bazaar</a
>
</div>
</div>
</section>
<!-- Studies -->
<section id="studies">
<h1 class="chapter-name">Learning</h1>
<h2 id="daily">Daily</h2>
<ul style="list-style-type: square; padding-left: 20px">
<li>Civil Engineering (2+ questions(Subjective) + Obj + Practice)</li>
<li>
Newspaper Reading + Current Affairs + General Knowledge + Quiz
</li>
<li>Comprehension + Aptitude + Mental Maths + Memory + Other</li>
<li>Reacap by writing or reciting or mental recap or revision</li>
</ul>
<h2 id="daily-drawing">Daily Drawing(3+)</h2>
<p>
Topics mentioned
<a href="https://dlsiem.notion.site/drawing-practice">Here </a>,
practice from manga/comic pages of various artists, characters from
various manga, comics, anime, movies, series, and games, live
drawings, historical figures, and others.
</p>
<ul>
<li>
<!-- Monday & Friday : General Studies - I -->
<h2 id="monday-friday">Monday & Friday : General Studies - I</h2>
<p class="topics">
Indian Heritage and Culture, History and Geography of the World
and Society
</p>
<ul style="list-style-type: square; padding-left: 20px">
<li>
2+ Questions(Subjective) + Reading + Objective + Quiz +
Discussion
</li>
</ul>
<details class="collapsible">
<summary>Syllabus</summary>
<ul
class="content"
style="list-style-type: square; padding-left: 20px"
>
<li>
Indian culture will cover the salient aspects of Art Forms,
literature and Architecture from ancient to modern times.
</li>
<li>
Modern Indian history from about the 18th century to the
present- significant events, personalities, issues.
</li>
<li>
The Freedom Struggle - its various stages and important
contributors/contributions from different parts of the
country.
</li>
<li>
Post-independence consolidation and reorganization within the
country.
</li>
<li>
History of the world will include events from 18th century
such as industrial revolution, world wars, redrawal of
national boundaries, colonization, decolonization, political
philosophies like communism, capitalism, socialism etc.- their
forms and effect on the society.
</li>
<li>Salient features of Indian Society, Diversity of India.</li>
<li>
Role of women and women’s organization, population and
associated issues, poverty and developmental issues,
urbanization, their problems and their remedies.
</li>
<li>Effects of globalization on Indian society</li>
<li>
Social empowerment, communalism, regionalism & secularism.
</li>
<li>Salient features of world’s physical geography.</li>
<li>
Distribution of key natural resources across the world
(including South Asia and the Indian sub continent); factors
responsible for the location of primary, secondary, and
tertiary sector industries in various parts of the world
(including India).
</li>
<li>
Important Geophysical phenomena such as earthquakes, Tsunami,
Volcanic activity, cyclone etc., geographical features and
their location- changes in critical geographical features
(including waterbodies and ice-caps) and in flora and fauna
and the effects of such changes.
</li>
</ul>
</details>
</li>
<li>
<!-- Tuesday & Saturday : General Studies - II -->
<h2 id="tuesday-saturday">
Tuesday & Saturday : General Studies - II
</h2>
<p class="topics">
Governance, Constitution, Polity, Social Justice and International
relations
</p>
<ul style="list-style-type: square; padding-left: 20px">
<li>
2+ Questions(Subjective) + Reading + Objective + Quiz +
Discussion
</li>
</ul>
<details class="collapsible">
<summary>Syllabus</summary>
<ul
class="content"
style="list-style-type: square; padding-left: 20px"
>
<li>
Indian Constitution—historical underpinnings, evolution,
features, amendments, significant provisions and basic
structure.
</li>
<li>
Functions and responsibilities of the Union and the States,
issues and challenges pertaining to the federal structure,
devolution of powers and finances up to local levels and
challenges therein.
</li>
<li>
Separation of powers between various organs dispute redressal
mechanisms and institutions.
</li>
<li>
Comparison of the Indian constitutional scheme with that of
other countries.
</li>
<li>
Parliament and State legislatures—structure, functioning,
conduct of business, powers & privileges and issues arising
out of these.
</li>
<li>
Structure, organization and functioning of the Executive and
the Judiciary—Ministries and Departments of the Government;
pressure groups and formal/informal associations and their
role in the Polity.
</li>
<li>Salient features of the Representation of People’s Act.</li>
<li>
Appointment to various Constitutional posts, powers, functions
and responsibilities of various Constitutional Bodies.
</li>
<li>
Statutory, regulatory and various quasi-judicial bodies.
</li>
<li>
Government policies and interventions for development in
various sectors and issues arising out of their design and
implementation.
</li>
<li>
Development processes and the development industry —the role
of NGOs, SHGs, various groups and associations, donors,
charities, institutional and other stakeholders.
</li>
<li>
Welfare schemes for vulnerable sections of the population by
the Centre and States and the performance of these schemes;
mechanisms, laws, institutions and Bodies constituted for the
betterment of these vulnerable sections.
</li>
<li>
Issues relating to development and management of Social
Sector/Services relating to Health, Education, Human
Resources.
</li>
<li>Issues relating to poverty and hunger.</li>
<li>
Important aspects of governance, transparency and
accountability, e-governance- applications, models, successes,
limitations, and potential; citizens charters, transparency &
accountability and institutional and other measures.
</li>
<li>Role of civil services in a democracy.</li>
<li>India and its neighborhood- relations.</li>
<li>
Bilateral, regional and global groupings and agreements
involving India and/or affecting India’s interests.
</li>
<li>
Effect of policies and politics of developed and developing
countries on India’s interests, Indian diaspora.
</li>
<li>
Important International institutions, agencies and fora- their
structure, mandate.
</li>
</ul>
</details>
<!-- Indian Constitution—historical underpinnings, evolution, features, amendments, significant provisions
and basic structure.
Functions and responsibilities of the Union and the States, issues and challenges pertaining to the
federal structure, devolution of powers and finances up to local levels and challenges therein.
Separation of powers between various organs dispute redressal mechanisms and institutions.
Comparison of the Indian constitutional scheme with that of other countries.
Parliament and State legislatures—structure, functioning, conduct of business, powers & privileges
and issues arising out of these.
Structure, organization and functioning of the Executive and the Judiciary—Ministries and
Departments of the Government; pressure groups and formal/informal associations and their role in the
Polity.
Salient features of the Representation of People’s Act.
Appointment to various Constitutional posts, powers, functions and responsibilities of various
Constitutional Bodies.
Statutory, regulatory and various quasi-judicial bodies.
Government policies and interventions for development in various sectors and issues arising out of
their design and implementation.
Development processes and the development industry —the role of NGOs, SHGs, various groups and
associations, donors, charities, institutional and other stakeholders.
Welfare schemes for vulnerable sections of the population by the Centre and States and the
performance of these schemes; mechanisms, laws, institutions and Bodies constituted for the and betterment of these vulnerable sections.
Issues relating to development and management of Social Sector/Services relating to Health,
Education, Human Resources.
Issues relating to poverty and hunger.
Important aspects of governance, transparency and accountability, e-governance- applications, models,
successes, limitations, and potential; citizens charters, transparency & accountability and institutional
and other measures.
Role of civil services in a democracy.
India and its neighborhood- relations.
Bilateral, regional and global groupings and agreements involving India and/or affecting India’s
interests.
Effect of policies and politics of developed and developing countries on India’s interests, Indian
diaspora.
Important International institutions, agencies and fora- their structure, mandate. -->
</li>
<li>
<h2 id="wednesday-sunday">
Wednesday & Sunday : General Studies - III
</h2>
<p class="topics">
Technology, Economic Development, Bio-Diversity, Environment,
Security and Disaster Management
</p>
<ul style="list-style-type: square; padding-left: 20px">
<li>
2+ Questions(Subjective) + Reading + Objective + Quiz +
Discussion
</li>
</ul>
<details class="collapsible">
<summary>Syllabus</summary>
<ul
class="content"
style="list-style-type: square; padding-left: 20px"
>
<li>
Indian Economy and issues relating to planning, mobilization
of resources, growth, development and employment.
</li>
<li>Inclusive growth and issues arising from it.</li>
<li>Government Budgeting.</li>
<li>
Major crops-cropping patterns in various parts of the country,
- different types of irrigation and irrigation systems
storage, transport and marketing of agricultural produce and
issues and related constraints; e-technology in the aid of
farmers.
</li>
<li>
Issues related to direct and indirect farm subsidies and
minimum support prices; Public Distribution System-
objectives, functioning, limitations, revamping; issues of
buffer stocks and food security; Technology missions;
economics of animal- rearing.
</li>
<li>
Food processing and related industries in India- scope’ and
significance, location, upstream and downstream requirements,
supply chain management.
</li>