-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1930.html
More file actions
1430 lines (1402 loc) · 224 KB
/
1930.html
File metadata and controls
1430 lines (1402 loc) · 224 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" dir="ltr" class="client-nojs">
<head>
<title>1930 - Wikipedia, the free encyclopedia</title>
<meta charset="UTF-8" />
<meta name="generator" content="MediaWiki 1.22wmf1" />
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="http://en.wikipedia.org/w/index.php?title=1930&action=edit" />
<link rel="edit" title="Edit this page" href="http://en.wikipedia.org/w/index.php?title=1930&action=edit" />
<link rel="apple-touch-icon" href="en.wikipedia.org/apple-touch-icon.png" webstripperwas="//en.wikipedia.org/apple-touch-icon.png" />
<link rel="shortcut icon" href="bits.wikimedia.org/favicon/wikipedia.ico" webstripperwas="//bits.wikimedia.org/favicon/wikipedia.ico" />
<link rel="search" type="application/opensearchdescription+xml" href="http://en.wikipedia.org/w/opensearch_desc.php" title="Wikipedia (en)" />
<link rel="EditURI" type="application/rsd+xml" href="http://en.wikipedia.org/w/api.php?action=rsd" />
<link rel="copyright" href="creativecommons.org/licenses/by-sa/3.0/index.html" webstripperwas="//creativecommons.org/licenses/by-sa/3.0/" />
<link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="http://en.wikipedia.org/w/index.php?title=Special:RecentChanges&feed=atom" />
<link rel="stylesheet" href="bits.wikimedia.org/en.wikipedia.org/load.php.11.css" webstripperwas="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=ext.gadget.DRN-wizard%2CReferenceTooltips%2Ccharinsert%2Cteahouse%7Cext.wikihiero%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmw.PopUpMediaTransform%7Cskins.vector&only=styles&skin=vector&*" />
<meta name="ResourceLoaderDynamicStyles" content="" />
<link rel="stylesheet" href="bits.wikimedia.org/en.wikipedia.org/load.php.12.css" webstripperwas="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=site&only=styles&skin=vector&*" />
<style>a:lang(ar),a:lang(ckb),a:lang(fa),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}
/* cache key: enwiki:resourceloader:filter:minify-css:7:d11e4771671c2d6cdedf7c90d8131cd5 */</style>
<script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=startup&only=scripts&skin=vector&*"></script>
<script>if(window.mw){
mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"1930","wgTitle":"1930","wgCurRevisionId":551594820,"wgArticleId":34911,"wgIsArticle":true,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["All articles with dead external links","Articles with dead external links from March 2013","Use mdy dates from March 2011","All articles with unsourced statements","Articles with unsourced statements from March 2013","1930"],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"1930","wgRestrictionEdit":[],"wgRestrictionMove":[],"wgVectorEnabledModules":{"collapsiblenav":true,"collapsibletabs":true,"editwarning":true,"expandablesearch":false,"footercleanup":true,"sectioneditlinks":false,"experiments":true},"wgWikiEditorEnabledModules":{"toolbar":true,"dialogs":true,"hidesig":true,"templateEditor":false,"templates":false,"preview":false,"previewDialog":false,"publish":false,"toc":false},"wgArticleFeedbackv5Permissions":{"aft-reader":false,"aft-member":false,"aft-editor":false,"aft-monitor":false,"aft-administrator":false,"aft-oversighter":false},"wgVisualEditor":{"isPageWatched":false,"enableSectionEditLinks":false,"reportProblemURL":"http://parsoid.wmflabs.org/_bugs/","enableExperimentalCode":false},"wikilove-recipient":"","wikilove-anon":0,"wgGuidedTourHelpGuiderUrl":"Help:Guided tours/guider","wgGuidedTourTestWikitextDescription":"A guider in your on-wiki tour can contain wikitext using onShow and parseDescription. Use it to create a wikilink to the \u003Ca href=\"/wiki/Help:Guided_tours\" title=\"Help:Guided tours\"\u003EGuided tours documentation\u003C/a\u003E. Or an external link \u003Ca rel=\"nofollow\" class=\"external text\" href=\"https://github.com/tychay/mwgadget.GuidedTour\"\u003Eto GitHub\u003C/a\u003E, for instance.","wgMFPhotoUploadEndpoint":"//commons.wikimedia.org/w/api.php","wgUseFormatCookie":{"name":"mf_mobileFormat","duration":-1,"path":"/","domain":"en.wikipedia.org"},"wgStopMobileRedirectCookie":{"name":"stopMobileRedirect","duration":30,"domain":".wikipedia.org","path":"/"},"wgMFPhotoUploadAppendToDesc":"{{Uploaded from Mobile|platform=Web|version=}}\n{{subst:unc}}","wgImagesDisabled":false,"wgMFMode":"stable","wgIsPageEditable":true,"wgPreferredVariant":"en","wgMFLoginHandshakeUrl":"//commons.wikimedia.org/wiki/Special:LoginHandshake?useformat=mobile","wgFlaggedRevsParams":{"tags":{"status":{"levels":1,"quality":2,"pristine":3}}},"wgStableRevisionId":null,"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","Geo":{"city":"","country":""},"wgNoticeProject":"wikipedia"});
}</script><script>if(window.mw){
mw.loader.implement("user.options",function(){mw.user.options.set({"ccmeonemails":0,"cols":80,"date":"default","diffonly":0,"disablemail":0,"disablesuggest":0,"editfont":"default","editondblclick":0,"editsection":1,"editsectiononrightclick":0,"enotifminoredits":0,"enotifrevealaddr":0,"enotifusertalkpages":1,"enotifwatchlistpages":0,"extendwatchlist":0,"externaldiff":0,"externaleditor":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"imagesize":2,"justify":0,"math":0,"minordefault":0,"newpageshidepatrolled":0,"nocache":0,"noconvertlink":0,"norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"quickbar":5,"rcdays":7,"rclimit":50,"rememberpassword":0,"rows":25,"searchlimit":20,"showhiddencats":false,"showjumplinks":1,"shownumberswatching":1,"showtoc":1,"showtoolbar":1,"skin":"vector","stubthreshold":0,"thumbsize":4,"underline":2,"uselivepreview":0,"usenewrc":0,"watchcreations":1,"watchdefault":0,"watchdeletion":0,"watchlistdays":3
,"watchlisthideanons":0,"watchlisthidebots":0,"watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,"wllimit":250,"flaggedrevssimpleui":1,"flaggedrevsstable":0,"flaggedrevseditdiffs":true,"flaggedrevsviewdiffs":false,"vector-simplesearch":1,"useeditwarning":1,"vector-collapsiblenav":1,"usebetatoolbar":1,"usebetatoolbar-cgd":1,"aftv5-last-filter":null,"wikilove-enabled":1,"echo-subscriptions-web-page-review":true,"echo-subscriptions-email-page-review":true,"ep_showtoplink":false,"ep_bulkdelorgs":false,"ep_bulkdelcourses":true,"ep_showdyk":true,"variant":"en","language":"en","searchNs0":true,"searchNs1":false,"searchNs2":false,"searchNs3":false,"searchNs4":false,"searchNs5":false,"searchNs6":false,"searchNs7":false,"searchNs8":false,"searchNs9":false,"searchNs10":false,"searchNs11":false,"searchNs12":false,"searchNs13":false,"searchNs14":false,"searchNs15":false,"searchNs100":false,"searchNs101":false,"searchNs108":false,"searchNs109":
false,"searchNs446":false,"searchNs447":false,"searchNs710":false,"searchNs711":false,"searchNs828":false,"searchNs829":false,"gadget-teahouse":1,"gadget-ReferenceTooltips":1,"gadget-HotCat":1,"gadget-DRN-wizard":1,"gadget-charinsert":1,"gadget-mySandbox":1});},{},{});mw.loader.implement("user.tokens",function(){mw.user.tokens.set({"editToken":"+\\","patrolToken":false,"watchToken":false});},{},{});
/* cache key: enwiki:resourceloader:filter:minify-js:7:f01864140ec2ba42468570048b875f39 */
}</script>
<script>if(window.mw){
mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","mediawiki.legacy.ajax","ext.vector.footerCleanup","ext.wikimediaShopLink.core","ext.postEdit","wikibase.client.init","ext.centralNotice.bannerController"]);
}</script>
<script src="//bits.wikimedia.org/geoiplookup"></script><link rel="dns-prefetch" href="//meta.wikimedia.org" /><!--[if lt IE 7]><style type="text/css">body{behavior:url("http://en.wikipedia.org/wiki/en.wikipedia.org/w/static-1.22wmf1/skins/vector/csshover.min.htc")}</style><![endif]--></head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-1930 skin-vector action-view vector-animateLayout">
<div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<!-- content -->
<div id="content" class="mw-body" role="main">
<a id="top"></a>
<div id="mw-js-message" style="display:none;"></div>
<!-- sitenotice -->
<div id="siteNotice"><!-- CentralNotice --></div>
<!-- /sitenotice -->
<!-- firstHeading -->
<h1 id="firstHeading" class="firstHeading" lang="en"><span dir="auto">1930</span></h1>
<!-- /firstHeading -->
<!-- bodyContent -->
<div id="bodyContent">
<!-- tagline -->
<div id="siteSub">From Wikipedia, the free encyclopedia</div>
<!-- /tagline -->
<!-- subtitle -->
<div id="contentSub"></div>
<!-- /subtitle -->
<!-- jumpto -->
<div id="jump-to-nav" class="mw-jump">
Jump to: <a href="#mw-navigation">navigation</a>, <a href="#p-search">search</a>
</div>
<!-- /jumpto -->
<!-- bodycontent -->
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="dablink">This article is about the year 1930. For the Merzbow album, see <a href="1930_(album)" webstripperwas="http://en.wikipedia.org/wiki/1930_(album)" title="1930 (album)">1930 (album)</a>.</div>
<table class="infobox" style="text-align: center;">
<tr>
<th style="text-align:right; font-size:smaller;"><a href="Millennium" webstripperwas="http://en.wikipedia.org/wiki/Millennium" title="Millennium">Millennium</a>:</th>
<td><a href="2nd_millennium" webstripperwas="http://en.wikipedia.org/wiki/2nd_millennium" title="2nd millennium">2nd millennium</a></td>
</tr>
<tr>
<th style="text-align:right; font-size:smaller;"><a href="List_of_centuries" webstripperwas="http://en.wikipedia.org/wiki/List_of_centuries" title="List of centuries">Centuries</a>:</th>
<td><a href="19th_century" webstripperwas="http://en.wikipedia.org/wiki/19th_century" title="19th century">19th century</a> – <b><a href="20th_century" webstripperwas="http://en.wikipedia.org/wiki/20th_century" title="20th century">20th century</a></b> – <a href="21st_century" webstripperwas="http://en.wikipedia.org/wiki/21st_century" title="21st century">21st century</a></td>
</tr>
<tr>
<th style="text-align:right; font-size:smaller;"><a href="List_of_decades" webstripperwas="http://en.wikipedia.org/wiki/List_of_decades" title="List of decades">Decades</a>:</th>
<td><small><a href="1900$E2$80$931909" webstripperwas="http://en.wikipedia.org/wiki/1900%E2%80%931909" title="1900–1909" class="mw-redirect">1900s</a>  <a href="1910s" webstripperwas="http://en.wikipedia.org/wiki/1910s" title="1910s">1910s</a>  <a href="1920s" webstripperwas="http://en.wikipedia.org/wiki/1920s" title="1920s">1920s</a>  – <a href="1930s" webstripperwas="http://en.wikipedia.org/wiki/1930s" title="1930s">1930s</a> –  <a href="1940s" webstripperwas="http://en.wikipedia.org/wiki/1940s" title="1940s">1940s</a>  <a href="1950s" webstripperwas="http://en.wikipedia.org/wiki/1950s" title="1950s">1950s</a>  <a href="1960s" webstripperwas="http://en.wikipedia.org/wiki/1960s" title="1960s">1960s</a></small></td>
</tr>
<tr>
<th style="text-align:right; font-size:smaller;"><a href="List_of_years" webstripperwas="http://en.wikipedia.org/wiki/List_of_years" title="List of years">Years</a>:</th>
<td><a href="1927.html" webstripperwas="/wiki/1927" title="1927">1927</a> <a href="1928" webstripperwas="http://en.wikipedia.org/wiki/1928" title="1928">1928</a> <a href="1929" webstripperwas="http://en.wikipedia.org/wiki/1929" title="1929">1929</a> – <b><strong class="selflink">1930</strong></b> – <a href="1931" webstripperwas="http://en.wikipedia.org/wiki/1931" title="1931">1931</a> <a href="1932" webstripperwas="http://en.wikipedia.org/wiki/1932" title="1932">1932</a> <a href="1933" webstripperwas="http://en.wikipedia.org/wiki/1933" title="1933">1933</a></td>
</tr>
</table>
<table class="infobox hlist" style="width: 26em">
<tr>
<td align="center"><b><a href="Category3A1930" webstripperwas="http://en.wikipedia.org/wiki/Category:1930" title="Category:1930">1930 by topic</a>:</b></td>
</tr>
<tr>
<td style="background-color:#f3f3f3; text-align: center; font-size: smaller; font-style: italic">Subject</td>
</tr>
<tr>
<td align="center">
<ul>
<li><a href="1930_in_archaeology" webstripperwas="http://en.wikipedia.org/wiki/1930_in_archaeology" title="1930 in archaeology">Archaeology</a></li>
<li><a href="1930_in_architecture" webstripperwas="http://en.wikipedia.org/wiki/1930_in_architecture" title="1930 in architecture">Architecture</a></li>
<li><a href="1930_in_art" webstripperwas="http://en.wikipedia.org/wiki/1930_in_art" title="1930 in art">Art</a></li>
<li><a href="1930_in_aviation" webstripperwas="http://en.wikipedia.org/wiki/1930_in_aviation" title="1930 in aviation">Aviation</a></li>
<li><a href="Category3A1930_awards" webstripperwas="http://en.wikipedia.org/wiki/Category:1930_awards" title="Category:1930 awards">Awards</a></li>
<li><a href="http://en.wikipedia.org/w/index.php?title=1930_in_comics&action=edit&redlink=1" class="new" title="1930 in comics (page does not exist)">Comics</a></li>
<li><a href="1930_in_film" webstripperwas="http://en.wikipedia.org/wiki/1930_in_film" title="1930 in film">Film</a></li>
<li><a href="1930_in_literature" webstripperwas="http://en.wikipedia.org/wiki/1930_in_literature" title="1930 in literature">Literature</a> (<a href="1930_in_poetry" webstripperwas="http://en.wikipedia.org/wiki/1930_in_poetry" title="1930 in poetry">Poetry</a>)</li>
<li><a href="Category3A1930_meteorology" webstripperwas="http://en.wikipedia.org/wiki/Category:1930_meteorology" title="Category:1930 meteorology">Meteorology</a></li>
<li><a href="1930_in_music" webstripperwas="http://en.wikipedia.org/wiki/1930_in_music" title="1930 in music">Music</a> (<a href="1930_in_country_music" webstripperwas="http://en.wikipedia.org/wiki/1930_in_country_music" title="1930 in country music">Country</a>)</li>
<li><a href="1930_in_rail_transport" webstripperwas="http://en.wikipedia.org/wiki/1930_in_rail_transport" title="1930 in rail transport">Rail transport</a></li>
<li><a href="1930_in_radio" webstripperwas="http://en.wikipedia.org/wiki/1930_in_radio" title="1930 in radio">Radio</a></li>
<li><a href="1930_in_science" webstripperwas="http://en.wikipedia.org/wiki/1930_in_science" title="1930 in science">Science</a></li>
<li><a href="1930_in_sports" webstripperwas="http://en.wikipedia.org/wiki/1930_in_sports" title="1930 in sports">Sports</a></li>
<li><a href="1930_in_television" webstripperwas="http://en.wikipedia.org/wiki/1930_in_television" title="1930 in television">Television</a></li>
</ul>
</td>
</tr>
<tr>
<td style="background-color:#f3f3f3; text-align: center; font-size: smaller; font-style: italic">By country</td>
</tr>
<tr>
<td align="center">
<ul>
<li><a href="1930_in_Australia" webstripperwas="http://en.wikipedia.org/wiki/1930_in_Australia" title="1930 in Australia">Australia</a></li>
<li><a href="1930_in_Canada" webstripperwas="http://en.wikipedia.org/wiki/1930_in_Canada" title="1930 in Canada">Canada</a></li>
<li><a href="http://en.wikipedia.org/w/index.php?title=1930_in_China&action=edit&redlink=1" class="new" title="1930 in China (page does not exist)">China</a></li>
<li><a href="http://en.wikipedia.org/w/index.php?title=1930_in_Ecuador&action=edit&redlink=1" class="new" title="1930 in Ecuador (page does not exist)">Ecuador</a></li>
<li><a href="1930_in_France" webstripperwas="http://en.wikipedia.org/wiki/1930_in_France" title="1930 in France">France</a></li>
<li><a href="1930_in_Germany" webstripperwas="http://en.wikipedia.org/wiki/1930_in_Germany" title="1930 in Germany">Germany</a></li>
<li><a href="http://en.wikipedia.org/w/index.php?title=1930_in_Greece&action=edit&redlink=1" class="new" title="1930 in Greece (page does not exist)">Greece</a></li>
<li><a href="1930_in_India" webstripperwas="http://en.wikipedia.org/wiki/1930_in_India" title="1930 in India">India</a></li>
<li><a href="1930_in_Ireland" webstripperwas="http://en.wikipedia.org/wiki/1930_in_Ireland" title="1930 in Ireland">Ireland</a></li>
<li><a href="http://en.wikipedia.org/w/index.php?title=1930_in_Italy&action=edit&redlink=1" class="new" title="1930 in Italy (page does not exist)">Italy</a></li>
<li><a href="http://en.wikipedia.org/w/index.php?title=1930_in_Japan&action=edit&redlink=1" class="new" title="1930 in Japan (page does not exist)">Japan</a></li>
<li><a href="http://en.wikipedia.org/w/index.php?title=1930_in_Malaya&action=edit&redlink=1" class="new" title="1930 in Malaya (page does not exist)">Malaya</a></li>
<li><a href="http://en.wikipedia.org/w/index.php?title=1930_in_Mexico&action=edit&redlink=1" class="new" title="1930 in Mexico (page does not exist)">Mexico</a></li>
<li><a href="1930_in_New_Zealand" webstripperwas="http://en.wikipedia.org/wiki/1930_in_New_Zealand" title="1930 in New Zealand">New Zealand</a></li>
<li><a href="1930_in_Norway" webstripperwas="http://en.wikipedia.org/wiki/1930_in_Norway" title="1930 in Norway">Norway</a></li>
<li><a href="1930_in_the_British_Mandate_of_Palestine" webstripperwas="http://en.wikipedia.org/wiki/1930_in_the_British_Mandate_of_Palestine" title="1930 in the British Mandate of Palestine" class="mw-redirect">Palestine Mandate</a></li>
<li><a href="http://en.wikipedia.org/w/index.php?title=1930_in_the_Philippines&action=edit&redlink=1" class="new" title="1930 in the Philippines (page does not exist)">Philippines</a></li>
<li><a href="http://en.wikipedia.org/w/index.php?title=1930_in_Singapore&action=edit&redlink=1" class="new" title="1930 in Singapore (page does not exist)">Singapore</a></li>
<li><a href="1930_in_South_Africa" webstripperwas="http://en.wikipedia.org/wiki/1930_in_South_Africa" title="1930 in South Africa">South Africa</a></li>
<li><a href="http://en.wikipedia.org/w/index.php?title=1930_in_the_Soviet_Union&action=edit&redlink=1" class="new" title="1930 in the Soviet Union (page does not exist)">Soviet Union</a></li>
<li><a href="1930_in_the_United_Kingdom" webstripperwas="http://en.wikipedia.org/wiki/1930_in_the_United_Kingdom" title="1930 in the United Kingdom">United Kingdom</a></li>
<li><a href="1930_in_the_United_States" webstripperwas="http://en.wikipedia.org/wiki/1930_in_the_United_States" title="1930 in the United States">United States</a></li>
</ul>
</td>
</tr>
<tr>
<td style="background-color:#f3f3f3; text-align: center; font-size: smaller; font-style: italic">Leaders</td>
</tr>
<tr>
<td align="center">
<ul>
<li><a href="List_of_sovereign_states_in_1930" webstripperwas="http://en.wikipedia.org/wiki/List_of_sovereign_states_in_1930" title="List of sovereign states in 1930">Sovereign states</a></li>
<li><a href="List_of_state_leaders_in_1930" webstripperwas="http://en.wikipedia.org/wiki/List_of_state_leaders_in_1930" title="List of state leaders in 1930">State leaders</a></li>
<li><a href="List_of_religious_leaders_in_1930" webstripperwas="http://en.wikipedia.org/wiki/List_of_religious_leaders_in_1930" title="List of religious leaders in 1930" class="mw-redirect">Religious leaders</a></li>
<li><a href="Category3A1930_in_law" webstripperwas="http://en.wikipedia.org/wiki/Category:1930_in_law" title="Category:1930 in law">Law</a></li>
</ul>
</td>
</tr>
<tr>
<td style="background-color:#f3f3f3; text-align: center; font-size: smaller; font-style: italic">Birth and death categories</td>
</tr>
<tr>
<td align="center">
<ul>
<li><a href="Category3A1930_births" webstripperwas="http://en.wikipedia.org/wiki/Category:1930_births" title="Category:1930 births">Births</a></li>
<li><a href="Category3A1930_deaths" webstripperwas="http://en.wikipedia.org/wiki/Category:1930_deaths" title="Category:1930 deaths">Deaths</a></li>
</ul>
</td>
</tr>
<tr>
<td style="background-color:#f3f3f3; text-align: center; font-size: smaller; font-style: italic">Establishments and disestablishments categories</td>
</tr>
<tr>
<td align="center">
<ul>
<li><a href="Category3A1930_establishments" webstripperwas="http://en.wikipedia.org/wiki/Category:1930_establishments" title="Category:1930 establishments">Establishments</a></li>
<li><a href="Category3A1930_disestablishments" webstripperwas="http://en.wikipedia.org/wiki/Category:1930_disestablishments" title="Category:1930 disestablishments">Disestablishments</a></li>
</ul>
</td>
</tr>
<tr>
<td style="background-color:#f3f3f3; text-align: center; font-size: smaller; font-style: italic">Works and introductions categories</td>
</tr>
<tr>
<td align="center">
<ul>
<li><a href="Category3A1930_works" webstripperwas="http://en.wikipedia.org/wiki/Category:1930_works" title="Category:1930 works">Works</a></li>
<li><a href="Category3A1930_introductions" webstripperwas="http://en.wikipedia.org/wiki/Category:1930_introductions" title="Category:1930 introductions">Introductions</a></li>
</ul>
</td>
</tr>
<tr>
<td align="center">
<div class="noprint plainlinks hlist navbar mini" style="">
<ul>
<li class="nv-view"><a href="Template3AC20_year_in_topic" webstripperwas="http://en.wikipedia.org/wiki/Template:C20_year_in_topic" title="Template:C20 year in topic"><span title="View this template" style="">v</span></a></li>
<li class="nv-talk"><a href="Template_talk3AC20_year_in_topic" webstripperwas="http://en.wikipedia.org/wiki/Template_talk:C20_year_in_topic" title="Template talk:C20 year in topic"><span title="Discuss this template" style="">t</span></a></li>
<li class="nv-edit"><a class="external text" href="http://en.wikipedia.org/w/index.php?title=Template:C20_year_in_topic&action=edit" ><span title="Edit this template" style="">e</span></a></li>
</ul>
</div>
</td>
</tr>
</table>
<table class="infobox vevent" style="width: 22em">
<caption style="font-size: 125%"><span class="summary dtstart">1930</span> in other calendars</caption>
<tr>
<td><a href="Gregorian_calendar" webstripperwas="http://en.wikipedia.org/wiki/Gregorian_calendar" title="Gregorian calendar">Gregorian calendar</a></td>
<td>1930<br />
<i><span style="font-family: serif">MCMXXX</span></i></td>
</tr>
<tr>
<td><a href="Ab_urbe_condita" webstripperwas="http://en.wikipedia.org/wiki/Ab_urbe_condita" title="Ab urbe condita">Ab urbe condita</a></td>
<td>2683</td>
</tr>
<tr>
<td><a href="Armenian_calendar" webstripperwas="http://en.wikipedia.org/wiki/Armenian_calendar" title="Armenian calendar">Armenian calendar</a></td>
<td>1379<br />
ԹՎ ՌՅՀԹ</td>
</tr>
<tr>
<td><a href="Assyrian_calendar" webstripperwas="http://en.wikipedia.org/wiki/Assyrian_calendar" title="Assyrian calendar">Assyrian calendar</a></td>
<td>6680</td>
</tr>
<tr>
<td><a href="Bah$C3$A1$27$C3$AD_calendar" webstripperwas="http://en.wikipedia.org/wiki/Bah%C3%A1%27%C3%AD_calendar" title="Bahá'í calendar">Bahá'í calendar</a></td>
<td>86–87</td>
</tr>
<tr>
<td><a href="Bengali_calendar" webstripperwas="http://en.wikipedia.org/wiki/Bengali_calendar" title="Bengali calendar">Bengali calendar</a></td>
<td>1337</td>
</tr>
<tr>
<td><a href="Berber_calendar" webstripperwas="http://en.wikipedia.org/wiki/Berber_calendar" title="Berber calendar">Berber calendar</a></td>
<td>2880</td>
</tr>
<tr>
<td><a href="Regnal_years_of_English_monarchs" webstripperwas="http://en.wikipedia.org/wiki/Regnal_years_of_English_monarchs" title="Regnal years of English monarchs">British Regnal year</a></td>
<td>19 <a href="George_V" webstripperwas="http://en.wikipedia.org/wiki/George_V" title="George V">Geo. 5</a> – 20 <a href="George_V" webstripperwas="http://en.wikipedia.org/wiki/George_V" title="George V">Geo. 5</a></td>
</tr>
<tr>
<td><a href="Buddhist_calendar" webstripperwas="http://en.wikipedia.org/wiki/Buddhist_calendar" title="Buddhist calendar">Buddhist calendar</a></td>
<td>2474</td>
</tr>
<tr>
<td><a href="Traditional_Burmese_calendar" webstripperwas="http://en.wikipedia.org/wiki/Traditional_Burmese_calendar" title="Traditional Burmese calendar" class="mw-redirect">Burmese calendar</a></td>
<td>1292</td>
</tr>
<tr>
<td><a href="Byzantine_calendar" webstripperwas="http://en.wikipedia.org/wiki/Byzantine_calendar" title="Byzantine calendar">Byzantine calendar</a></td>
<td>7438–7439</td>
</tr>
<tr>
<td><a href="Chinese_calendar" webstripperwas="http://en.wikipedia.org/wiki/Chinese_calendar" title="Chinese calendar">Chinese calendar</a></td>
<td><small><a href="Sexagenary_cycle" webstripperwas="http://en.wikipedia.org/wiki/Sexagenary_cycle" title="Sexagenary cycle">己巳</a>年十二月初二日</small><br />
(4566/4626-12-2)
<div style="text-align: center"><i>— to —</i></div>
<small><a href="Sexagenary_cycle" webstripperwas="http://en.wikipedia.org/wiki/Sexagenary_cycle" title="Sexagenary cycle">庚午</a>年十一月十二日</small><br />
(4567/4627-11-12)</td>
</tr>
<tr>
<td><a href="Coptic_calendar" webstripperwas="http://en.wikipedia.org/wiki/Coptic_calendar" title="Coptic calendar">Coptic calendar</a></td>
<td>1646–1647</td>
</tr>
<tr>
<td><a href="Ethiopian_calendar" webstripperwas="http://en.wikipedia.org/wiki/Ethiopian_calendar" title="Ethiopian calendar">Ethiopian calendar</a></td>
<td>1922–1923</td>
</tr>
<tr>
<td><a href="Hebrew_calendar" webstripperwas="http://en.wikipedia.org/wiki/Hebrew_calendar" title="Hebrew calendar">Hebrew calendar</a></td>
<td>5690–5691</td>
</tr>
<tr>
<td><a href="Hindu_calendar" webstripperwas="http://en.wikipedia.org/wiki/Hindu_calendar" title="Hindu calendar">Hindu calendars</a></td>
<td></td>
</tr>
<tr>
<td> - <i><a href="Vikram_Samvat" webstripperwas="http://en.wikipedia.org/wiki/Vikram_Samvat" title="Vikram Samvat">Vikram Samvat</a></i></td>
<td>1986–1987</td>
</tr>
<tr>
<td> - <i><a href="Indian_national_calendar" webstripperwas="http://en.wikipedia.org/wiki/Indian_national_calendar" title="Indian national calendar">Shaka Samvat</a></i></td>
<td>1852–1853</td>
</tr>
<tr>
<td> - <i><a href="Kali_Yuga" webstripperwas="http://en.wikipedia.org/wiki/Kali_Yuga" title="Kali Yuga">Kali Yuga</a></i></td>
<td>5031–5032</td>
</tr>
<tr>
<td><a href="Human_Era" webstripperwas="http://en.wikipedia.org/wiki/Human_Era" title="Human Era">Holocene calendar</a></td>
<td>11930</td>
</tr>
<tr>
<td><a href="Igbo_calendar" webstripperwas="http://en.wikipedia.org/wiki/Igbo_calendar" title="Igbo calendar">Igbo calendar</a></td>
<td></td>
</tr>
<tr>
<td> - <a href="Nri-Igbo" webstripperwas="http://en.wikipedia.org/wiki/Nri-Igbo" title="Nri-Igbo">Ǹrí Ìgbò</a></td>
<td>930–931</td>
</tr>
<tr>
<td><a href="Iranian_calendars" webstripperwas="http://en.wikipedia.org/wiki/Iranian_calendars" title="Iranian calendars">Iranian calendar</a></td>
<td>1308–1309</td>
</tr>
<tr>
<td><a href="Islamic_calendar" webstripperwas="http://en.wikipedia.org/wiki/Islamic_calendar" title="Islamic calendar">Islamic calendar</a></td>
<td>1348–1349</td>
</tr>
<tr>
<td><a href="Japanese_calendar" webstripperwas="http://en.wikipedia.org/wiki/Japanese_calendar" title="Japanese calendar">Japanese calendar</a></td>
<td><a href="Sh$C5$8Dwa_period" webstripperwas="http://en.wikipedia.org/wiki/Sh%C5%8Dwa_period" title="Shōwa period">Shōwa</a> 5<br />
<small>(昭和5年)</small></td>
</tr>
<tr>
<td><a href="North_Korean_calendar" webstripperwas="http://en.wikipedia.org/wiki/North_Korean_calendar" title="North Korean calendar">Juche calendar</a></td>
<td>19</td>
</tr>
<tr>
<td><a href="Julian_calendar" webstripperwas="http://en.wikipedia.org/wiki/Julian_calendar" title="Julian calendar">Julian calendar</a></td>
<td>Gregorian minus 13 days</td>
</tr>
<tr>
<td><a href="Korean_calendar" webstripperwas="http://en.wikipedia.org/wiki/Korean_calendar" title="Korean calendar">Korean calendar</a></td>
<td>4263</td>
</tr>
<tr>
<td><a href="Minguo_calendar" webstripperwas="http://en.wikipedia.org/wiki/Minguo_calendar" title="Minguo calendar">Minguo calendar</a></td>
<td><a href="Taiwan" webstripperwas="http://en.wikipedia.org/wiki/Taiwan" title="Taiwan">ROC</a> 19<br />
<small>民國19年</small></td>
</tr>
<tr>
<td><a href="Thai_solar_calendar" webstripperwas="http://en.wikipedia.org/wiki/Thai_solar_calendar" title="Thai solar calendar">Thai solar calendar</a></td>
<td>2473</td>
</tr>
<tr>
<td colspan="2" style="text-align: center">
<div class="noprint plainlinks hlist navbar" style=""><span style="word-spacing:0;">This box:</span>
<ul>
<li class="nv-view"><a href="Template3AYear_in_other_calendars" webstripperwas="http://en.wikipedia.org/wiki/Template:Year_in_other_calendars" title="Template:Year in other calendars"><span title="View this template" style="">view</span></a></li>
<li class="nv-talk"><a href="Template_talk3AYear_in_other_calendars" webstripperwas="http://en.wikipedia.org/wiki/Template_talk:Year_in_other_calendars" title="Template talk:Year in other calendars"><span title="Discuss this template" style="">talk</span></a></li>
<li class="nv-edit"><a class="external text" href="http://en.wikipedia.org/w/index.php?title=Template:Year_in_other_calendars&action=edit" ><span title="Edit this template" style="">edit</span></a></li>
</ul>
</div>
</td>
</tr>
</table>
<table class="metadata mbox-small plainlinks" style="border:1px solid #aaa; background-color:#f9f9f9;">
<tr>
<td class="mbox-image"><img alt="" src="upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/30px-Commons-logo.svg.png" webstripperwas="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/30px-Commons-logo.svg.png" width="30" height="40" srcset="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/45px-Commons-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/59px-Commons-logo.svg.png 2x" /></td>
<td class="mbox-text plainlist" style="">Wikimedia Commons has media related to: <i><b><a href="http://commons.wikimedia.org/wiki/Category:1930" class="extiw" title="commons:Category:1930">1930</a></b></i></td>
</tr>
</table>
<p>Year <b>1930</b> (<b><a href="Roman_numerals" webstripperwas="http://en.wikipedia.org/wiki/Roman_numerals" title="Roman numerals">MCMXXX</a></b>) was a <a href="Common_year_starting_on_Wednesday" webstripperwas="http://en.wikipedia.org/wiki/Common_year_starting_on_Wednesday" title="Common year starting on Wednesday">common year starting on Wednesday</a> (link will display the full calendar) of the <a href="Gregorian_calendar" webstripperwas="http://en.wikipedia.org/wiki/Gregorian_calendar" title="Gregorian calendar">Gregorian calendar</a>.</p>
<h2><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=1" title="Edit section: Events">edit</a>]</span> <span class="mw-headline" id="Events">Events</span></h2>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=2" title="Edit section: January">edit</a>]</span> <span class="mw-headline" id="January">January</span></h3>
<ul>
<li><a href="January_6" webstripperwas="http://en.wikipedia.org/wiki/January_6" title="January 6">January 6</a>
<ul>
<li>The first diesel engine automobile trip is completed (<a href="Indianapolis" webstripperwas="http://en.wikipedia.org/wiki/Indianapolis" title="Indianapolis">Indianapolis</a>, Indiana, to <a href="New_York_City" webstripperwas="http://en.wikipedia.org/wiki/New_York_City" title="New York City">New York City</a>) by <a href="Clessie_Cummins" webstripperwas="http://en.wikipedia.org/wiki/Clessie_Cummins" title="Clessie Cummins">Clessie Cummins</a>, founder of the Cummins Motor Co..</li>
<li>An early literary character licensing agreement is signed by <a href="A._A._Milne" webstripperwas="http://en.wikipedia.org/wiki/A._A._Milne" title="A. A. Milne">A. A. Milne</a>, granting <a href="Stephen_Slesinger" webstripperwas="http://en.wikipedia.org/wiki/Stephen_Slesinger" title="Stephen Slesinger">Stephen Slesinger</a> U.S. and Canadian merchandising rights to the <a href="Winnie-the-Pooh" webstripperwas="http://en.wikipedia.org/wiki/Winnie-the-Pooh" title="Winnie-the-Pooh">Winnie-the-Pooh</a> works.</li>
</ul>
</li>
<li><a href="January_13" webstripperwas="http://en.wikipedia.org/wiki/January_13" title="January 13">January 13</a> – The <a href="Mickey_Mouse" webstripperwas="http://en.wikipedia.org/wiki/Mickey_Mouse" title="Mickey Mouse">Mickey Mouse</a> comic strip makes its first appearance.</li>
<li><a href="January_26" webstripperwas="http://en.wikipedia.org/wiki/January_26" title="January 26">January 26</a> – The <a href="Indian_National_Congress" webstripperwas="http://en.wikipedia.org/wiki/Indian_National_Congress" title="Indian National Congress">Indian National Congress</a> declares this date as Independence Day or as the day for Poorna Swaraj (Complete Independence).</li>
<li><a href="January_28" webstripperwas="http://en.wikipedia.org/wiki/January_28" title="January 28">January 28</a> – The first <a href="Patent" webstripperwas="http://en.wikipedia.org/wiki/Patent" title="Patent">patent</a> for a <a href="Field-effect_transistor" webstripperwas="http://en.wikipedia.org/wiki/Field-effect_transistor" title="Field-effect transistor">field-effect transistor</a> is granted in the <a href="United_States.html" webstripperwas="/wiki/United_States" title="United States">United States</a> to <a href="Julius_Edgar_Lilienfeld" webstripperwas="http://en.wikipedia.org/wiki/Julius_Edgar_Lilienfeld" title="Julius Edgar Lilienfeld">Julius Edgar Lilienfeld</a>.<sup id="cite_ref-1" class="reference"><a href="#cite_note-1"><span>[</span>1<span>]</span></a></sup></li>
<li><a href="January_30" webstripperwas="http://en.wikipedia.org/wiki/January_30" title="January 30">January 30</a> – <a href="Pavel_Molchanov" webstripperwas="http://en.wikipedia.org/wiki/Pavel_Molchanov" title="Pavel Molchanov">Pavel Molchanov</a> launches a <a href="Radiosonde" webstripperwas="http://en.wikipedia.org/wiki/Radiosonde" title="Radiosonde">radiosonde</a> from <a href="Pavlovsk,_Saint_Petersburg" webstripperwas="http://en.wikipedia.org/wiki/Pavlovsk,_Saint_Petersburg" title="Pavlovsk, Saint Petersburg">Pavlovsk</a> in the <a href="Soviet_Union" webstripperwas="http://en.wikipedia.org/wiki/Soviet_Union" title="Soviet Union">Soviet Union</a>.</li>
<li><a href="January_31" webstripperwas="http://en.wikipedia.org/wiki/January_31" title="January 31">January 31</a> – The <a href="3M" webstripperwas="http://en.wikipedia.org/wiki/3M" title="3M">3M</a> company markets <a href="Scotch_Tape" webstripperwas="http://en.wikipedia.org/wiki/Scotch_Tape" title="Scotch Tape">Scotch Tape</a>, invented by <a href="Richard_Gurley_Drew" webstripperwas="http://en.wikipedia.org/wiki/Richard_Gurley_Drew" title="Richard Gurley Drew">Richard Gurley Drew</a>, in the United States.</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=3" title="Edit section: February">edit</a>]</span> <span class="mw-headline" id="February">February</span></h3>
<ul>
<li><a href="February_2" webstripperwas="http://en.wikipedia.org/wiki/February_2" title="February 2">February 2</a> – The <a href="Communist_Party_of_Vietnam" webstripperwas="http://en.wikipedia.org/wiki/Communist_Party_of_Vietnam" title="Communist Party of Vietnam">Communist Party of Vietnam</a> is established.</li>
<li><a href="February_10" webstripperwas="http://en.wikipedia.org/wiki/February_10" title="February 10">February 10</a> – The <a href="Viet_Nam_Quoc_Dan_Dang" webstripperwas="http://en.wikipedia.org/wiki/Viet_Nam_Quoc_Dan_Dang" title="Viet Nam Quoc Dan Dang">Viet Nam Quoc Dan Dang</a> launch the <a href="Yen_Bai_mutiny" webstripperwas="http://en.wikipedia.org/wiki/Yen_Bai_mutiny" title="Yen Bai mutiny">Yen Bai mutiny</a> in the hope of ending <a href="French_Indochina" webstripperwas="http://en.wikipedia.org/wiki/French_Indochina" title="French Indochina">French colonial rule</a> in <a href="Vietnam" webstripperwas="http://en.wikipedia.org/wiki/Vietnam" title="Vietnam">Vietnam</a>.</li>
<li><a href="February_18" webstripperwas="http://en.wikipedia.org/wiki/February_18" title="February 18">February 18</a>
<ul>
<li>While studying photographs taken in January, <a href="Clyde_Tombaugh" webstripperwas="http://en.wikipedia.org/wiki/Clyde_Tombaugh" title="Clyde Tombaugh">Clyde Tombaugh</a> confirms the existence of <a href="Pluto" webstripperwas="http://en.wikipedia.org/wiki/Pluto" title="Pluto">Pluto</a>, a heavenly body considered a planet until redefined as a <a href="Dwarf_planet" webstripperwas="http://en.wikipedia.org/wiki/Dwarf_planet" title="Dwarf planet">dwarf planet</a> in <a href="2006" webstripperwas="http://en.wikipedia.org/wiki/2006" title="2006">2006</a>.</li>
<li><a href="Elm_Farm_Ollie" webstripperwas="http://en.wikipedia.org/wiki/Elm_Farm_Ollie" title="Elm Farm Ollie">Elm Farm Ollie</a> becomes the first <a href="Cow" webstripperwas="http://en.wikipedia.org/wiki/Cow" title="Cow" class="mw-redirect">cow</a> to fly in an <a href="Fixed-wing_aircraft" webstripperwas="http://en.wikipedia.org/wiki/Fixed-wing_aircraft" title="Fixed-wing aircraft">fixed-wing aircraft</a>, and also the first cow to be milked in an airplane.</li>
</ul>
</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=4" title="Edit section: March">edit</a>]</span> <span class="mw-headline" id="March">March</span></h3>
<ul>
<li><a href="March_2" webstripperwas="http://en.wikipedia.org/wiki/March_2" title="March 2">March 2</a> – <a href="Mahatma_Gandhi" webstripperwas="http://en.wikipedia.org/wiki/Mahatma_Gandhi" title="Mahatma Gandhi">Mahatma Gandhi</a> informs the British <a href="Viceroy_of_India" webstripperwas="http://en.wikipedia.org/wiki/Viceroy_of_India" title="Viceroy of India" class="mw-redirect">viceroy of India</a> that <a href="Civil_disobedience" webstripperwas="http://en.wikipedia.org/wiki/Civil_disobedience" title="Civil disobedience">civil disobedience</a> will begin 9 days later.</li>
<li><a href="March_5" webstripperwas="http://en.wikipedia.org/wiki/March_5" title="March 5">March 5</a> – Danish painter Einar Wegener begins <a href="Sexual_reassignment" webstripperwas="http://en.wikipedia.org/wiki/Sexual_reassignment" title="Sexual reassignment" class="mw-redirect">sexual reassignment</a> surgery in <a href="Germany" webstripperwas="http://en.wikipedia.org/wiki/Germany" title="Germany">Germany</a> and takes the name <a href="Lili_Elbe" webstripperwas="http://en.wikipedia.org/wiki/Lili_Elbe" title="Lili Elbe">Lili Elbe</a>.</li>
<li><a href="March_6" webstripperwas="http://en.wikipedia.org/wiki/March_6" title="March 6">March 6</a> – The first <a href="Frozen_food" webstripperwas="http://en.wikipedia.org/wiki/Frozen_food" title="Frozen food">frozen foods</a> of <a href="Clarence_Birdseye" webstripperwas="http://en.wikipedia.org/wiki/Clarence_Birdseye" title="Clarence Birdseye">Clarence Birdseye</a> go on sale in <a href="Springfield,_Massachusetts" webstripperwas="http://en.wikipedia.org/wiki/Springfield,_Massachusetts" title="Springfield, Massachusetts">Springfield, Massachusetts</a>.</li>
<li><a href="March_12" webstripperwas="http://en.wikipedia.org/wiki/March_12" title="March 12">March 12</a> – <a href="Mahatma_Gandhi" webstripperwas="http://en.wikipedia.org/wiki/Mahatma_Gandhi" title="Mahatma Gandhi">Mahatma Gandhi</a> sets off on a 200-mile protest march towards the sea with 78 followers to protest at the British monopoly on <a href="Salt" webstripperwas="http://en.wikipedia.org/wiki/Salt" title="Salt">salt</a>; more will join them during the <a href="Salt_March" webstripperwas="http://en.wikipedia.org/wiki/Salt_March" title="Salt March">Salt March</a> that ends on April 5.</li>
<li><a href="March_28" webstripperwas="http://en.wikipedia.org/wiki/March_28" title="March 28">March 28</a> – The government of <a href="Turkey" webstripperwas="http://en.wikipedia.org/wiki/Turkey" title="Turkey">Turkey</a> requests the international community to adopt <a href="Istanbul" webstripperwas="http://en.wikipedia.org/wiki/Istanbul" title="Istanbul">Istanbul</a> and <a href="Ankara" webstripperwas="http://en.wikipedia.org/wiki/Ankara" title="Ankara">Ankara</a> as the official names for <a href="Constantinople" webstripperwas="http://en.wikipedia.org/wiki/Constantinople" title="Constantinople">Constantinople</a> and Angora.</li>
<li><a href="March_29" webstripperwas="http://en.wikipedia.org/wiki/March_29" title="March 29">March 29</a> – <a href="Heinrich_Br$C3$BCning" webstripperwas="http://en.wikipedia.org/wiki/Heinrich_Br%C3%BCning" title="Heinrich Brüning">Heinrich Brüning</a> is appointed <a href="Chancellor_of_Germany" webstripperwas="http://en.wikipedia.org/wiki/Chancellor_of_Germany" title="Chancellor of Germany">Chancellor of Germany</a>.</li>
<li><a href="March_31" webstripperwas="http://en.wikipedia.org/wiki/March_31" title="March 31">March 31</a> – The <a href="Motion_Picture_Production_Code" webstripperwas="http://en.wikipedia.org/wiki/Motion_Picture_Production_Code" title="Motion Picture Production Code">Motion Picture Production Code</a> ("Hays Code") is instituted in the United States, imposing strict guidelines on the treatment of sex, crime, religion and violence on <a href="Film" webstripperwas="http://en.wikipedia.org/wiki/Film" title="Film">films</a> for the next 40 years.</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=5" title="Edit section: April">edit</a>]</span> <span class="mw-headline" id="April">April</span></h3>
<ul>
<li><a href="April_4" webstripperwas="http://en.wikipedia.org/wiki/April_4" title="April 4">April 4</a> – The <a href="Communist_Party_of_Panama" webstripperwas="http://en.wikipedia.org/wiki/Communist_Party_of_Panama" title="Communist Party of Panama" class="mw-redirect">Communist Party of Panama</a> is founded.</li>
<li><a href="April_5" webstripperwas="http://en.wikipedia.org/wiki/April_5" title="April 5">April 5</a> – In an act of <a href="Civil_disobedience" webstripperwas="http://en.wikipedia.org/wiki/Civil_disobedience" title="Civil disobedience">civil disobedience</a>, <a href="Mahatma_Gandhi" webstripperwas="http://en.wikipedia.org/wiki/Mahatma_Gandhi" title="Mahatma Gandhi">Mahatma Gandhi</a> breaks the law of the <a href="British_Raj" webstripperwas="http://en.wikipedia.org/wiki/British_Raj" title="British Raj">British Raj</a> by making <a href="Salt" webstripperwas="http://en.wikipedia.org/wiki/Salt" title="Salt">salt</a> by the sea at the end of the <a href="Salt_March" webstripperwas="http://en.wikipedia.org/wiki/Salt_March" title="Salt March">Salt March</a>.</li>
<li><a href="April_6" webstripperwas="http://en.wikipedia.org/wiki/April_6" title="April 6">April 6</a>
<ul>
<li><a href="Left_Opposition" webstripperwas="http://en.wikipedia.org/wiki/Left_Opposition" title="Left Opposition">International Left Opposition</a> (ILO) is founded in <a href="Paris" webstripperwas="http://en.wikipedia.org/wiki/Paris" title="Paris">Paris</a>, <a href="France" webstripperwas="http://en.wikipedia.org/wiki/France" title="France">France</a>.</li>
<li>Hostess <a href="Twinkie" webstripperwas="http://en.wikipedia.org/wiki/Twinkie" title="Twinkie">Twinkies</a> are invented.</li>
</ul>
</li>
<li><a href="April_17" webstripperwas="http://en.wikipedia.org/wiki/April_17" title="April 17">April 17</a> – <a href="Neoprene" webstripperwas="http://en.wikipedia.org/wiki/Neoprene" title="Neoprene">Neoprene</a> is invented by <a href="DuPont" webstripperwas="http://en.wikipedia.org/wiki/DuPont" title="DuPont">DuPont</a>.</li>
<li><a href="April_18" webstripperwas="http://en.wikipedia.org/wiki/April_18" title="April 18">April 18</a>
<ul>
<li>The Chittagong Rebellion begins in <a href="India" webstripperwas="http://en.wikipedia.org/wiki/India" title="India">India</a> with the <a href="Chittagong_armoury_raid" webstripperwas="http://en.wikipedia.org/wiki/Chittagong_armoury_raid" title="Chittagong armoury raid">Chittagong armoury raid</a>.</li>
<li><a href="BBC_Radio" webstripperwas="http://en.wikipedia.org/wiki/BBC_Radio" title="BBC Radio">BBC Radio</a> from <a href="London" webstripperwas="http://en.wikipedia.org/wiki/London" title="London">London</a> reports on this day that "There is no news".</li>
</ul>
</li>
<li><a href="April_19" webstripperwas="http://en.wikipedia.org/wiki/April_19" title="April 19">April 19</a> – <a href="Warner_Bros." webstripperwas="http://en.wikipedia.org/wiki/Warner_Bros." title="Warner Bros.">Warner Bros.</a> in the United States release their first cartoon series called <i><a href="Looney_Tunes" webstripperwas="http://en.wikipedia.org/wiki/Looney_Tunes" title="Looney Tunes">Looney Tunes</a></i> which runs until 1969.</li>
<li><a href="April_21.html" webstripperwas="/wiki/April_21" title="April 21">April 21</a>
<ul>
<li>A fire in the <a href="Ohio_Penitentiary" webstripperwas="http://en.wikipedia.org/wiki/Ohio_Penitentiary" title="Ohio Penitentiary">Ohio Penitentiary</a> in <a href="Columbus,_Ohio" webstripperwas="http://en.wikipedia.org/wiki/Columbus,_Ohio" title="Columbus, Ohio">Columbus</a> kills 320 people.</li>
<li>The <a href="Turkestan$E2$80$93Siberia_Railway" webstripperwas="http://en.wikipedia.org/wiki/Turkestan%E2%80%93Siberia_Railway" title="Turkestan–Siberia Railway">Turkestan–Siberia Railway</a> is completed.</li>
</ul>
</li>
<li><a href="April_22.html" webstripperwas="/wiki/April_22" title="April 22">April 22</a> – The <a href="United_Kingdom" webstripperwas="http://en.wikipedia.org/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a>, <a href="Japan" webstripperwas="http://en.wikipedia.org/wiki/Japan" title="Japan">Japan</a> and the <a href="United_States.html" webstripperwas="/wiki/United_States" title="United States">United States</a> sign the <a href="London_Naval_Treaty.html" webstripperwas="/wiki/London_Naval_Treaty" title="London Naval Treaty">London Naval Treaty</a> to regulate <a href="Submarine.html" webstripperwas="/wiki/Submarine" title="Submarine">submarine</a> warfare and limit naval shipbuilding.</li>
<li><a href="April_28" webstripperwas="http://en.wikipedia.org/wiki/April_28" title="April 28">April 28</a> – The first night game in organized <a href="Baseball" webstripperwas="http://en.wikipedia.org/wiki/Baseball" title="Baseball">baseball</a> history takes place in <a href="Independence,_Kansas" webstripperwas="http://en.wikipedia.org/wiki/Independence,_Kansas" title="Independence, Kansas">Independence, Kansas</a>.</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=6" title="Edit section: May">edit</a>]</span> <span class="mw-headline" id="May">May</span></h3>
<ul>
<li><a href="May_4" webstripperwas="http://en.wikipedia.org/wiki/May_4" title="May 4">May 4</a> or <a href="May_5" webstripperwas="http://en.wikipedia.org/wiki/May_5" title="May 5">5</a> – <a href="Mahatma_Gandhi" webstripperwas="http://en.wikipedia.org/wiki/Mahatma_Gandhi" title="Mahatma Gandhi">Mahatma Gandhi</a> is arrested again.</li>
<li><a href="May_6" webstripperwas="http://en.wikipedia.org/wiki/May_6" title="May 6">May 6</a> – The Great <a href="Salmas" webstripperwas="http://en.wikipedia.org/wiki/Salmas" title="Salmas">Salmas</a> Earthquake in <a href="Iran" webstripperwas="http://en.wikipedia.org/wiki/Iran" title="Iran">Iran</a> (7.3 on the Richter Scale) kills 4,000 people.</li>
<li><a href="May_10" webstripperwas="http://en.wikipedia.org/wiki/May_10" title="May 10">May 10</a> – The <a href="National_Pan-Hellenic_Council" webstripperwas="http://en.wikipedia.org/wiki/National_Pan-Hellenic_Council" title="National Pan-Hellenic Council">National Pan-Hellenic Council</a> is founded in <a href="Washington,_D.C." webstripperwas="http://en.wikipedia.org/wiki/Washington,_D.C." title="Washington, D.C.">Washington, D.C.</a>.</li>
<li><a href="May_15" webstripperwas="http://en.wikipedia.org/wiki/May_15" title="May 15">May 15</a> – Nurse <a href="Ellen_Church" webstripperwas="http://en.wikipedia.org/wiki/Ellen_Church" title="Ellen Church">Ellen Church</a> becomes the world's first <a href="Flight_attendant" webstripperwas="http://en.wikipedia.org/wiki/Flight_attendant" title="Flight attendant">flight attendant</a>, working on a <a href="Boeing_Air_Transport" webstripperwas="http://en.wikipedia.org/wiki/Boeing_Air_Transport" title="Boeing Air Transport" class="mw-redirect">Boeing Air Transport</a> trimotor.</li>
<li><a href="May_16" webstripperwas="http://en.wikipedia.org/wiki/May_16" title="May 16">May 16</a> – <a href="Rafael_Le$C3$B3nidas_Trujillo" webstripperwas="http://en.wikipedia.org/wiki/Rafael_Le%C3%B3nidas_Trujillo" title="Rafael Leónidas Trujillo" class="mw-redirect">Rafael Leónidas Trujillo</a> is elected president of the <a href="Dominican_Republic" webstripperwas="http://en.wikipedia.org/wiki/Dominican_Republic" title="Dominican Republic">Dominican Republic</a>.</li>
<li><a href="May_17" webstripperwas="http://en.wikipedia.org/wiki/May_17" title="May 17">May 17</a> – French Prime Minister <a href="Andr$C3$A9_Tardieu" webstripperwas="http://en.wikipedia.org/wiki/Andr%C3%A9_Tardieu" title="André Tardieu">André Tardieu</a> decides to withdraw the remaining French troops from the <a href="Rhineland" webstripperwas="http://en.wikipedia.org/wiki/Rhineland" title="Rhineland">Rhineland</a> (they depart by <a href="June_30" webstripperwas="http://en.wikipedia.org/wiki/June_30" title="June 30">June 30</a>).</li>
<li><a href="May_24" webstripperwas="http://en.wikipedia.org/wiki/May_24" title="May 24">May 24</a> – <a href="Amy_Johnson" webstripperwas="http://en.wikipedia.org/wiki/Amy_Johnson" title="Amy Johnson">Amy Johnson</a> lands in <a href="Darwin,_Northern_Territory" webstripperwas="http://en.wikipedia.org/wiki/Darwin,_Northern_Territory" title="Darwin, Northern Territory">Darwin, Australia</a>, becoming the first woman to fly solo from <a href="England" webstripperwas="http://en.wikipedia.org/wiki/England" title="England">England</a> to <a href="Australia" webstripperwas="http://en.wikipedia.org/wiki/Australia" title="Australia">Australia</a> (she left on <a href="May_5" webstripperwas="http://en.wikipedia.org/wiki/May_5" title="May 5">May 5</a> for the 11,000 mile flight).</li>
<li><a href="May_30" webstripperwas="http://en.wikipedia.org/wiki/May_30" title="May 30">May 30</a>
<ul>
<li><a href="Sergei_Eisenstein" webstripperwas="http://en.wikipedia.org/wiki/Sergei_Eisenstein" title="Sergei Eisenstein">Sergei Eisenstein</a> arrives in <a href="Hollywood" webstripperwas="http://en.wikipedia.org/wiki/Hollywood" title="Hollywood">Hollywood</a> to work for <a href="Paramount_Pictures" webstripperwas="http://en.wikipedia.org/wiki/Paramount_Pictures" title="Paramount Pictures">Paramount Pictures</a>; they part ways by October.</li>
<li><a href="Canadians" webstripperwas="http://en.wikipedia.org/wiki/Canadians" title="Canadians">Canadian</a> adventurer <a href="William_$22Red$22_Hill,_Sr." webstripperwas="http://en.wikipedia.org/wiki/William_%22Red%22_Hill,_Sr." title="William "Red" Hill, Sr.">William "Red" Hill, Sr.</a>, makes a five-hour journey down the <a href="Niagara_Gorge" webstripperwas="http://en.wikipedia.org/wiki/Niagara_Gorge" title="Niagara Gorge">Niagara Gorge</a> rapids.</li>
</ul>
</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=7" title="Edit section: June">edit</a>]</span> <span class="mw-headline" id="June">June</span></h3>
<ul>
<li><a href="June_9" webstripperwas="http://en.wikipedia.org/wiki/June_9" title="June 9">June 9</a> – <i><a href="Chicago_Tribune" webstripperwas="http://en.wikipedia.org/wiki/Chicago_Tribune" title="Chicago Tribune">Chicago Tribune</a></i> journalist <a href="Jake_Lingle" webstripperwas="http://en.wikipedia.org/wiki/Jake_Lingle" title="Jake Lingle">Jake Lingle</a> is shot in <a href="Chicago" webstripperwas="http://en.wikipedia.org/wiki/Chicago" title="Chicago">Chicago</a>, <a href="Illinois" webstripperwas="http://en.wikipedia.org/wiki/Illinois" title="Illinois">Illinois</a>. Newspapers promise $55,000 reward for information. Lingle is later found to have had contacts with <a href="Organized_crime" webstripperwas="http://en.wikipedia.org/wiki/Organized_crime" title="Organized crime">organized crime</a>.</li>
<li><a href="June_14" webstripperwas="http://en.wikipedia.org/wiki/June_14" title="June 14">June 14</a> – <a href="Bureau_of_Narcotics" webstripperwas="http://en.wikipedia.org/wiki/Bureau_of_Narcotics" title="Bureau of Narcotics" class="mw-redirect">Bureau of Narcotics</a> established under the <a href="United_States_Department_of_the_Treasury" webstripperwas="http://en.wikipedia.org/wiki/United_States_Department_of_the_Treasury" title="United States Department of the Treasury">United States Department of the Treasury</a>, replacing the Narcotics Division of the Prohibition Unit.</li>
<li><a href="June_17" webstripperwas="http://en.wikipedia.org/wiki/June_17" title="June 17">June 17</a> – <a href="President_of_the_United_States.html" webstripperwas="/wiki/President_of_the_United_States" title="President of the United States">President of the United States</a> <a href="Herbert_Hoover" webstripperwas="http://en.wikipedia.org/wiki/Herbert_Hoover" title="Herbert Hoover">Herbert Hoover</a> signs the <a href="Smoot$E2$80$93Hawley_Tariff_Act" webstripperwas="http://en.wikipedia.org/wiki/Smoot%E2%80%93Hawley_Tariff_Act" title="Smoot–Hawley Tariff Act">Smoot–Hawley Tariff Act</a> into law.</li>
<li><a href="June_21" webstripperwas="http://en.wikipedia.org/wiki/June_21" title="June 21">June 21</a> – One-year <a href="Conscription" webstripperwas="http://en.wikipedia.org/wiki/Conscription" title="Conscription">conscription</a> comes into force in <a href="France" webstripperwas="http://en.wikipedia.org/wiki/France" title="France">France</a>.</li>
<li><a href="June_30" webstripperwas="http://en.wikipedia.org/wiki/June_30" title="June 30">June 30</a> – First Soccer <a href="1930_FIFA_World_Cup" webstripperwas="http://en.wikipedia.org/wiki/1930_FIFA_World_Cup" title="1930 FIFA World Cup">World Cup</a> is held in Uruguay.</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=8" title="Edit section: July">edit</a>]</span> <span class="mw-headline" id="July">July</span></h3>
<ul>
<li><a href="July_4" webstripperwas="http://en.wikipedia.org/wiki/July_4" title="July 4">July 4</a> – The dedication of <a href="George_Washington" webstripperwas="http://en.wikipedia.org/wiki/George_Washington" title="George Washington">George Washington</a>'s sculpted head is held at <a href="Mount_Rushmore" webstripperwas="http://en.wikipedia.org/wiki/Mount_Rushmore" title="Mount Rushmore">Mount Rushmore</a> in <a href="South_Dakota" webstripperwas="http://en.wikipedia.org/wiki/South_Dakota" title="South Dakota">South Dakota</a>.</li>
<li><a href="July_5" webstripperwas="http://en.wikipedia.org/wiki/July_5" title="July 5">July 5</a> – The <a href="Lambeth_Conferences" webstripperwas="http://en.wikipedia.org/wiki/Lambeth_Conferences" title="Lambeth Conferences">Seventh Lambeth Conference</a> of Anglican bishops opens. This conference approves the use of <a href="Birth_control" webstripperwas="http://en.wikipedia.org/wiki/Birth_control" title="Birth control">birth control</a> in limited circumstances, a move away from the <a href="Christian_views_on_contraception" webstripperwas="http://en.wikipedia.org/wiki/Christian_views_on_contraception" title="Christian views on contraception">Christian views on contraception</a> expressed by the Sixth Conference a decade earlier.</li>
<li><a href="July_7" webstripperwas="http://en.wikipedia.org/wiki/July_7" title="July 7">July 7</a>
<ul>
<li>The <a href="Lapua_Movement" webstripperwas="http://en.wikipedia.org/wiki/Lapua_Movement" title="Lapua Movement">Lapua Movement</a> marches in <a href="Helsinki" webstripperwas="http://en.wikipedia.org/wiki/Helsinki" title="Helsinki">Helsinki</a>, <a href="Finland" webstripperwas="http://en.wikipedia.org/wiki/Finland" title="Finland">Finland</a>.</li>
<li>Building of the Boulder Dam (now known as <a href="Hoover_Dam" webstripperwas="http://en.wikipedia.org/wiki/Hoover_Dam" title="Hoover Dam">Hoover Dam</a>) is started on the <a href="Colorado_River" webstripperwas="http://en.wikipedia.org/wiki/Colorado_River" title="Colorado River">Colorado River</a>.</li>
</ul>
</li>
<li><a href="July_13" webstripperwas="http://en.wikipedia.org/wiki/July_13" title="July 13">July 13</a> – The first <a href="1930_FIFA_World_Cup" webstripperwas="http://en.wikipedia.org/wiki/1930_FIFA_World_Cup" title="1930 FIFA World Cup">FIFA World Cup</a> starts: <a href="Lucien_Laurent" webstripperwas="http://en.wikipedia.org/wiki/Lucien_Laurent" title="Lucien Laurent">Lucien Laurent</a> scores the first goal, for <a href="France_national_football_team" webstripperwas="http://en.wikipedia.org/wiki/France_national_football_team" title="France national football team">France</a> against <a href="Mexico_national_football_team" webstripperwas="http://en.wikipedia.org/wiki/Mexico_national_football_team" title="Mexico national football team">Mexico</a>.</li>
<li><a href="July_19" webstripperwas="http://en.wikipedia.org/wiki/July_19" title="July 19">July 19</a> – <a href="Georges_Simenon" webstripperwas="http://en.wikipedia.org/wiki/Georges_Simenon" title="Georges Simenon">Georges Simenon</a>'s detective character Inspector <a href="Jules_Maigret" webstripperwas="http://en.wikipedia.org/wiki/Jules_Maigret" title="Jules Maigret">Jules Maigret</a> makes his first appearance in print under Simenon's own name when the novel <i>Pietr-le-Letton</i> (known in English as <i><a href="The_Strange_Case_of_Peter_the_Lett" webstripperwas="http://en.wikipedia.org/wiki/The_Strange_Case_of_Peter_the_Lett" title="The Strange Case of Peter the Lett">The Strange Case of Peter the Lett</a></i>) begins serialization in a French weekly magazine.<sup id="cite_ref-2" class="reference"><a href="#cite_note-2"><span>[</span>2<span>]</span></a></sup> Simenon will eventually write 75 novels (as well as 28 short stories) featuring the pipe-smoking Paris detective.</li>
<li><a href="July_21" webstripperwas="http://en.wikipedia.org/wiki/July_21" title="July 21">July 21</a> – <a href="United_States_Department_of_Veterans_Affairs" webstripperwas="http://en.wikipedia.org/wiki/United_States_Department_of_Veterans_Affairs" title="United States Department of Veterans Affairs">United States Department of Veterans Affairs</a> established.</li>
<li><a href="July_25" webstripperwas="http://en.wikipedia.org/wiki/July_25" title="July 25">July 25</a> – <a href="Laurence_Olivier" webstripperwas="http://en.wikipedia.org/wiki/Laurence_Olivier" title="Laurence Olivier">Laurence Olivier</a> marries Jill Esmond.</li>
<li><a href="July_26" webstripperwas="http://en.wikipedia.org/wiki/July_26" title="July 26">July 26</a> – <a href="Charles_Creighton" webstripperwas="http://en.wikipedia.org/wiki/Charles_Creighton" title="Charles Creighton">Charles Creighton</a> and James Hargis of Missouri begin their return journey to <a href="Los_Angeles" webstripperwas="http://en.wikipedia.org/wiki/Los_Angeles" title="Los Angeles">Los Angeles</a> using only a reverse gear; the 11,555 km trip lasts 42 days.</li>
<li><a href="July_28" webstripperwas="http://en.wikipedia.org/wiki/July_28" title="July 28">July 28</a> – <a href="R._B._Bennett" webstripperwas="http://en.wikipedia.org/wiki/R._B._Bennett" title="R. B. Bennett">R. B. Bennett</a> defeats <a href="William_Lyon_Mackenzie_King" webstripperwas="http://en.wikipedia.org/wiki/William_Lyon_Mackenzie_King" title="William Lyon Mackenzie King">William Lyon Mackenzie King</a> in federal elections and becomes the <a href="Prime_Minister_of_Canada" webstripperwas="http://en.wikipedia.org/wiki/Prime_Minister_of_Canada" title="Prime Minister of Canada">Prime Minister of Canada</a>.</li>
<li><a href="July_29" webstripperwas="http://en.wikipedia.org/wiki/July_29" title="July 29">July 29</a> – British <a href="Airship" webstripperwas="http://en.wikipedia.org/wiki/Airship" title="Airship">airship</a> <a href="R100" webstripperwas="http://en.wikipedia.org/wiki/R100" title="R100">R100</a> sets out for a successful 78-hour passage to Canada.</li>
<li><a href="July_30" webstripperwas="http://en.wikipedia.org/wiki/July_30" title="July 30">July 30</a>
<ul>
<li><a href="Uruguay_national_football_team" webstripperwas="http://en.wikipedia.org/wiki/Uruguay_national_football_team" title="Uruguay national football team">Uruguay</a> beats <a href="Argentina_national_football_team" webstripperwas="http://en.wikipedia.org/wiki/Argentina_national_football_team" title="Argentina national football team">Argentina</a> 4–2 to win the first <a href="Association_football" webstripperwas="http://en.wikipedia.org/wiki/Association_football" title="Association football">Association football</a> <a href="1930_FIFA_World_Cup" webstripperwas="http://en.wikipedia.org/wiki/1930_FIFA_World_Cup" title="1930 FIFA World Cup">FIFA World Cup</a> final.</li>
<li><a href="New_York" webstripperwas="http://en.wikipedia.org/wiki/New_York" title="New York">New York</a> station <a href="WNBC-TV" webstripperwas="http://en.wikipedia.org/wiki/WNBC-TV" title="WNBC-TV" class="mw-redirect">W2XBS</a> is put in charge of <a href="NBC" webstripperwas="http://en.wikipedia.org/wiki/NBC" title="NBC">NBC</a> <a href="Broadcast_engineering" webstripperwas="http://en.wikipedia.org/wiki/Broadcast_engineering" title="Broadcast engineering">broadcast engineers</a>.</li>
</ul>
</li>
<li><a href="July_31" webstripperwas="http://en.wikipedia.org/wiki/July_31" title="July 31">July 31</a> – The <a href="Radio_drama" webstripperwas="http://en.wikipedia.org/wiki/Radio_drama" title="Radio drama">radio drama</a> <i><a href="The_Shadow" webstripperwas="http://en.wikipedia.org/wiki/The_Shadow" title="The Shadow">The Shadow</a></i> airs for the first time in the United States.</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=9" title="Edit section: August">edit</a>]</span> <span class="mw-headline" id="August">August</span></h3>
<ul>
<li><a href="August_6" webstripperwas="http://en.wikipedia.org/wiki/August_6" title="August 6">August 6</a> – Judge <a href="Joseph_Force_Crater" webstripperwas="http://en.wikipedia.org/wiki/Joseph_Force_Crater" title="Joseph Force Crater">Joseph Force Crater</a> steps into a taxi in New York City and disappears.</li>
<li><a href="August_7" webstripperwas="http://en.wikipedia.org/wiki/August_7" title="August 7">August 7</a>
<ul>
<li><a href="R._B._Bennett" webstripperwas="http://en.wikipedia.org/wiki/R._B._Bennett" title="R. B. Bennett">R. B. Bennett</a> takes office as the eleventh <a href="Prime_Minister_of_Canada" webstripperwas="http://en.wikipedia.org/wiki/Prime_Minister_of_Canada" title="Prime Minister of Canada">Prime Minister of Canada</a>.</li>
<li><a href="Lynching_of_Thomas_Shipp_and_Abram_Smith" webstripperwas="http://en.wikipedia.org/wiki/Lynching_of_Thomas_Shipp_and_Abram_Smith" title="Lynching of Thomas Shipp and Abram Smith">Lynching of Thomas Shipp and Abram Smith</a> in <a href="Marion,_Indiana" webstripperwas="http://en.wikipedia.org/wiki/Marion,_Indiana" title="Marion, Indiana">Marion, Indiana</a>. They are hanged; <a href="James_Cameron_(activist)" webstripperwas="http://en.wikipedia.org/wiki/James_Cameron_(activist)" title="James Cameron (activist)">James Cameron</a> survives. This will be the last lynching of <a href="African_American" webstripperwas="http://en.wikipedia.org/wiki/African_American" title="African American">African Americans</a> in the <a href="Northern_United_States" webstripperwas="http://en.wikipedia.org/wiki/Northern_United_States" title="Northern United States">Northern United States</a>.</li>
</ul>
</li>
<li><a href="August_9" webstripperwas="http://en.wikipedia.org/wiki/August_9" title="August 9">August 9</a> – <a href="Betty_Boop" webstripperwas="http://en.wikipedia.org/wiki/Betty_Boop" title="Betty Boop">Betty Boop</a> premieres in the <a href="Animated_film" webstripperwas="http://en.wikipedia.org/wiki/Animated_film" title="Animated film" class="mw-redirect">animated film</a> <i><a href="Dizzy_Dishes" webstripperwas="http://en.wikipedia.org/wiki/Dizzy_Dishes" title="Dizzy Dishes">Dizzy Dishes</a></i>.</li>
<li><a href="August_12" webstripperwas="http://en.wikipedia.org/wiki/August_12" title="August 12">August 12</a> – <a href="Turkey" webstripperwas="http://en.wikipedia.org/wiki/Turkey" title="Turkey">Turkish</a> troops move into <a href="Iran" webstripperwas="http://en.wikipedia.org/wiki/Iran" title="Iran">Persia</a> to fight <a href="Kurds" webstripperwas="http://en.wikipedia.org/wiki/Kurds" title="Kurds" class="mw-redirect">Kurdish</a> insurgents.</li>
<li><a href="August_16" webstripperwas="http://en.wikipedia.org/wiki/August_16" title="August 16">August 16</a> – The <a href="1930_British_Empire_Games" webstripperwas="http://en.wikipedia.org/wiki/1930_British_Empire_Games" title="1930 British Empire Games">first British Empire Games</a> open in <a href="Hamilton,_Ontario" webstripperwas="http://en.wikipedia.org/wiki/Hamilton,_Ontario" title="Hamilton, Ontario">Hamilton, Ontario</a>, <a href="Canada" webstripperwas="http://en.wikipedia.org/wiki/Canada" title="Canada">Canada</a>.<sup id="cite_ref-Pocket_On_This_Day_3-0" class="reference"><a href="#cite_note-Pocket_On_This_Day-3"><span>[</span>3<span>]</span></a></sup></li>
<li><a href="August_21" webstripperwas="http://en.wikipedia.org/wiki/August_21" title="August 21">August 21</a> – <a href="Princess_Margaret,_Countess_of_Snowdon" webstripperwas="http://en.wikipedia.org/wiki/Princess_Margaret,_Countess_of_Snowdon" title="Princess Margaret, Countess of Snowdon">Princess Margaret Rose</a> is born at <a href="Glamis_Castle" webstripperwas="http://en.wikipedia.org/wiki/Glamis_Castle" title="Glamis Castle">Glamis Castle</a> in <a href="Scotland" webstripperwas="http://en.wikipedia.org/wiki/Scotland" title="Scotland">Scotland</a>, younger daughter of Prince Albert, Duke of York (second son of King <a href="George_V" webstripperwas="http://en.wikipedia.org/wiki/George_V" title="George V">George V</a> and Queen Mary, and later King <a href="George_VI" webstripperwas="http://en.wikipedia.org/wiki/George_VI" title="George VI">George VI</a>) and <a href="Queen_Elizabeth_The_Queen_Mother" webstripperwas="http://en.wikipedia.org/wiki/Queen_Elizabeth_The_Queen_Mother" title="Queen Elizabeth The Queen Mother">Elizabeth, Duchess of York</a>, and sister to <a href="Elizabeth_II" webstripperwas="http://en.wikipedia.org/wiki/Elizabeth_II" title="Elizabeth II">The Princess Elizabeth</a>.</li>
<li><a href="August_27" webstripperwas="http://en.wikipedia.org/wiki/August_27" title="August 27">August 27</a> – A <a href="Military_junta" webstripperwas="http://en.wikipedia.org/wiki/Military_junta" title="Military junta">military junta</a> takes over in <a href="Peru" webstripperwas="http://en.wikipedia.org/wiki/Peru" title="Peru">Peru</a>.</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=10" title="Edit section: September">edit</a>]</span> <span class="mw-headline" id="September">September</span></h3>
<ul>
<li><a href="September_6" webstripperwas="http://en.wikipedia.org/wiki/September_6" title="September 6">September 6</a> – <a href="Jos$C3$A9_F$C3$A9lix_Uriburu" webstripperwas="http://en.wikipedia.org/wiki/Jos%C3%A9_F%C3%A9lix_Uriburu" title="José Félix Uriburu">José Félix Uriburu</a> carries out a <a href="Military_coup" webstripperwas="http://en.wikipedia.org/wiki/Military_coup" title="Military coup" class="mw-redirect">military coup</a>, overthrowing <a href="Hip$C3$B3lito_Yrigoyen" webstripperwas="http://en.wikipedia.org/wiki/Hip%C3%B3lito_Yrigoyen" title="Hipólito Yrigoyen">Hipólito Yrigoyen</a>, <a href="List_of_Presidents_of_Argentina" webstripperwas="http://en.wikipedia.org/wiki/List_of_Presidents_of_Argentina" title="List of Presidents of Argentina" class="mw-redirect">President</a> of <a href="Argentina" webstripperwas="http://en.wikipedia.org/wiki/Argentina" title="Argentina">Argentina</a>.</li>
<li><a href="September_12" webstripperwas="http://en.wikipedia.org/wiki/September_12" title="September 12">September 12</a> – <a href="England_cricket_team" webstripperwas="http://en.wikipedia.org/wiki/England_cricket_team" title="England cricket team">England</a> <a href="Cricket" webstripperwas="http://en.wikipedia.org/wiki/Cricket" title="Cricket">cricketer</a> <a href="Wilfred_Rhodes" webstripperwas="http://en.wikipedia.org/wiki/Wilfred_Rhodes" title="Wilfred Rhodes">Wilfred Rhodes</a> ends his 1,110-game first-class career by taking 5 for 95 for H. D. G. Leveson Gower's XI against the <a href="Australia_national_cricket_team" webstripperwas="http://en.wikipedia.org/wiki/Australia_national_cricket_team" title="Australia national cricket team">Australians</a>.</li>
<li><a href="September_14" webstripperwas="http://en.wikipedia.org/wiki/September_14" title="September 14">September 14</a> – <a href="German_election,_1930" webstripperwas="http://en.wikipedia.org/wiki/German_election,_1930" title="German election, 1930" class="mw-redirect">German election, 1930</a>: <a href="Nazism" webstripperwas="http://en.wikipedia.org/wiki/Nazism" title="Nazism">National Socialists</a> win 107 seats in the German Parliament, the <a href="Reichstag_(Weimar_Republic)" webstripperwas="http://en.wikipedia.org/wiki/Reichstag_(Weimar_Republic)" title="Reichstag (Weimar Republic)">Reichstag</a> (18.3% of all the votes), making them the second largest party.</li>
<li><a href="September_20" webstripperwas="http://en.wikipedia.org/wiki/September_20" title="September 20">September 20</a> – The Eastern Catholic Rite <a href="Syro-Malankara_Catholic_Church" webstripperwas="http://en.wikipedia.org/wiki/Syro-Malankara_Catholic_Church" title="Syro-Malankara Catholic Church">Syro-Malankara Catholic Church</a> is formed.</li>
<li><a href="September_27" webstripperwas="http://en.wikipedia.org/wiki/September_27" title="September 27">September 27</a> – <a href="$C4$B0smet_$C4$B0n$C3$B6n$C3$BC" webstripperwas="http://en.wikipedia.org/wiki/%C4%B0smet_%C4%B0n%C3%B6n%C3%BC" title="İsmet İnönü">İsmet İnönü</a> forms a new government in <a href="Turkey" webstripperwas="http://en.wikipedia.org/wiki/Turkey" title="Turkey">Turkey</a> (6th government).</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=11" title="Edit section: October">edit</a>]</span> <span class="mw-headline" id="October">October</span></h3>
<ul>
<li>October – The <a href="Indochinese_Communist_Party" webstripperwas="http://en.wikipedia.org/wiki/Indochinese_Communist_Party" title="Indochinese Communist Party">Indochinese Communist Party</a> is formed.</li>
<li><a href="October_5" webstripperwas="http://en.wikipedia.org/wiki/October_5" title="October 5">October 5</a> – British <a href="Airship" webstripperwas="http://en.wikipedia.org/wiki/Airship" title="Airship">airship</a> <a href="R101" webstripperwas="http://en.wikipedia.org/wiki/R101" title="R101">R101</a> crashes in France en route to India on its maiden long-range flight resulting in the loss of 48 lives.</li>
<li><a href="October_20" webstripperwas="http://en.wikipedia.org/wiki/October_20" title="October 20">October 20</a> – A British White Paper demands restrictions on <a href="Jew" webstripperwas="http://en.wikipedia.org/wiki/Jew" title="Jew" class="mw-redirect">Jewish</a> immigration into <a href="Mandatory_Palestine" webstripperwas="http://en.wikipedia.org/wiki/Mandatory_Palestine" title="Mandatory Palestine">Mandatory Palestine</a>.<sup id="cite_ref-CBH_4-0" class="reference"><a href="#cite_note-CBH-4"><span>[</span>4<span>]</span></a></sup></li>
<li><a href="October_24" webstripperwas="http://en.wikipedia.org/wiki/October_24" title="October 24">October 24</a> – <a href="History_of_Brazil_(1930$E2$80$931945)" webstripperwas="http://en.wikipedia.org/wiki/History_of_Brazil_(1930%E2%80%931945)" title="History of Brazil (1930–1945)" class="mw-redirect">Revolution of 1930</a> in <a href="Brazil" webstripperwas="http://en.wikipedia.org/wiki/Brazil" title="Brazil">Brazil</a>: <a href="Get$C3$BAlio_Dornelles_Vargas" webstripperwas="http://en.wikipedia.org/wiki/Get%C3%BAlio_Dornelles_Vargas" title="Getúlio Dornelles Vargas" class="mw-redirect">Getúlio Dornelles Vargas</a> establishes a <a href="Dictatorship" webstripperwas="http://en.wikipedia.org/wiki/Dictatorship" title="Dictatorship">dictatorship</a>.</li>
<li><a href="October_27" webstripperwas="http://en.wikipedia.org/wiki/October_27" title="October 27">October 27</a> – Ratifications exchanged in London on the first <a href="London_Naval_Treaty.html" webstripperwas="/wiki/London_Naval_Treaty" title="London Naval Treaty">London Naval Treaty</a> signed in April modifying the <a href="Washington_Naval_Treaty" webstripperwas="http://en.wikipedia.org/wiki/Washington_Naval_Treaty" title="Washington Naval Treaty">Washington Naval Treaty</a> of 1925. Its arms limitation provisions go into effect immediately, hence putting more limits on the expensive naval arms race between its five signatories (the United Kingdom, the United States, the <a href="Japanese_Empire" webstripperwas="http://en.wikipedia.org/wiki/Japanese_Empire" title="Japanese Empire" class="mw-redirect">Japanese Empire</a>, France, and Italy.)</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=12" title="Edit section: November">edit</a>]</span> <span class="mw-headline" id="November">November</span></h3>
<ul>
<li><a href="November_2" webstripperwas="http://en.wikipedia.org/wiki/November_2" title="November 2">November 2</a> – <a href="Haile_Selassie" webstripperwas="http://en.wikipedia.org/wiki/Haile_Selassie" title="Haile Selassie" class="mw-redirect">Haile Selassie</a> is crowned emperor of <a href="Ethiopia" webstripperwas="http://en.wikipedia.org/wiki/Ethiopia" title="Ethiopia">Ethiopia</a>.</li>
<li><a href="November_3" webstripperwas="http://en.wikipedia.org/wiki/November_3" title="November 3">November 3</a> – <a href="Get$C3$BAlio_Vargas" webstripperwas="http://en.wikipedia.org/wiki/Get%C3%BAlio_Vargas" title="Getúlio Vargas">Getúlio Vargas</a> becomes president of <a href="Brazil" webstripperwas="http://en.wikipedia.org/wiki/Brazil" title="Brazil">Brazil</a>.</li>
<li><a href="November_25" webstripperwas="http://en.wikipedia.org/wiki/November_25" title="November 25">November 25</a>
<ul>
<li>An <a href="Earthquake" webstripperwas="http://en.wikipedia.org/wiki/Earthquake" title="Earthquake">earthquake</a> in the <a href="Izu_Peninsula" webstripperwas="http://en.wikipedia.org/wiki/Izu_Peninsula" title="Izu Peninsula">Izu Peninsula</a> of <a href="Japan" webstripperwas="http://en.wikipedia.org/wiki/Japan" title="Japan">Japan</a> kills 223 people and destroys 650 buildings.</li>
<li>Cecil George Paine, a <a href="Pathologist" webstripperwas="http://en.wikipedia.org/wiki/Pathologist" title="Pathologist" class="mw-redirect">pathologist</a> at the <a href="Sheffield_Royal_Infirmary" webstripperwas="http://en.wikipedia.org/wiki/Sheffield_Royal_Infirmary" title="Sheffield Royal Infirmary">Sheffield Royal Infirmary</a> in <a href="England" webstripperwas="http://en.wikipedia.org/wiki/England" title="England">England</a>, achieves the first recorded cure (of an eye infection) using <a href="Penicillin" webstripperwas="http://en.wikipedia.org/wiki/Penicillin" title="Penicillin">penicillin</a>.<sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span>[</span>5<span>]</span></a></sup></li>
</ul>
</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=13" title="Edit section: December">edit</a>]</span> <span class="mw-headline" id="December">December</span></h3>
<ul>
<li>December – All adult <a href="Turkey" webstripperwas="http://en.wikipedia.org/wiki/Turkey" title="Turkey">Turkish</a> women are given the right to vote in elections.</li>
<li><a href="December_2" webstripperwas="http://en.wikipedia.org/wiki/December_2" title="December 2">December 2</a> – <a href="Great_Depression" webstripperwas="http://en.wikipedia.org/wiki/Great_Depression" title="Great Depression">Great Depression</a>: President <a href="Herbert_Hoover" webstripperwas="http://en.wikipedia.org/wiki/Herbert_Hoover" title="Herbert Hoover">Herbert Hoover</a> goes before the <a href="United_States_Congress" webstripperwas="http://en.wikipedia.org/wiki/United_States_Congress" title="United States Congress">United States Congress</a> to ask for a $150 million public works program to help create jobs and to stimulate the American economy.</li>
<li><a href="December_7" webstripperwas="http://en.wikipedia.org/wiki/December_7" title="December 7">December 7</a> – The <a href="Television_station" webstripperwas="http://en.wikipedia.org/wiki/Television_station" title="Television station">television station</a> <a href="W1XAV" webstripperwas="http://en.wikipedia.org/wiki/W1XAV" title="W1XAV" class="mw-redirect">W1XAV</a> in <a href="Boston,_Massachusetts" webstripperwas="http://en.wikipedia.org/wiki/Boston,_Massachusetts" title="Boston, Massachusetts" class="mw-redirect">Boston, Massachusetts</a>, broadcasts video and audio from the radio orchestra program <i>The Fox Trappers</i>. This broadcast also includes the first <a href="Television_commercial" webstripperwas="http://en.wikipedia.org/wiki/Television_commercial" title="Television commercial" class="mw-redirect">television commercial</a> in the United States, an advertisement for the I. J. Fox Furriers company which sponsored the telecast.</li>
<li><a href="December_19" webstripperwas="http://en.wikipedia.org/wiki/December_19" title="December 19">December 19</a> – <a href="Mount_Merapi" webstripperwas="http://en.wikipedia.org/wiki/Mount_Merapi" title="Mount Merapi">Mount Merapi</a> volcano in central <a href="Java" webstripperwas="http://en.wikipedia.org/wiki/Java" title="Java">Java</a>, <a href="Indonesia" webstripperwas="http://en.wikipedia.org/wiki/Indonesia" title="Indonesia">Indonesia</a>, erupts, destroying numerous villages and killing thirteen hundred people.</li>
<li><a href="December_24" webstripperwas="http://en.wikipedia.org/wiki/December_24" title="December 24">December 24</a> – In <a href="London" webstripperwas="http://en.wikipedia.org/wiki/London" title="London">London</a>, inventor <a href="Harry_Grindell_Matthews" webstripperwas="http://en.wikipedia.org/wiki/Harry_Grindell_Matthews" title="Harry Grindell Matthews">Harry Grindell Matthews</a> demonstrates his device to project pictures on the clouds.</li>
<li><a href="December_28" webstripperwas="http://en.wikipedia.org/wiki/December_28" title="December 28">December 28</a> – <a href="Mahatma_Gandhi" webstripperwas="http://en.wikipedia.org/wiki/Mahatma_Gandhi" title="Mahatma Gandhi">Mahatma Gandhi</a> leaves India <i>en route</i> to Britain to join the <a href="Round_Table_Conferences_(India)" webstripperwas="http://en.wikipedia.org/wiki/Round_Table_Conferences_(India)" title="Round Table Conferences (India)">Second Round Table Conference</a> on the future of India.<sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="Wikipedia3ACitation_needed.html" webstripperwas="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (March 2013)">citation needed</span></a></i>]</sup></li>
<li><a href="December_29" webstripperwas="http://en.wikipedia.org/wiki/December_29" title="December 29">December 29</a> – Sir <a href="Muhammad_Iqbal" webstripperwas="http://en.wikipedia.org/wiki/Muhammad_Iqbal" title="Muhammad Iqbal">Muhammad Iqbal</a>'s presidential address in <a href="Allahabad" webstripperwas="http://en.wikipedia.org/wiki/Allahabad" title="Allahabad">Allahabad</a> introduces the <a href="Two_nation_theory" webstripperwas="http://en.wikipedia.org/wiki/Two_nation_theory" title="Two nation theory">two nation theory</a>, outlining a vision for the creation of <a href="Pakistan" webstripperwas="http://en.wikipedia.org/wiki/Pakistan" title="Pakistan">Pakistan</a>.</li>
<li><a href="December_31" webstripperwas="http://en.wikipedia.org/wiki/December_31" title="December 31">December 31</a> – The <a href="Papal_encyclical" webstripperwas="http://en.wikipedia.org/wiki/Papal_encyclical" title="Papal encyclical" class="mw-redirect">Papal encyclical</a> <i><a href="Casti_Connubii" webstripperwas="http://en.wikipedia.org/wiki/Casti_Connubii" title="Casti Connubii">Casti Connubii</a></i> issued by <a href="Pope_Pius_XI" webstripperwas="http://en.wikipedia.org/wiki/Pope_Pius_XI" title="Pope Pius XI">Pope Pius XI</a> stresses the sanctity of <a href="Marriage" webstripperwas="http://en.wikipedia.org/wiki/Marriage" title="Marriage">marriage</a>, prohibits <a href="Catholic_Church" webstripperwas="http://en.wikipedia.org/wiki/Catholic_Church" title="Catholic Church">Roman Catholics</a> from using any form of artificial <a href="Birth_control" webstripperwas="http://en.wikipedia.org/wiki/Birth_control" title="Birth control">birth control</a>, and reaffirms the Catholic prohibition on <a href="Abortion" webstripperwas="http://en.wikipedia.org/wiki/Abortion" title="Abortion">abortion</a>.</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=14" title="Edit section: Date unknown">edit</a>]</span> <span class="mw-headline" id="Date_unknown">Date unknown</span></h3>
<ul>
<li>A "Jake paralysis" outbreak occurs in the United States resulting from adulterated <a href="Jamaica_ginger" webstripperwas="http://en.wikipedia.org/wiki/Jamaica_ginger" title="Jamaica ginger">Jamaica ginger</a> sold as an alcohol substitute during <a href="Prohibition_in_the_United_States" webstripperwas="http://en.wikipedia.org/wiki/Prohibition_in_the_United_States" title="Prohibition in the United States">Prohibition</a>.</li>
<li><a href="Bernhard_Schmidt" webstripperwas="http://en.wikipedia.org/wiki/Bernhard_Schmidt" title="Bernhard Schmidt">Bernhard Schmidt</a> invents the <a href="Schmidt_camera" webstripperwas="http://en.wikipedia.org/wiki/Schmidt_camera" title="Schmidt camera">Schmidt camera</a>.<sup id="cite_ref-6" class="reference"><a href="#cite_note-6"><span>[</span>6<span>]</span></a></sup></li>
<li>The <a href="Chocolate_chip_cookie" webstripperwas="http://en.wikipedia.org/wiki/Chocolate_chip_cookie" title="Chocolate chip cookie">chocolate chip cookie</a> is invented by <a href="Ruth_Wakefield" webstripperwas="http://en.wikipedia.org/wiki/Ruth_Wakefield" title="Ruth Wakefield" class="mw-redirect">Ruth Wakefield</a> of the <a href="Toll_House_Inn" webstripperwas="http://en.wikipedia.org/wiki/Toll_House_Inn" title="Toll House Inn">Toll House Inn</a> in <a href="Whitman,_Massachusetts" webstripperwas="http://en.wikipedia.org/wiki/Whitman,_Massachusetts" title="Whitman, Massachusetts">Whitman, Massachusetts</a>.</li>
<li>A huge <a href="Hurricane" webstripperwas="http://en.wikipedia.org/wiki/Hurricane" title="Hurricane" class="mw-redirect">hurricane</a> on the <a href="Caribbean_Sea" webstripperwas="http://en.wikipedia.org/wiki/Caribbean_Sea" title="Caribbean Sea">Caribbean Sea</a> demolishes most of the city of <a href="Santo_Domingo" webstripperwas="http://en.wikipedia.org/wiki/Santo_Domingo" title="Santo Domingo">Santo Domingo</a> in the <a href="Dominican_Republic" webstripperwas="http://en.wikipedia.org/wiki/Dominican_Republic" title="Dominican Republic">Dominican Republic</a>.</li>
<li>The experimental <a href="Television_station" webstripperwas="http://en.wikipedia.org/wiki/Television_station" title="Television station">television station</a>, W9XAP, in <a href="Chicago,_Illinois" webstripperwas="http://en.wikipedia.org/wiki/Chicago,_Illinois" title="Chicago, Illinois" class="mw-redirect">Chicago, Illinois</a>, broadcasts the election for the <a href="United_States_Senate" webstripperwas="http://en.wikipedia.org/wiki/United_States_Senate" title="United States Senate">United States Senate</a>, the first time that a senatorial race, with continual tallies of the votes, is televised.</li>
<li><a href="Greater_Sudbury" webstripperwas="http://en.wikipedia.org/wiki/Greater_Sudbury" title="Greater Sudbury">Greater Sudbury</a> is incorporated as a city in northern <a href="Ontario" webstripperwas="http://en.wikipedia.org/wiki/Ontario" title="Ontario">Ontario</a>.</li>
<li>1930–<a href="1931" webstripperwas="http://en.wikipedia.org/wiki/1931" title="1931">1931</a> – <a href="Crazy_Horse" webstripperwas="http://en.wikipedia.org/wiki/Crazy_Horse" title="Crazy Horse">Crazy Horse</a>'s lifelong friend, "<a href="He_Dog" webstripperwas="http://en.wikipedia.org/wiki/He_Dog" title="He Dog">He Dog</a>" of the <a href="Oglala_Lakota" webstripperwas="http://en.wikipedia.org/wiki/Oglala_Lakota" title="Oglala Lakota">Oglala Lakota</a>, is interviewed by journalist Eleanor Hinman and writer <a href="Mari_Sandoz" webstripperwas="http://en.wikipedia.org/wiki/Mari_Sandoz" title="Mari Sandoz">Mari Sandoz</a>.</li>
</ul>
<h2><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=15" title="Edit section: Births">edit</a>]</span> <span class="mw-headline" id="Births">Births</span></h2>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=16" title="Edit section: January">edit</a>]</span> <span class="mw-headline" id="January_2">January</span></h3>
<ul>
<li><a href="January_1" webstripperwas="http://en.wikipedia.org/wiki/January_1" title="January 1">January 1</a> – <a href="Gaafar_Nimeiry" webstripperwas="http://en.wikipedia.org/wiki/Gaafar_Nimeiry" title="Gaafar Nimeiry">Gaafar Nimeiry</a>, President of <a href="Sudan" webstripperwas="http://en.wikipedia.org/wiki/Sudan" title="Sudan">Sudan</a> (d. <a href="2009" webstripperwas="http://en.wikipedia.org/wiki/2009" title="2009">2009</a>)</li>
<li><a href="January_2" webstripperwas="http://en.wikipedia.org/wiki/January_2" title="January 2">January 2</a>
<ul>
<li><a href="Julius_LaRosa" webstripperwas="http://en.wikipedia.org/wiki/Julius_LaRosa" title="Julius LaRosa" class="mw-redirect">Julius LaRosa</a>, American singer</li>
<li><a href="Robert_Loggia" webstripperwas="http://en.wikipedia.org/wiki/Robert_Loggia" title="Robert Loggia">Robert Loggia</a>, American actor</li>
</ul>
</li>
<li><a href="January_3" webstripperwas="http://en.wikipedia.org/wiki/January_3" title="January 3">January 3</a> – <a href="Barbara_Stuart" webstripperwas="http://en.wikipedia.org/wiki/Barbara_Stuart" title="Barbara Stuart">Barbara Stuart</a>, American actress (d. <a href="2011" webstripperwas="http://en.wikipedia.org/wiki/2011" title="2011">2011</a>)</li>
<li><a href="January_4" webstripperwas="http://en.wikipedia.org/wiki/January_4" title="January 4">January 4</a> – <a href="Sorrell_Booke" webstripperwas="http://en.wikipedia.org/wiki/Sorrell_Booke" title="Sorrell Booke">Sorrell Booke</a>, American actor (d. <a href="1994.html" webstripperwas="/wiki/1994" title="1994">1994</a>)</li>
<li><a href="January_5" webstripperwas="http://en.wikipedia.org/wiki/January_5" title="January 5">January 5</a> – <a href="Jes$C3$BAs_Rosas_Marcano" webstripperwas="http://en.wikipedia.org/wiki/Jes%C3%BAs_Rosas_Marcano" title="Jesús Rosas Marcano">Jesús Rosas Marcano</a>, Venezuelan poet (d. <a href="2001" webstripperwas="http://en.wikipedia.org/wiki/2001" title="2001">2001</a>)</li>
<li><a href="January_6" webstripperwas="http://en.wikipedia.org/wiki/January_6" title="January 6">January 6</a>
<ul>
<li><a href="Charles_Kalani,_Jr." webstripperwas="http://en.wikipedia.org/wiki/Charles_Kalani,_Jr." title="Charles Kalani, Jr.">Charles Kalani, Jr.</a>, Asian-American actor (d. <a href="2000" webstripperwas="http://en.wikipedia.org/wiki/2000" title="2000">2000</a>)</li>
<li><a href="Vic_Tayback" webstripperwas="http://en.wikipedia.org/wiki/Vic_Tayback" title="Vic Tayback">Vic Tayback</a>, American actor (d. <a href="1990" webstripperwas="http://en.wikipedia.org/wiki/1990" title="1990">1990</a>)</li>
</ul>
</li>
<li><a href="January_10" webstripperwas="http://en.wikipedia.org/wiki/January_10" title="January 10">January 10</a> – <a href="Roy_E._Disney" webstripperwas="http://en.wikipedia.org/wiki/Roy_E._Disney" title="Roy E. Disney">Roy E. Disney</a>, American film and television executive (d. <a href="2009" webstripperwas="http://en.wikipedia.org/wiki/2009" title="2009">2009</a>)</li>
<li><a href="January_12" webstripperwas="http://en.wikipedia.org/wiki/January_12" title="January 12">January 12</a> – <a href="Jennifer_Johnston" webstripperwas="http://en.wikipedia.org/wiki/Jennifer_Johnston" title="Jennifer Johnston">Jennifer Johnston</a>, Irish writer</li>
<li><a href="January_19" webstripperwas="http://en.wikipedia.org/wiki/January_19" title="January 19">January 19</a> – <a href="Tippi_Hedren" webstripperwas="http://en.wikipedia.org/wiki/Tippi_Hedren" title="Tippi Hedren">Tippi Hedren</a>, American actress</li>
<li><a href="January_20" webstripperwas="http://en.wikipedia.org/wiki/January_20" title="January 20">January 20</a> – <a href="Buzz_Aldrin" webstripperwas="http://en.wikipedia.org/wiki/Buzz_Aldrin" title="Buzz Aldrin">Buzz Aldrin</a>, American pilot and astronaut, <a href="Apollo_11" webstripperwas="http://en.wikipedia.org/wiki/Apollo_11" title="Apollo 11">Apollo 11</a> second person to set foot on the <a href="Moon" webstripperwas="http://en.wikipedia.org/wiki/Moon" title="Moon">Moon</a></li>
<li><a href="January_23" webstripperwas="http://en.wikipedia.org/wiki/January_23" title="January 23">January 23</a> – <a href="Derek_Walcott" webstripperwas="http://en.wikipedia.org/wiki/Derek_Walcott" title="Derek Walcott">Derek Walcott</a>, West Indian writer, <a href="Nobel_Prize_in_Literature" webstripperwas="http://en.wikipedia.org/wiki/Nobel_Prize_in_Literature" title="Nobel Prize in Literature">Nobel Prize</a> laureate</li>
<li><a href="January_24" webstripperwas="http://en.wikipedia.org/wiki/January_24" title="January 24">January 24</a> – <a href="Rita_Lakin" webstripperwas="http://en.wikipedia.org/wiki/Rita_Lakin" title="Rita Lakin">Rita Lakin</a>, American author</li>
<li><a href="January_26" webstripperwas="http://en.wikipedia.org/wiki/January_26" title="January 26">January 26</a> – <a href="John_Straffen" webstripperwas="http://en.wikipedia.org/wiki/John_Straffen" title="John Straffen">John Straffen</a>, British serial killer (d. <a href="2007" webstripperwas="http://en.wikipedia.org/wiki/2007" title="2007">2007</a>)</li>
<li><a href="January_27" webstripperwas="http://en.wikipedia.org/wiki/January_27" title="January 27">January 27</a> – <a href="Bobby_Bland" webstripperwas="http://en.wikipedia.org/wiki/Bobby_Bland" title="Bobby Bland">Bobby Bland</a>, American singer</li>
<li><a href="January_30" webstripperwas="http://en.wikipedia.org/wiki/January_30" title="January 30">January 30</a>
<ul>
<li><a href="Samuel_Byck" webstripperwas="http://en.wikipedia.org/wiki/Samuel_Byck" title="Samuel Byck">Samuel Byck</a>, American airplane hijacker and murderer (d. <a href="1974" webstripperwas="http://en.wikipedia.org/wiki/1974" title="1974">1974</a>)</li>
<li><a href="Gene_Hackman" webstripperwas="http://en.wikipedia.org/wiki/Gene_Hackman" title="Gene Hackman">Gene Hackman</a>, American actor</li>
</ul>
</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=17" title="Edit section: February">edit</a>]</span> <span class="mw-headline" id="February_2">February</span></h3>
<ul>
<li><a href="February_1" webstripperwas="http://en.wikipedia.org/wiki/February_1" title="February 1">February 1</a> – <a href="Hussain_Muhammad_Ershad" webstripperwas="http://en.wikipedia.org/wiki/Hussain_Muhammad_Ershad" title="Hussain Muhammad Ershad">Hussain Muhammad Ershad</a>, former <a href="President_of_Bangladesh" webstripperwas="http://en.wikipedia.org/wiki/President_of_Bangladesh" title="President of Bangladesh">President of Bangladesh</a></li>
<li><a href="February_6" webstripperwas="http://en.wikipedia.org/wiki/February_6" title="February 6">February 6</a> – <a href="Allan_King" webstripperwas="http://en.wikipedia.org/wiki/Allan_King" title="Allan King">Allan King</a>, Canadian director (d. <a href="2009" webstripperwas="http://en.wikipedia.org/wiki/2009" title="2009">2009</a>)</li>
<li><a href="February_8" webstripperwas="http://en.wikipedia.org/wiki/February_8" title="February 8">February 8</a>
<ul>
<li><a href="Jim_Dooley" webstripperwas="http://en.wikipedia.org/wiki/Jim_Dooley" title="Jim Dooley">Jim Dooley</a>, American football coach (d. <a href="2008" webstripperwas="http://en.wikipedia.org/wiki/2008" title="2008">2008</a>)</li>
<li><a href="Alejandro_Rey" webstripperwas="http://en.wikipedia.org/wiki/Alejandro_Rey" title="Alejandro Rey">Alejandro Rey</a>, Argentine-American actor (d. <a href="1987" webstripperwas="http://en.wikipedia.org/wiki/1987" title="1987">1987</a>)</li>
</ul>
</li>
<li><a href="February_10" webstripperwas="http://en.wikipedia.org/wiki/February_10" title="February 10">February 10</a> – <a href="Robert_Wagner" webstripperwas="http://en.wikipedia.org/wiki/Robert_Wagner" title="Robert Wagner">Robert Wagner</a>, American actor</li>
<li><a href="February_12" webstripperwas="http://en.wikipedia.org/wiki/February_12" title="February 12">February 12</a> – <a href="Arlen_Specter" webstripperwas="http://en.wikipedia.org/wiki/Arlen_Specter" title="Arlen Specter">Arlen Specter</a>, American politician (d. <a href="2012" webstripperwas="http://en.wikipedia.org/wiki/2012" title="2012">2012</a>)</li>
<li><a href="February_15" webstripperwas="http://en.wikipedia.org/wiki/February_15" title="February 15">February 15</a> – <a href="Sarah_Jane_Moore" webstripperwas="http://en.wikipedia.org/wiki/Sarah_Jane_Moore" title="Sarah Jane Moore" class="mw-redirect">Sarah Jane Moore</a>, American convicted of attempted murder of the President</li>
<li><a href="February_16" webstripperwas="http://en.wikipedia.org/wiki/February_16" title="February 16">February 16</a>
<ul>
<li><a href="Peter_Adamson" webstripperwas="http://en.wikipedia.org/wiki/Peter_Adamson" title="Peter Adamson">Peter Adamson</a>, British actor (d. <a href="2002" webstripperwas="http://en.wikipedia.org/wiki/2002" title="2002">2002</a>)</li>
<li><a href="Noah_Weinberg" webstripperwas="http://en.wikipedia.org/wiki/Noah_Weinberg" title="Noah Weinberg">Noah Weinberg</a>, American-born Israeli rabbi, founder of Aish HaTorah (d. <a href="2009" webstripperwas="http://en.wikipedia.org/wiki/2009" title="2009">2009</a>)</li>
</ul>
</li>
<li><a href="February_19" webstripperwas="http://en.wikipedia.org/wiki/February_19" title="February 19">February 19</a> – <a href="John_Frankenheimer" webstripperwas="http://en.wikipedia.org/wiki/John_Frankenheimer" title="John Frankenheimer">John Frankenheimer</a>, American film director (d. <a href="2002" webstripperwas="http://en.wikipedia.org/wiki/2002" title="2002">2002</a>)</li>
<li><a href="February_20" webstripperwas="http://en.wikipedia.org/wiki/February_20" title="February 20">February 20</a> – <a href="Ken_Jones_(actor)" webstripperwas="http://en.wikipedia.org/wiki/Ken_Jones_(actor)" title="Ken Jones (actor)">Ken Jones</a>, British actor</li>
<li><a href="February_21" webstripperwas="http://en.wikipedia.org/wiki/February_21" title="February 21">February 21</a> – Dr. Dame <a href="Joan_Metge" webstripperwas="http://en.wikipedia.org/wiki/Joan_Metge" title="Joan Metge">Joan Metge</a>, New Zealand social anthropologist, educator, lecturer and writer</li>
<li><a href="February_22" webstripperwas="http://en.wikipedia.org/wiki/February_22" title="February 22">February 22</a>
<ul>
<li><a href="James_McGarrell" webstripperwas="http://en.wikipedia.org/wiki/James_McGarrell" title="James McGarrell">James McGarrell</a>, American painter</li>
<li><a href="Marni_Nixon" webstripperwas="http://en.wikipedia.org/wiki/Marni_Nixon" title="Marni Nixon">Marni Nixon</a>, American vocalist and singer</li>
</ul>
</li>
<li><a href="February_24" webstripperwas="http://en.wikipedia.org/wiki/February_24" title="February 24">February 24</a>
<ul>
<li><a href="Joan_Diener" webstripperwas="http://en.wikipedia.org/wiki/Joan_Diener" title="Joan Diener">Joan Diener</a>, American musical theatre actress and singer (d. <a href="2006" webstripperwas="http://en.wikipedia.org/wiki/2006" title="2006">2006</a>)</li>
<li><a href="Barbara_Lawrence" webstripperwas="http://en.wikipedia.org/wiki/Barbara_Lawrence" title="Barbara Lawrence">Barbara Lawrence</a>, American actress and model</li>
<li><a href="Anita_Steckel" webstripperwas="http://en.wikipedia.org/wiki/Anita_Steckel" title="Anita Steckel">Anita Steckel</a>, American feminist artist (d. <a href="2012" webstripperwas="http://en.wikipedia.org/wiki/2012" title="2012">2012</a>)</li>
</ul>
</li>
<li><a href="February_27" webstripperwas="http://en.wikipedia.org/wiki/February_27" title="February 27">February 27</a>
<ul>
<li><a href="Peter_Stone" webstripperwas="http://en.wikipedia.org/wiki/Peter_Stone" title="Peter Stone">Peter Stone</a>, American writer (d. <a href="2003" webstripperwas="http://en.wikipedia.org/wiki/2003" title="2003">2003</a>)</li>
<li><a href="Joanne_Woodward" webstripperwas="http://en.wikipedia.org/wiki/Joanne_Woodward" title="Joanne Woodward">Joanne Woodward</a>, American actress</li>
</ul>
</li>
<li><a href="February_28" webstripperwas="http://en.wikipedia.org/wiki/February_28" title="February 28">February 28</a> – <a href="Leon_Neil_Cooper" webstripperwas="http://en.wikipedia.org/wiki/Leon_Neil_Cooper" title="Leon Neil Cooper" class="mw-redirect">Leon Neil Cooper</a>, American physicist, <a href="Nobel_Prize_in_Physics" webstripperwas="http://en.wikipedia.org/wiki/Nobel_Prize_in_Physics" title="Nobel Prize in Physics">Nobel Prize</a> laureate</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=18" title="Edit section: March">edit</a>]</span> <span class="mw-headline" id="March_2">March</span></h3>
<ul>
<li><a href="March_2" webstripperwas="http://en.wikipedia.org/wiki/March_2" title="March 2">March 2</a> – <a href="Tom_Wolfe" webstripperwas="http://en.wikipedia.org/wiki/Tom_Wolfe" title="Tom Wolfe">Tom Wolfe</a>, American author and novelist</li>
<li><a href="March_3" webstripperwas="http://en.wikipedia.org/wiki/March_3" title="March 3">March 3</a>
<ul>
<li><a href="Heiner_Geissler" webstripperwas="http://en.wikipedia.org/wiki/Heiner_Geissler" title="Heiner Geissler" class="mw-redirect">Heiner Geissler</a>, German politician</li>
<li><a href="Ion_Iliescu" webstripperwas="http://en.wikipedia.org/wiki/Ion_Iliescu" title="Ion Iliescu">Ion Iliescu</a>, former <a href="President_of_Romania" webstripperwas="http://en.wikipedia.org/wiki/President_of_Romania" title="President of Romania">President of Romania</a></li>
<li><a href="K._S._Rajah" webstripperwas="http://en.wikipedia.org/wiki/K._S._Rajah" title="K. S. Rajah">K. S. Rajah</a>, Senior Counsel and former Judicial Commissioner of the Supreme Court of Singapore (d. <a href="2010" webstripperwas="http://en.wikipedia.org/wiki/2010" title="2010">2010</a>)</li>
</ul>
</li>
<li><a href="March_6" webstripperwas="http://en.wikipedia.org/wiki/March_6" title="March 6">March 6</a>
<ul>
<li><a href="Allison_Hayes" webstripperwas="http://en.wikipedia.org/wiki/Allison_Hayes" title="Allison Hayes">Allison Hayes</a>, American actress (d. <a href="1977.html" webstripperwas="/wiki/1977" title="1977">1977</a>)</li>
<li><a href="Lorin_Maazel" webstripperwas="http://en.wikipedia.org/wiki/Lorin_Maazel" title="Lorin Maazel">Lorin Maazel</a>, French-born conductor</li>
</ul>
</li>
<li><a href="March_7" webstripperwas="http://en.wikipedia.org/wiki/March_7" title="March 7">March 7</a> – <a href="Antony_Armstrong-Jones,_1st_Earl_of_Snowdon" webstripperwas="http://en.wikipedia.org/wiki/Antony_Armstrong-Jones,_1st_Earl_of_Snowdon" title="Antony Armstrong-Jones, 1st Earl of Snowdon">Antony Armstrong-Jones, 1st Earl of Snowdon</a></li>
<li><a href="March_8" webstripperwas="http://en.wikipedia.org/wiki/March_8" title="March 8">March 8</a> – <a href="Hector_Lombana" webstripperwas="http://en.wikipedia.org/wiki/Hector_Lombana" title="Hector Lombana">Hector Lombana</a>, Colombian sculptor, painter and architect</li>
<li><a href="March_10" webstripperwas="http://en.wikipedia.org/wiki/March_10" title="March 10">March 10</a> – <a href="Claude_Bolling" webstripperwas="http://en.wikipedia.org/wiki/Claude_Bolling" title="Claude Bolling">Claude Bolling</a>, French jazz pianist and composer</li>
<li><a href="March_13" webstripperwas="http://en.wikipedia.org/wiki/March_13" title="March 13">March 13</a> – <a href="Liz_Anderson" webstripperwas="http://en.wikipedia.org/wiki/Liz_Anderson" title="Liz Anderson">Liz Anderson</a>, American country music singer-songwriter</li>
<li><a href="March_15" webstripperwas="http://en.wikipedia.org/wiki/March_15" title="March 15">March 15</a> – <a href="Zhores_Ivanovich_Alferov" webstripperwas="http://en.wikipedia.org/wiki/Zhores_Ivanovich_Alferov" title="Zhores Ivanovich Alferov" class="mw-redirect">Zhores Ivanovich Alferov</a>, Russian physicist, <a href="Nobel_Prize_in_Physics" webstripperwas="http://en.wikipedia.org/wiki/Nobel_Prize_in_Physics" title="Nobel Prize in Physics">Nobel Prize</a> laureate</li>
<li><a href="March_17" webstripperwas="http://en.wikipedia.org/wiki/March_17" title="March 17">March 17</a> – <a href="James_Irwin" webstripperwas="http://en.wikipedia.org/wiki/James_Irwin" title="James Irwin">James Irwin</a>, American astronaut (d. <a href="1991" webstripperwas="http://en.wikipedia.org/wiki/1991" title="1991">1991</a>)</li>
<li><a href="March_19" webstripperwas="http://en.wikipedia.org/wiki/March_19" title="March 19">March 19</a> – <a href="Ornette_Coleman" webstripperwas="http://en.wikipedia.org/wiki/Ornette_Coleman" title="Ornette Coleman">Ornette Coleman</a>, American musician</li>
<li><a href="March_20" webstripperwas="http://en.wikipedia.org/wiki/March_20" title="March 20">March 20</a> – <a href="Willie_Thrower" webstripperwas="http://en.wikipedia.org/wiki/Willie_Thrower" title="Willie Thrower">Willie Thrower</a>, American football player</li>
<li><a href="March_22" webstripperwas="http://en.wikipedia.org/wiki/March_22" title="March 22">March 22</a>
<ul>
<li><a href="Pat_Robertson" webstripperwas="http://en.wikipedia.org/wiki/Pat_Robertson" title="Pat Robertson">Pat Robertson</a>, American televangelist</li>
<li><a href="Stephen_Sondheim" webstripperwas="http://en.wikipedia.org/wiki/Stephen_Sondheim" title="Stephen Sondheim">Stephen Sondheim</a>, American composer and lyricist</li>
</ul>
</li>
<li><a href="March_24" webstripperwas="http://en.wikipedia.org/wiki/March_24" title="March 24">March 24</a>
<ul>
<li><a href="David_Dacko" webstripperwas="http://en.wikipedia.org/wiki/David_Dacko" title="David Dacko">David Dacko</a>, first <a href="President_of_the_Central_African_Republic" webstripperwas="http://en.wikipedia.org/wiki/President_of_the_Central_African_Republic" title="President of the Central African Republic" class="mw-redirect">President of the Central African Republic</a> (d. <a href="2003" webstripperwas="http://en.wikipedia.org/wiki/2003" title="2003">2003</a>)</li>
<li><a href="Steve_McQueen_(actor)" webstripperwas="http://en.wikipedia.org/wiki/Steve_McQueen_(actor)" title="Steve McQueen (actor)" class="mw-redirect">Steve McQueen</a>, American actor (d. <a href="1980" webstripperwas="http://en.wikipedia.org/wiki/1980" title="1980">1980</a>)</li>
</ul>
</li>
<li><a href="March_25" webstripperwas="http://en.wikipedia.org/wiki/March_25" title="March 25">March 25</a> – <a href="John_Keel" webstripperwas="http://en.wikipedia.org/wiki/John_Keel" title="John Keel">John Keel</a>, American author</li>
<li><a href="March_26" webstripperwas="http://en.wikipedia.org/wiki/March_26" title="March 26">March 26</a> – <a href="Sandra_Day_O$27Connor" webstripperwas="http://en.wikipedia.org/wiki/Sandra_Day_O%27Connor" title="Sandra Day O'Connor">Sandra Day O'Connor</a>, U.S. Supreme Court Justice (1981–2006)</li>
<li><a href="March_27" webstripperwas="http://en.wikipedia.org/wiki/March_27" title="March 27">March 27</a> – <a href="David_Janssen" webstripperwas="http://en.wikipedia.org/wiki/David_Janssen" title="David Janssen">David Janssen</a>, American actor (d. <a href="1980" webstripperwas="http://en.wikipedia.org/wiki/1980" title="1980">1980</a>)</li>
<li><a href="March_28" webstripperwas="http://en.wikipedia.org/wiki/March_28" title="March 28">March 28</a>
<ul>
<li><a href="Robert_Ashley" webstripperwas="http://en.wikipedia.org/wiki/Robert_Ashley" title="Robert Ashley">Robert Ashley</a>, American composer</li>
<li><a href="Jerome_Isaac_Friedman" webstripperwas="http://en.wikipedia.org/wiki/Jerome_Isaac_Friedman" title="Jerome Isaac Friedman">Jerome Isaac Friedman</a>, American physicist, <a href="Nobel_Prize_in_Physics" webstripperwas="http://en.wikipedia.org/wiki/Nobel_Prize_in_Physics" title="Nobel Prize in Physics">Nobel Prize</a> laureate</li>
</ul>
</li>
<li><a href="March_30" webstripperwas="http://en.wikipedia.org/wiki/March_30" title="March 30">March 30</a>
<ul>
<li><a href="John_Astin" webstripperwas="http://en.wikipedia.org/wiki/John_Astin" title="John Astin">John Astin</a>, American actor</li>
<li><a href="Rolf_Harris" webstripperwas="http://en.wikipedia.org/wiki/Rolf_Harris" title="Rolf Harris">Rolf Harris</a>, Australian-born entertainer</li>
</ul>
</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=19" title="Edit section: April">edit</a>]</span> <span class="mw-headline" id="April_2">April</span></h3>
<ul>
<li><a href="April_1" webstripperwas="http://en.wikipedia.org/wiki/April_1" title="April 1">April 1</a> – <a href="Grace_Lee_Whitney" webstripperwas="http://en.wikipedia.org/wiki/Grace_Lee_Whitney" title="Grace Lee Whitney">Grace Lee Whitney</a>, American actress</li>
<li><a href="April_3" webstripperwas="http://en.wikipedia.org/wiki/April_3" title="April 3">April 3</a>
<ul>
<li><a href="Lawton_Chiles" webstripperwas="http://en.wikipedia.org/wiki/Lawton_Chiles" title="Lawton Chiles">Lawton Chiles</a>, U.S. Senator and the Governor of Florida (d. <a href="1998.html" webstripperwas="/wiki/1998" title="1998">1998</a>)</li>
<li><a href="Helmut_Kohl" webstripperwas="http://en.wikipedia.org/wiki/Helmut_Kohl" title="Helmut Kohl">Helmut Kohl</a>, <a href="Chancellor_of_Germany_(Federal_Republic)" webstripperwas="http://en.wikipedia.org/wiki/Chancellor_of_Germany_(Federal_Republic)" title="Chancellor of Germany (Federal Republic)" class="mw-redirect">Chancellor of Germany</a></li>
</ul>
</li>
<li><a href="April_8" webstripperwas="http://en.wikipedia.org/wiki/April_8" title="April 8">April 8</a> – <a href="Carlos_Hugo_of_Bourbon-Parma,_Duke_of_Parma" webstripperwas="http://en.wikipedia.org/wiki/Carlos_Hugo_of_Bourbon-Parma,_Duke_of_Parma" title="Carlos Hugo of Bourbon-Parma, Duke of Parma" class="mw-redirect">Carlos Hugo of Bourbon-Parma, Duke of Parma</a> (d. <a href="2010" webstripperwas="http://en.wikipedia.org/wiki/2010" title="2010">2010</a>)</li>
<li><a href="April_10" webstripperwas="http://en.wikipedia.org/wiki/April_10" title="April 10">April 10</a> – <a href="Spede_Pasanen" webstripperwas="http://en.wikipedia.org/wiki/Spede_Pasanen" title="Spede Pasanen">Spede Pasanen</a>, Finnish television personality (d. <a href="2001" webstripperwas="http://en.wikipedia.org/wiki/2001" title="2001">2001</a>)</li>
<li><a href="April_11" webstripperwas="http://en.wikipedia.org/wiki/April_11" title="April 11">April 11</a> – <a href="Anton_LaVey" webstripperwas="http://en.wikipedia.org/wiki/Anton_LaVey" title="Anton LaVey">Anton LaVey</a>, American Satanist (d. <a href="1997" webstripperwas="http://en.wikipedia.org/wiki/1997" title="1997">1997</a>)</li>
<li><a href="April_12" webstripperwas="http://en.wikipedia.org/wiki/April_12" title="April 12">April 12</a> – <a href="Micha$C5$82_$C5$BByczkowski" webstripperwas="http://en.wikipedia.org/wiki/Micha%C5%82_%C5%BByczkowski" title="Michał Życzkowski">Michał Życzkowski</a>, Polish Professor of Engineering (d. <a href="2006" webstripperwas="http://en.wikipedia.org/wiki/2006" title="2006">2006</a>)</li>
<li><a href="April_15" webstripperwas="http://en.wikipedia.org/wiki/April_15" title="April 15">April 15</a> – <a href="Vigd$C3$ADs_Finnbogad$C3$B3ttir" webstripperwas="http://en.wikipedia.org/wiki/Vigd%C3%ADs_Finnbogad%C3%B3ttir" title="Vigdís Finnbogadóttir">Vigdís Finnbogadóttir</a>, <a href="President_of_Iceland" webstripperwas="http://en.wikipedia.org/wiki/President_of_Iceland" title="President of Iceland">President of Iceland</a></li>
<li><a href="April_16" webstripperwas="http://en.wikipedia.org/wiki/April_16" title="April 16">April 16</a>
<ul>
<li><a href="Carol_Bly" webstripperwas="http://en.wikipedia.org/wiki/Carol_Bly" title="Carol Bly">Carol Bly</a>, American author of short stories, essays, and nonfiction; teacher (d. <a href="2007" webstripperwas="http://en.wikipedia.org/wiki/2007" title="2007">2007</a>)</li>
<li><a href="Herbie_Mann" webstripperwas="http://en.wikipedia.org/wiki/Herbie_Mann" title="Herbie Mann">Herbie Mann</a>, American jazz flutist (d. <a href="2003" webstripperwas="http://en.wikipedia.org/wiki/2003" title="2003">2003</a>)</li>
</ul>
</li>
<li><a href="April_19" webstripperwas="http://en.wikipedia.org/wiki/April_19" title="April 19">April 19</a> – <a href="Dick_Sargent" webstripperwas="http://en.wikipedia.org/wiki/Dick_Sargent" title="Dick Sargent">Dick Sargent</a>, American actor and gay activist (d. <a href="1994.html" webstripperwas="/wiki/1994" title="1994">1994</a>)</li>
<li><a href="April_21.html" webstripperwas="/wiki/April_21" title="April 21">April 21</a> – <a href="Silvana_Mangano" webstripperwas="http://en.wikipedia.org/wiki/Silvana_Mangano" title="Silvana Mangano">Silvana Mangano</a>, Italian actress (d. <a href="1989" webstripperwas="http://en.wikipedia.org/wiki/1989" title="1989">1989</a>)</li>
<li><a href="April_24" webstripperwas="http://en.wikipedia.org/wiki/April_24" title="April 24">April 24</a> – <a href="Richard_Donner" webstripperwas="http://en.wikipedia.org/wiki/Richard_Donner" title="Richard Donner">Richard Donner</a>, American film director and producer</li>
<li><a href="April_25" webstripperwas="http://en.wikipedia.org/wiki/April_25" title="April 25">April 25</a> – <a href="Paul_Mazursky" webstripperwas="http://en.wikipedia.org/wiki/Paul_Mazursky" title="Paul Mazursky">Paul Mazursky</a>, American director and writer</li>
<li><a href="April_28" webstripperwas="http://en.wikipedia.org/wiki/April_28" title="April 28">April 28</a> – <a href="Carolyn_Jones" webstripperwas="http://en.wikipedia.org/wiki/Carolyn_Jones" title="Carolyn Jones">Carolyn Jones</a>, American actress (d. <a href="1983" webstripperwas="http://en.wikipedia.org/wiki/1983" title="1983">1983</a>)</li>
<li><a href="April_29" webstripperwas="http://en.wikipedia.org/wiki/April_29" title="April 29">April 29</a> – <a href="Jean_Rochefort" webstripperwas="http://en.wikipedia.org/wiki/Jean_Rochefort" title="Jean Rochefort">Jean Rochefort</a>, French actor</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=20" title="Edit section: May">edit</a>]</span> <span class="mw-headline" id="May_2">May</span></h3>
<ul>
<li><a href="May_3" webstripperwas="http://en.wikipedia.org/wiki/May_3" title="May 3">May 3</a> – <a href="Bob_Havens" webstripperwas="http://en.wikipedia.org/wiki/Bob_Havens" title="Bob Havens">Bob Havens</a>, American musician</li>
<li><a href="May_4" webstripperwas="http://en.wikipedia.org/wiki/May_4" title="May 4">May 4</a>
<ul>
<li><a href="Lois_De_Banzie" webstripperwas="http://en.wikipedia.org/wiki/Lois_De_Banzie" title="Lois De Banzie" class="mw-redirect">Lois De Banzie</a>, UK-born American actress</li>
<li><a href="Katherine_Jackson" webstripperwas="http://en.wikipedia.org/wiki/Katherine_Jackson" title="Katherine Jackson">Katherine Jackson</a>, <a href="Jackson_Five" webstripperwas="http://en.wikipedia.org/wiki/Jackson_Five" title="Jackson Five" class="mw-redirect">Jackson family</a> matriarch</li>
<li><a href="Roberta_Peters" webstripperwas="http://en.wikipedia.org/wiki/Roberta_Peters" title="Roberta Peters">Roberta Peters</a>, American soprano</li>
</ul>
</li>
<li><a href="May_8" webstripperwas="http://en.wikipedia.org/wiki/May_8" title="May 8">May 8</a> – <a href="Heather_Harper" webstripperwas="http://en.wikipedia.org/wiki/Heather_Harper" title="Heather Harper">Heather Harper</a>, Northern Irish soprano</li>
<li><a href="May_9" webstripperwas="http://en.wikipedia.org/wiki/May_9" title="May 9">May 9</a> – <a href="Joan_Sims" webstripperwas="http://en.wikipedia.org/wiki/Joan_Sims" title="Joan Sims">Joan Sims</a>, English actress (d. 2001)</li>
<li><a href="May_10" webstripperwas="http://en.wikipedia.org/wiki/May_10" title="May 10">May 10</a> – <a href="Pat_Summerall" webstripperwas="http://en.wikipedia.org/wiki/Pat_Summerall" title="Pat Summerall">Pat Summerall</a>, American football player and broadcaster</li>
<li><a href="May_11" webstripperwas="http://en.wikipedia.org/wiki/May_11" title="May 11">May 11</a> – <a href="Bud_Ekins" webstripperwas="http://en.wikipedia.org/wiki/Bud_Ekins" title="Bud Ekins">Bud Ekins</a>, American stuntman (d. 2007)</li>
<li><a href="May_15" webstripperwas="http://en.wikipedia.org/wiki/May_15" title="May 15">May 15</a> – <a href="Jasper_Johns" webstripperwas="http://en.wikipedia.org/wiki/Jasper_Johns" title="Jasper Johns">Jasper Johns</a>, American painter</li>
<li><a href="May_19" webstripperwas="http://en.wikipedia.org/wiki/May_19" title="May 19">May 19</a> – <a href="Lorraine_Hansberry" webstripperwas="http://en.wikipedia.org/wiki/Lorraine_Hansberry" title="Lorraine Hansberry">Lorraine Hansberry</a>, American playwright (d. 1965)</li>
<li><a href="May_21" webstripperwas="http://en.wikipedia.org/wiki/May_21" title="May 21">May 21</a> – <a href="Malcolm_Fraser" webstripperwas="http://en.wikipedia.org/wiki/Malcolm_Fraser" title="Malcolm Fraser">Malcolm Fraser</a>, 22nd <a href="Prime_Minister_of_Australia" webstripperwas="http://en.wikipedia.org/wiki/Prime_Minister_of_Australia" title="Prime Minister of Australia">Prime Minister of Australia</a></li>
<li><a href="May_22" webstripperwas="http://en.wikipedia.org/wiki/May_22" title="May 22">May 22</a>
<ul>
<li><a href="John_Barth" webstripperwas="http://en.wikipedia.org/wiki/John_Barth" title="John Barth">John Barth</a>, American writer</li>
<li><a href="Harvey_Milk" webstripperwas="http://en.wikipedia.org/wiki/Harvey_Milk" title="Harvey Milk">Harvey Milk</a>, American politician and civil rights activist of San Francisco (murdered <a href="1978" webstripperwas="http://en.wikipedia.org/wiki/1978" title="1978">1978</a>)</li>
<li><a href="Agust$C3$ADn_Tosco" webstripperwas="http://en.wikipedia.org/wiki/Agust%C3%ADn_Tosco" title="Agustín Tosco">Agustín Tosco</a>, Argentine union leader (d. 1975)</li>
</ul>
</li>
<li><a href="May_28" webstripperwas="http://en.wikipedia.org/wiki/May_28" title="May 28">May 28</a> – <a href="Frank_Drake" webstripperwas="http://en.wikipedia.org/wiki/Frank_Drake" title="Frank Drake">Frank Drake</a>, American radio astronomer and pioneer in <a href="SETI" webstripperwas="http://en.wikipedia.org/wiki/SETI" title="SETI" class="mw-redirect">SETI</a></li>
<li><a href="May_31" webstripperwas="http://en.wikipedia.org/wiki/May_31" title="May 31">May 31</a> – <a href="Clint_Eastwood" webstripperwas="http://en.wikipedia.org/wiki/Clint_Eastwood" title="Clint Eastwood">Clint Eastwood</a>, American actor, director, and producer</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=21" title="Edit section: June">edit</a>]</span> <span class="mw-headline" id="June_2">June</span></h3>
<ul>
<li><a href="June_1" webstripperwas="http://en.wikipedia.org/wiki/June_1" title="June 1">June 1</a> – <a href="Edward_Woodward" webstripperwas="http://en.wikipedia.org/wiki/Edward_Woodward" title="Edward Woodward">Edward Woodward</a>, British actor (d. <a href="2009" webstripperwas="http://en.wikipedia.org/wiki/2009" title="2009">2009</a>)</li>
<li><a href="June_2" webstripperwas="http://en.wikipedia.org/wiki/June_2" title="June 2">June 2</a> – <a href="Pete_Conrad" webstripperwas="http://en.wikipedia.org/wiki/Pete_Conrad" title="Pete Conrad">Charles Conrad</a>, American astronaut and moonwalker, commander of Apollo 12 (d. <a href="1999" webstripperwas="http://en.wikipedia.org/wiki/1999" title="1999">1999</a>)</li>
<li><a href="June_8" webstripperwas="http://en.wikipedia.org/wiki/June_8" title="June 8">June 8</a> – <a href="Robert_Aumann" webstripperwas="http://en.wikipedia.org/wiki/Robert_Aumann" title="Robert Aumann">Robert Aumann</a>, German-born mathematician, recipient of the <a href="Nobel_Prize_in_Economics" webstripperwas="http://en.wikipedia.org/wiki/Nobel_Prize_in_Economics" title="Nobel Prize in Economics" class="mw-redirect">Nobel Prize in Economics</a></li>
<li><a href="June_9" webstripperwas="http://en.wikipedia.org/wiki/June_9" title="June 9">June 9</a> – <a href="Monique_Serf" webstripperwas="http://en.wikipedia.org/wiki/Monique_Serf" title="Monique Serf" class="mw-redirect">Monique Serf</a>, French singer (d. <a href="1997" webstripperwas="http://en.wikipedia.org/wiki/1997" title="1997">1997</a>)</li>
<li><a href="June_11" webstripperwas="http://en.wikipedia.org/wiki/June_11" title="June 11">June 11</a> – <a href="Charles_B._Rangel" webstripperwas="http://en.wikipedia.org/wiki/Charles_B._Rangel" title="Charles B. Rangel">Charles B. Rangel</a>, African-American politician</li>
<li><a href="June_12" webstripperwas="http://en.wikipedia.org/wiki/June_12" title="June 12">June 12</a> – <a href="Jim_Nabors" webstripperwas="http://en.wikipedia.org/wiki/Jim_Nabors" title="Jim Nabors">Jim Nabors</a>, American actor, musician, and comedian</li>
<li><a href="June_17" webstripperwas="http://en.wikipedia.org/wiki/June_17" title="June 17">June 17</a> – <a href="Brian_Statham" webstripperwas="http://en.wikipedia.org/wiki/Brian_Statham" title="Brian Statham">Brian Statham</a>, English cricketer (d. <a href="2000" webstripperwas="http://en.wikipedia.org/wiki/2000" title="2000">2000</a>)</li>
<li><a href="June_19" webstripperwas="http://en.wikipedia.org/wiki/June_19" title="June 19">June 19</a> – <a href="Gena_Rowlands" webstripperwas="http://en.wikipedia.org/wiki/Gena_Rowlands" title="Gena Rowlands">Gena Rowlands</a>, American actress</li>
<li><a href="June_22" webstripperwas="http://en.wikipedia.org/wiki/June_22" title="June 22">June 22</a> – <a href="Yuri_Artyukhin" webstripperwas="http://en.wikipedia.org/wiki/Yuri_Artyukhin" title="Yuri Artyukhin" class="mw-redirect">Yuri Artyukhin</a>, Russian cosmonaut (d. <a href="1998.html" webstripperwas="/wiki/1998" title="1998">1998</a>)</li>
<li><a href="June_24" webstripperwas="http://en.wikipedia.org/wiki/June_24" title="June 24">June 24</a>
<ul>
<li><a href="Claude_Chabrol" webstripperwas="http://en.wikipedia.org/wiki/Claude_Chabrol" title="Claude Chabrol">Claude Chabrol</a>, French film director (d. <a href="2010" webstripperwas="http://en.wikipedia.org/wiki/2010" title="2010">2010</a>)</li>
<li><a href="William_B._Ziff,_Jr." webstripperwas="http://en.wikipedia.org/wiki/William_B._Ziff,_Jr." title="William B. Ziff, Jr." class="mw-redirect">William B. Ziff, Jr.</a>, American publishing executive (d. <a href="2006" webstripperwas="http://en.wikipedia.org/wiki/2006" title="2006">2006</a>)</li>
</ul>
</li>
<li><a href="June_25" webstripperwas="http://en.wikipedia.org/wiki/June_25" title="June 25">June 25</a> – <a href="L$C3$A1szl$C3$B3_Antal" webstripperwas="http://en.wikipedia.org/wiki/L%C3%A1szl%C3%B3_Antal" title="László Antal">László Antal</a>, Hungarian linguist (d. <a href="1993" webstripperwas="http://en.wikipedia.org/wiki/1993" title="1993">1993</a>)</li>
<li><a href="June_27" webstripperwas="http://en.wikipedia.org/wiki/June_27" title="June 27">June 27</a> – <a href="H._Ross_Perot" webstripperwas="http://en.wikipedia.org/wiki/H._Ross_Perot" title="H. Ross Perot" class="mw-redirect">H. Ross Perot</a>, American computer billionaire and politician</li>
<li><a href="June_28" webstripperwas="http://en.wikipedia.org/wiki/June_28" title="June 28">June 28</a> – <a href="Itamar_Franco" webstripperwas="http://en.wikipedia.org/wiki/Itamar_Franco" title="Itamar Franco">Itamar Franco</a>, <a href="President_of_Brazil" webstripperwas="http://en.wikipedia.org/wiki/President_of_Brazil" title="President of Brazil">President of Brazil</a> (d. 2011)</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=22" title="Edit section: July">edit</a>]</span> <span class="mw-headline" id="July_2">July</span></h3>
<ul>
<li><a href="July_2" webstripperwas="http://en.wikipedia.org/wiki/July_2" title="July 2">July 2</a>
<ul>
<li><a href="Carlos_Menem" webstripperwas="http://en.wikipedia.org/wiki/Carlos_Menem" title="Carlos Menem">Carlos Menem</a>, <a href="President_of_Argentina" webstripperwas="http://en.wikipedia.org/wiki/President_of_Argentina" title="President of Argentina">President of Argentina</a></li>
<li><a href="Magdalen_Redman" webstripperwas="http://en.wikipedia.org/wiki/Magdalen_Redman" title="Magdalen Redman">Magdalen Redman</a>, American professional baseball player</li>
<li><a href="Ahmad_Jamal" webstripperwas="http://en.wikipedia.org/wiki/Ahmad_Jamal" title="Ahmad Jamal">Ahmad Jamal</a>, American jazz pianist and composer</li>
</ul>
</li>
<li><a href="July_3" webstripperwas="http://en.wikipedia.org/wiki/July_3" title="July 3">July 3</a> – <a href="Carlos_Kleiber" webstripperwas="http://en.wikipedia.org/wiki/Carlos_Kleiber" title="Carlos Kleiber">Carlos Kleiber</a>, Austrian conductor (d. <a href="2004" webstripperwas="http://en.wikipedia.org/wiki/2004" title="2004">2004</a>)</li>
<li><a href="July_4" webstripperwas="http://en.wikipedia.org/wiki/July_4" title="July 4">July 4</a>
<ul>
<li><a href="Frunzik_Mkrtchyan" webstripperwas="http://en.wikipedia.org/wiki/Frunzik_Mkrtchyan" title="Frunzik Mkrtchyan">Frunzik Mkrtchyan</a>, Armenian actor (d. <a href="1993" webstripperwas="http://en.wikipedia.org/wiki/1993" title="1993">1993</a>)</li>
<li><a href="George_Steinbrenner" webstripperwas="http://en.wikipedia.org/wiki/George_Steinbrenner" title="George Steinbrenner">George Steinbrenner</a>, American big businessman and then baseball team owner (d. <a href="2010" webstripperwas="http://en.wikipedia.org/wiki/2010" title="2010">2010</a>)</li>
</ul>
</li>
<li><a href="July_9" webstripperwas="http://en.wikipedia.org/wiki/July_9" title="July 9">July 9</a> – <a href="Buddy_Bregman" webstripperwas="http://en.wikipedia.org/wiki/Buddy_Bregman" title="Buddy Bregman">Buddy Bregman</a>, American musical arranger</li>
<li><a href="July_11" webstripperwas="http://en.wikipedia.org/wiki/July_11" title="July 11">July 11</a> – <a href="Harold_Bloom" webstripperwas="http://en.wikipedia.org/wiki/Harold_Bloom" title="Harold Bloom">Harold Bloom</a>, American literary critic</li>
<li><a href="July_15" webstripperwas="http://en.wikipedia.org/wiki/July_15" title="July 15">July 15</a>
<ul>
<li><a href="Jacques_Derrida" webstripperwas="http://en.wikipedia.org/wiki/Jacques_Derrida" title="Jacques Derrida">Jacques Derrida</a>, Algerian-born French literary critic (d. <a href="2004" webstripperwas="http://en.wikipedia.org/wiki/2004" title="2004">2004</a>)</li>
<li><a href="Betty_Wagoner" webstripperwas="http://en.wikipedia.org/wiki/Betty_Wagoner" title="Betty Wagoner">Betty Wagoner</a>, American professional baseball player (d. <a href="2006" webstripperwas="http://en.wikipedia.org/wiki/2006" title="2006">2006</a>)</li>
</ul>
</li>
<li><a href="July_22" webstripperwas="http://en.wikipedia.org/wiki/July_22" title="July 22">July 22</a> – <a href="Jeremy_Lloyd" webstripperwas="http://en.wikipedia.org/wiki/Jeremy_Lloyd" title="Jeremy Lloyd">Jeremy Lloyd</a>, British actor and screenwriter</li>
<li><a href="July_25" webstripperwas="http://en.wikipedia.org/wiki/July_25" title="July 25">July 25</a>
<ul>
<li><a href="Murray_Chapple" webstripperwas="http://en.wikipedia.org/wiki/Murray_Chapple" title="Murray Chapple">Murray Chapple</a>, New Zealand cricketer (d. <a href="1985" webstripperwas="http://en.wikipedia.org/wiki/1985" title="1985">1985</a>)</li>
<li><a href="Maureen_Forrester" webstripperwas="http://en.wikipedia.org/wiki/Maureen_Forrester" title="Maureen Forrester">Maureen Forrester</a>, Canadian contralto (d. <a href="2010" webstripperwas="http://en.wikipedia.org/wiki/2010" title="2010">2010</a>)</li>
</ul>
</li>
<li><a href="July_28" webstripperwas="http://en.wikipedia.org/wiki/July_28" title="July 28">July 28</a> – <a href="Jean_Roba" webstripperwas="http://en.wikipedia.org/wiki/Jean_Roba" title="Jean Roba">Jean Roba</a>, Belgian comics author (d. <a href="2006" webstripperwas="http://en.wikipedia.org/wiki/2006" title="2006">2006</a>)</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=23" title="Edit section: August">edit</a>]</span> <span class="mw-headline" id="August_2">August</span></h3>
<ul>
<li><a href="August_1" webstripperwas="http://en.wikipedia.org/wiki/August_1" title="August 1">August 1</a> – <a href="Pierre_Bourdieu" webstripperwas="http://en.wikipedia.org/wiki/Pierre_Bourdieu" title="Pierre Bourdieu">Pierre Bourdieu</a>, French sociologist</li>
<li><a href="August_5" webstripperwas="http://en.wikipedia.org/wiki/August_5" title="August 5">August 5</a> – <a href="Neil_Armstrong" webstripperwas="http://en.wikipedia.org/wiki/Neil_Armstrong" title="Neil Armstrong">Neil Armstrong</a>, American astronaut, <a href="Apollo_11" webstripperwas="http://en.wikipedia.org/wiki/Apollo_11" title="Apollo 11">first human to set foot on the Moon</a>, Commander of Apollo 11 (d. <a href="2012" webstripperwas="http://en.wikipedia.org/wiki/2012" title="2012">2012</a>)</li>
<li><a href="August_6" webstripperwas="http://en.wikipedia.org/wiki/August_6" title="August 6">August 6</a> – <a href="Abbey_Lincoln" webstripperwas="http://en.wikipedia.org/wiki/Abbey_Lincoln" title="Abbey Lincoln">Abbey Lincoln</a>, American singer (d. <a href="2010" webstripperwas="http://en.wikipedia.org/wiki/2010" title="2010">2010</a>)</li>
<li><a href="August_12" webstripperwas="http://en.wikipedia.org/wiki/August_12" title="August 12">August 12</a> – <a href="George_Soros" webstripperwas="http://en.wikipedia.org/wiki/George_Soros" title="George Soros">George Soros</a>, Hungarian-born investor</li>
<li><a href="August_13" webstripperwas="http://en.wikipedia.org/wiki/August_13" title="August 13">August 13</a> – <a href="Don_Ho" webstripperwas="http://en.wikipedia.org/wiki/Don_Ho" title="Don Ho">Don Ho</a>, Hawaiian singer & musician (d. <a href="2007" webstripperwas="http://en.wikipedia.org/wiki/2007" title="2007">2007</a>)</li>
<li><a href="August_14" webstripperwas="http://en.wikipedia.org/wiki/August_14" title="August 14">August 14</a> – <a href="Earl_Weaver" webstripperwas="http://en.wikipedia.org/wiki/Earl_Weaver" title="Earl Weaver">Earl Weaver</a>, American <a href="Professional_baseball" webstripperwas="http://en.wikipedia.org/wiki/Professional_baseball" title="Professional baseball">professional baseball</a> player and <a href="Manager_(baseball)" webstripperwas="http://en.wikipedia.org/wiki/Manager_(baseball)" title="Manager (baseball)">manager</a> (died <a href="2013" webstripperwas="http://en.wikipedia.org/wiki/2013" title="2013">2013</a>)</li>
<li><a href="August_15" webstripperwas="http://en.wikipedia.org/wiki/August_15" title="August 15">August 15</a> – <a href="Selma_James" webstripperwas="http://en.wikipedia.org/wiki/Selma_James" title="Selma James">Selma James</a>, American-born feminist writer</li>
<li><a href="August_16" webstripperwas="http://en.wikipedia.org/wiki/August_16" title="August 16">August 16</a> – <a href="Robert_Culp" webstripperwas="http://en.wikipedia.org/wiki/Robert_Culp" title="Robert Culp">Robert Culp</a>, American actor (d. <a href="2010" webstripperwas="http://en.wikipedia.org/wiki/2010" title="2010">2010</a>)</li>
<li><a href="August_17" webstripperwas="http://en.wikipedia.org/wiki/August_17" title="August 17">August 17</a> – <a href="Ted_Hughes" webstripperwas="http://en.wikipedia.org/wiki/Ted_Hughes" title="Ted Hughes">Ted Hughes</a>, English poet (d. <a href="1998.html" webstripperwas="/wiki/1998" title="1998">1998</a>)</li>
<li><a href="August_19" webstripperwas="http://en.wikipedia.org/wiki/August_19" title="August 19">August 19</a> – <a href="Frank_McCourt" webstripperwas="http://en.wikipedia.org/wiki/Frank_McCourt" title="Frank McCourt">Frank McCourt</a>, Irish-American writer (d. <a href="2009" webstripperwas="http://en.wikipedia.org/wiki/2009" title="2009">2009</a>)</li>
<li><a href="August_21" webstripperwas="http://en.wikipedia.org/wiki/August_21" title="August 21">August 21</a> – <a href="Princess_Margaret,_Countess_of_Snowdon" webstripperwas="http://en.wikipedia.org/wiki/Princess_Margaret,_Countess_of_Snowdon" title="Princess Margaret, Countess of Snowdon">Princess Margaret, Countess of Snowdon</a> (d. <a href="2002" webstripperwas="http://en.wikipedia.org/wiki/2002" title="2002">2002</a>)</li>
<li><a href="August_23" webstripperwas="http://en.wikipedia.org/wiki/August_23" title="August 23">August 23</a> – <a href="Mickey_McMahan" webstripperwas="http://en.wikipedia.org/wiki/Mickey_McMahan" title="Mickey McMahan">Mickey McMahan</a>, American big band musician (d. <a href="2008" webstripperwas="http://en.wikipedia.org/wiki/2008" title="2008">2008</a>)</li>
<li><a href="August_25" webstripperwas="http://en.wikipedia.org/wiki/August_25" title="August 25">August 25</a> – <a href="Sean_Connery" webstripperwas="http://en.wikipedia.org/wiki/Sean_Connery" title="Sean Connery">Sean Connery</a>, Scottish actor</li>
<li><a href="August_27" webstripperwas="http://en.wikipedia.org/wiki/August_27" title="August 27">August 27</a> – <a href="Gholamreza_Takhti" webstripperwas="http://en.wikipedia.org/wiki/Gholamreza_Takhti" title="Gholamreza Takhti">Gholamreza Takhti</a>, Iranian wrestler (d. <a href="1968" webstripperwas="http://en.wikipedia.org/wiki/1968" title="1968">1968</a>)</li>
<li><a href="August_28" webstripperwas="http://en.wikipedia.org/wiki/August_28" title="August 28">August 28</a> – <a href="Ben_Gazzara" webstripperwas="http://en.wikipedia.org/wiki/Ben_Gazzara" title="Ben Gazzara">Ben Gazzara</a>, American actor (d. <a href="2012" webstripperwas="http://en.wikipedia.org/wiki/2012" title="2012">2012</a>)</li>
<li><a href="August_30" webstripperwas="http://en.wikipedia.org/wiki/August_30" title="August 30">August 30</a> – <a href="Warren_Buffett" webstripperwas="http://en.wikipedia.org/wiki/Warren_Buffett" title="Warren Buffett">Warren Buffett</a>, American billionaire <a href="Entrepreneur" webstripperwas="http://en.wikipedia.org/wiki/Entrepreneur" title="Entrepreneur">entrepreneur</a></li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=24" title="Edit section: September">edit</a>]</span> <span class="mw-headline" id="September_2">September</span></h3>
<ul>
<li><a href="September_3" webstripperwas="http://en.wikipedia.org/wiki/September_3" title="September 3">September 3</a> – <a href="Cherry_Wilder" webstripperwas="http://en.wikipedia.org/wiki/Cherry_Wilder" title="Cherry Wilder">Cherry Wilder</a>, New Zealand author (d. <a href="2002" webstripperwas="http://en.wikipedia.org/wiki/2002" title="2002">2002</a>)</li>
<li><a href="September_9" webstripperwas="http://en.wikipedia.org/wiki/September_9" title="September 9">September 9</a> – <a href="Frank_Lucas_(drug_lord)" webstripperwas="http://en.wikipedia.org/wiki/Frank_Lucas_(drug_lord)" title="Frank Lucas (drug lord)" class="mw-redirect">Frank Lucas</a>, African-American drug lord</li>
<li><a href="September_7" webstripperwas="http://en.wikipedia.org/wiki/September_7" title="September 7">September 7</a>
<ul>
<li>King <a href="Baudouin_I_of_Belgium" webstripperwas="http://en.wikipedia.org/wiki/Baudouin_I_of_Belgium" title="Baudouin I of Belgium" class="mw-redirect">Baudouin I of Belgium</a> (d. <a href="1993" webstripperwas="http://en.wikipedia.org/wiki/1993" title="1993">1993</a>)</li>
<li><a href="Sonny_Rollins" webstripperwas="http://en.wikipedia.org/wiki/Sonny_Rollins" title="Sonny Rollins">Sonny Rollins</a>, American jazz saxophonist</li>
</ul>
</li>
<li><a href="September_11" webstripperwas="http://en.wikipedia.org/wiki/September_11" title="September 11">September 11</a>
<ul>
<li><a href="Cathryn_Damon" webstripperwas="http://en.wikipedia.org/wiki/Cathryn_Damon" title="Cathryn Damon">Cathryn Damon</a>, American actress (d. <a href="1987" webstripperwas="http://en.wikipedia.org/wiki/1987" title="1987">1987</a>)</li>
<li><a href="Renzo_Montagnani" webstripperwas="http://en.wikipedia.org/wiki/Renzo_Montagnani" title="Renzo Montagnani">Renzo Montagnani</a>, Italian actor (d. <a href="1997" webstripperwas="http://en.wikipedia.org/wiki/1997" title="1997">1997</a>)</li>
</ul>
</li>
<li><a href="September_13" webstripperwas="http://en.wikipedia.org/wiki/September_13" title="September 13">September 13</a>
<ul>
<li><a href="Mary_Baumgartner" webstripperwas="http://en.wikipedia.org/wiki/Mary_Baumgartner" title="Mary Baumgartner">Mary Baumgartner</a>, American female professional baseball player</li>
<li><a href="Bola_Ige" webstripperwas="http://en.wikipedia.org/wiki/Bola_Ige" title="Bola Ige">Bola Ige</a>, Nigerian politician (d. <a href="2001" webstripperwas="http://en.wikipedia.org/wiki/2001" title="2001">2001</a>)</li>
</ul>
</li>
<li><a href="September_16" webstripperwas="http://en.wikipedia.org/wiki/September_16" title="September 16">September 16</a> – <a href="Anne_Francis" webstripperwas="http://en.wikipedia.org/wiki/Anne_Francis" title="Anne Francis">Anne Francis</a>, American actress (d. <a href="2011" webstripperwas="http://en.wikipedia.org/wiki/2011" title="2011">2011</a>)</li>
<li><a href="September_20" webstripperwas="http://en.wikipedia.org/wiki/September_20" title="September 20">September 20</a> – <a href="Kenneth_Mopeli" webstripperwas="http://en.wikipedia.org/wiki/Kenneth_Mopeli" title="Kenneth Mopeli">Kenneth Mopeli</a>, Chief Minister of QwaQwa bantustan</li>
<li><a href="September_21" webstripperwas="http://en.wikipedia.org/wiki/September_21" title="September 21">September 21</a> – <a href="Dawn_Addams" webstripperwas="http://en.wikipedia.org/wiki/Dawn_Addams" title="Dawn Addams">Dawn Addams</a>, British actress (d. <a href="1985" webstripperwas="http://en.wikipedia.org/wiki/1985" title="1985">1985</a>)</li>
<li><a href="September_23" webstripperwas="http://en.wikipedia.org/wiki/September_23" title="September 23">September 23</a>
<ul>
<li><a href="Colin_Blakely" webstripperwas="http://en.wikipedia.org/wiki/Colin_Blakely" title="Colin Blakely">Colin Blakely</a>, Northern Irish actor (d. <a href="1987" webstripperwas="http://en.wikipedia.org/wiki/1987" title="1987">1987</a>)</li>
<li><a href="Ray_Charles" webstripperwas="http://en.wikipedia.org/wiki/Ray_Charles" title="Ray Charles">Ray Charles</a>, American singer, musician, and actor (d. <a href="2004" webstripperwas="http://en.wikipedia.org/wiki/2004" title="2004">2004</a>)</li>
</ul>
</li>
<li><a href="September_24" webstripperwas="http://en.wikipedia.org/wiki/September_24" title="September 24">September 24</a> – <a href="Angelo_Muscat" webstripperwas="http://en.wikipedia.org/wiki/Angelo_Muscat" title="Angelo Muscat">Angelo Muscat</a>, Maltese actor (d. <a href="1977.html" webstripperwas="/wiki/1977" title="1977">1977</a>)</li>
<li><a href="September_25" webstripperwas="http://en.wikipedia.org/wiki/September_25" title="September 25">September 25</a> – <a href="Shel_Silverstein" webstripperwas="http://en.wikipedia.org/wiki/Shel_Silverstein" title="Shel Silverstein">Shel Silverstein</a>, American author, poet, and humorist (d. <a href="1999" webstripperwas="http://en.wikipedia.org/wiki/1999" title="1999">1999</a>)</li>
<li><a href="September_26" webstripperwas="http://en.wikipedia.org/wiki/September_26" title="September 26">September 26</a>
<ul>
<li><a href="Philip_Bosco" webstripperwas="http://en.wikipedia.org/wiki/Philip_Bosco" title="Philip Bosco">Philip Bosco</a>, American actor</li>
<li><a href="Fritz_Wunderlich" webstripperwas="http://en.wikipedia.org/wiki/Fritz_Wunderlich" title="Fritz Wunderlich">Fritz Wunderlich</a>, German tenor singer (d. <a href="1966" webstripperwas="http://en.wikipedia.org/wiki/1966" title="1966">1966</a>)</li>
</ul>
</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=25" title="Edit section: October">edit</a>]</span> <span class="mw-headline" id="October_2">October</span></h3>
<ul>
<li><a href="October_1" webstripperwas="http://en.wikipedia.org/wiki/October_1" title="October 1">October 1</a>
<ul>
<li><a href="Richard_Harris_(actor)" webstripperwas="http://en.wikipedia.org/wiki/Richard_Harris_(actor)" title="Richard Harris (actor)" class="mw-redirect">Richard Harris</a>, Irish actor (d. <a href="2002" webstripperwas="http://en.wikipedia.org/wiki/2002" title="2002">2002</a>)</li>
<li><a href="Philippe_Noiret" webstripperwas="http://en.wikipedia.org/wiki/Philippe_Noiret" title="Philippe Noiret">Philippe Noiret</a>, French actor (d. <a href="2006" webstripperwas="http://en.wikipedia.org/wiki/2006" title="2006">2006</a>)</li>
<li><a href="Erica_Yohn" webstripperwas="http://en.wikipedia.org/wiki/Erica_Yohn" title="Erica Yohn">Erica Yohn</a>, American actress</li>
</ul>
</li>
<li><a href="October_5" webstripperwas="http://en.wikipedia.org/wiki/October_5" title="October 5">October 5</a>
<ul>
<li><a href="Pavel_Popovich" webstripperwas="http://en.wikipedia.org/wiki/Pavel_Popovich" title="Pavel Popovich">Pavel Popovich</a>, Soviet cosmonaut (d. <a href="2009" webstripperwas="http://en.wikipedia.org/wiki/2009" title="2009">2009</a>)</li>
<li><a href="Reinhard_Selten" webstripperwas="http://en.wikipedia.org/wiki/Reinhard_Selten" title="Reinhard Selten">Reinhard Selten</a>, German economist, <a href="Nobel_Prize_in_Economics" webstripperwas="http://en.wikipedia.org/wiki/Nobel_Prize_in_Economics" title="Nobel Prize in Economics" class="mw-redirect">Nobel Prize</a> laureate</li>
</ul>
</li>
<li><a href="October_6" webstripperwas="http://en.wikipedia.org/wiki/October_6" title="October 6">October 6</a> – <a href="Hafez_al-Assad" webstripperwas="http://en.wikipedia.org/wiki/Hafez_al-Assad" title="Hafez al-Assad">Hafez al-Assad</a>, <a href="President_of_Syria" webstripperwas="http://en.wikipedia.org/wiki/President_of_Syria" title="President of Syria">President of Syria</a> (d. <a href="2000" webstripperwas="http://en.wikipedia.org/wiki/2000" title="2000">2000</a>)</li>
<li><a href="October_8" webstripperwas="http://en.wikipedia.org/wiki/October_8" title="October 8">October 8</a> – <a href="T$C5$8Dru_Takemitsu" webstripperwas="http://en.wikipedia.org/wiki/T%C5%8Dru_Takemitsu" title="Tōru Takemitsu" class="mw-redirect">Tōru Takemitsu</a>, Japanese composer (d. <a href="1996.html" webstripperwas="/wiki/1996" title="1996">1996</a>)</li>
<li><a href="October_10" webstripperwas="http://en.wikipedia.org/wiki/October_10" title="October 10">October 10</a>
<ul>
<li><a href="Yves_Chauvin" webstripperwas="http://en.wikipedia.org/wiki/Yves_Chauvin" title="Yves Chauvin">Yves Chauvin</a>, French chemist, <a href="Nobel_Prize_in_Chemistry" webstripperwas="http://en.wikipedia.org/wiki/Nobel_Prize_in_Chemistry" title="Nobel Prize in Chemistry">Nobel Prize</a> laureate</li>
<li><a href="Harold_Pinter" webstripperwas="http://en.wikipedia.org/wiki/Harold_Pinter" title="Harold Pinter">Harold Pinter</a>, English playwright, <a href="Nobel_Prize_in_Literature" webstripperwas="http://en.wikipedia.org/wiki/Nobel_Prize_in_Literature" title="Nobel Prize in Literature">Nobel Prize</a> laureate (d. <a href="2008" webstripperwas="http://en.wikipedia.org/wiki/2008" title="2008">2008</a>)</li>
</ul>
</li>
<li><a href="October_11" webstripperwas="http://en.wikipedia.org/wiki/October_11" title="October 11">October 11</a> – <a href="Sam_Johnson" webstripperwas="http://en.wikipedia.org/wiki/Sam_Johnson" title="Sam Johnson">Sam Johnson</a>, American politician</li>
<li><a href="October_14" webstripperwas="http://en.wikipedia.org/wiki/October_14" title="October 14">October 14</a>
<ul>
<li><a href="Schafik_Handal" webstripperwas="http://en.wikipedia.org/wiki/Schafik_Handal" title="Schafik Handal">Schafik Handal</a>, Salvadoran politician (d. <a href="2006" webstripperwas="http://en.wikipedia.org/wiki/2006" title="2006">2006</a>)</li>
<li><a href="Mobutu_Sese_Seko" webstripperwas="http://en.wikipedia.org/wiki/Mobutu_Sese_Seko" title="Mobutu Sese Seko">Mobutu Sese Seko</a>, former President of Democratic Republic of the Congo (d. <a href="1997" webstripperwas="http://en.wikipedia.org/wiki/1997" title="1997">1997</a>)</li>
</ul>
</li>
<li><a href="October_17" webstripperwas="http://en.wikipedia.org/wiki/October_17" title="October 17">October 17</a>
<ul>
<li><a href="Robert_Atkins_(nutritionist)" webstripperwas="http://en.wikipedia.org/wiki/Robert_Atkins_(nutritionist)" title="Robert Atkins (nutritionist)">Robert Atkins</a>, American nutritionist (d. <a href="2003" webstripperwas="http://en.wikipedia.org/wiki/2003" title="2003">2003</a>)</li>
<li><a href="Jimmy_Breslin" webstripperwas="http://en.wikipedia.org/wiki/Jimmy_Breslin" title="Jimmy Breslin">Jimmy Breslin</a>, American newspaper columnist and author</li>
</ul>
</li>
<li><a href="October_19" webstripperwas="http://en.wikipedia.org/wiki/October_19" title="October 19">October 19</a> – <a href="Jody_Lawrance" webstripperwas="http://en.wikipedia.org/wiki/Jody_Lawrance" title="Jody Lawrance">Jody Lawrance</a>, American actress (d. <a href="1986" webstripperwas="http://en.wikipedia.org/wiki/1986" title="1986">1986</a>)</li>
<li><a href="October_24" webstripperwas="http://en.wikipedia.org/wiki/October_24" title="October 24">October 24</a> – <a href="The_Big_Bopper" webstripperwas="http://en.wikipedia.org/wiki/The_Big_Bopper" title="The Big Bopper">The Big Bopper</a>, American singer (d. <a href="1959" webstripperwas="http://en.wikipedia.org/wiki/1959" title="1959">1959</a>)</li>
<li><a href="October_28" webstripperwas="http://en.wikipedia.org/wiki/October_28" title="October 28">October 28</a> – <a href="Bernie_Ecclestone" webstripperwas="http://en.wikipedia.org/wiki/Bernie_Ecclestone" title="Bernie Ecclestone">Bernie Ecclestone</a>, English auto racing tycoon</li>
<li><a href="October_29" webstripperwas="http://en.wikipedia.org/wiki/October_29" title="October 29">October 29</a>
<ul>
<li><a href="Bertha_Brouwer" webstripperwas="http://en.wikipedia.org/wiki/Bertha_Brouwer" title="Bertha Brouwer">Bertha Brouwer</a>, Dutch athlete (d. <a href="2006" webstripperwas="http://en.wikipedia.org/wiki/2006" title="2006">2006</a>)</li>
<li><a href="Natalie_Sleeth" webstripperwas="http://en.wikipedia.org/wiki/Natalie_Sleeth" title="Natalie Sleeth">Natalie Sleeth</a>, American composer (d. <a href="1992" webstripperwas="http://en.wikipedia.org/wiki/1992" title="1992">1992</a>)</li>
</ul>
</li>
<li><a href="October_30" webstripperwas="http://en.wikipedia.org/wiki/October_30" title="October 30">October 30</a>
<ul>
<li><a href="Daniel_Boone" webstripperwas="http://en.wikipedia.org/wiki/Daniel_Boone" title="Daniel Boone">Daniel Boone</a>, American jazz trumpeter (d. <a href="1956" webstripperwas="http://en.wikipedia.org/wiki/1956" title="1956">1956</a>)</li>
<li><a href="Timothy_Findley" webstripperwas="http://en.wikipedia.org/wiki/Timothy_Findley" title="Timothy Findley">Timothy Findley</a>, Canadian author (d. <a href="2002" webstripperwas="http://en.wikipedia.org/wiki/2002" title="2002">2002</a>)</li>
</ul>
</li>
<li><a href="October_31" webstripperwas="http://en.wikipedia.org/wiki/October_31" title="October 31">October 31</a> – <a href="Michael_Collins_(astronaut)" webstripperwas="http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)" title="Michael Collins (astronaut)">Michael Collins</a>, astronaut, second person to fly around the Moon solo, <a href="Apollo_Command/Service_Module" webstripperwas="http://en.wikipedia.org/wiki/Apollo_Command/Service_Module" title="Apollo Command/Service Module">Command Module</a> pilot on <a href="Apollo_11" webstripperwas="http://en.wikipedia.org/wiki/Apollo_11" title="Apollo 11">Apollo 11</a>, the first human <a href="Lunar_landing" webstripperwas="http://en.wikipedia.org/wiki/Lunar_landing" title="Lunar landing" class="mw-redirect">lunar landing</a></li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=26" title="Edit section: November">edit</a>]</span> <span class="mw-headline" id="November_2">November</span></h3>
<ul>
<li><a href="November_3" webstripperwas="http://en.wikipedia.org/wiki/November_3" title="November 3">November 3</a> – <a href="D._James_Kennedy" webstripperwas="http://en.wikipedia.org/wiki/D._James_Kennedy" title="D. James Kennedy">D. James Kennedy</a>, American evangelist (d. <a href="2007" webstripperwas="http://en.wikipedia.org/wiki/2007" title="2007">2007</a>)</li>
<li><a href="November_6" webstripperwas="http://en.wikipedia.org/wiki/November_6" title="November 6">November 6</a> – <a href="Derrick_Bell" webstripperwas="http://en.wikipedia.org/wiki/Derrick_Bell" title="Derrick Bell">Derrick Bell</a>, law professor, <a href="Wilma_Briggs" webstripperwas="http://en.wikipedia.org/wiki/Wilma_Briggs" title="Wilma Briggs">Wilma Briggs</a>, American female baseball player</li>
<li><a href="November_14" webstripperwas="http://en.wikipedia.org/wiki/November_14" title="November 14">November 14</a>
<ul>
<li><a href="Shirley_Crabtree" webstripperwas="http://en.wikipedia.org/wiki/Shirley_Crabtree" title="Shirley Crabtree">Shirley Crabtree</a> ("Big Daddy"), British professional wrestler (d. <a href="1997" webstripperwas="http://en.wikipedia.org/wiki/1997" title="1997">1997</a>)</li>
<li><a href="Edward_Higgins_White" webstripperwas="http://en.wikipedia.org/wiki/Edward_Higgins_White" title="Edward Higgins White">Edward Higgins White</a>, American astronaut (d. <a href="1967.html" webstripperwas="/wiki/1967" title="1967">1967</a>)</li>
</ul>
</li>
<li><a href="November_15" webstripperwas="http://en.wikipedia.org/wiki/November_15" title="November 15">November 15</a> – <a href="J.G._Ballard" webstripperwas="http://en.wikipedia.org/wiki/J.G._Ballard" title="J.G. Ballard" class="mw-redirect">J.G. Ballard</a>, English writer (d. <a href="2009" webstripperwas="http://en.wikipedia.org/wiki/2009" title="2009">2009</a>)</li>
<li><a href="November_16" webstripperwas="http://en.wikipedia.org/wiki/November_16" title="November 16">November 16</a>
<ul>
<li><a href="Chinua_Achebe" webstripperwas="http://en.wikipedia.org/wiki/Chinua_Achebe" title="Chinua Achebe">Chinua Achebe</a>, Nigerian writer (d. <a href="2013" webstripperwas="http://en.wikipedia.org/wiki/2013" title="2013">2013</a>)</li>
<li><a href="Salvatore_Riina" webstripperwas="http://en.wikipedia.org/wiki/Salvatore_Riina" title="Salvatore Riina">Salvatore Riina</a>, Italian multiple murderer</li>
</ul>
</li>
<li><a href="November_20" webstripperwas="http://en.wikipedia.org/wiki/November_20" title="November 20">November 20</a> – <a href="Bernard_Horsfall" webstripperwas="http://en.wikipedia.org/wiki/Bernard_Horsfall" title="Bernard Horsfall">Bernard Horsfall</a>, British actor</li>
<li><a href="November_24" webstripperwas="http://en.wikipedia.org/wiki/November_24" title="November 24">November 24</a> – <a href="Bob_Friend" webstripperwas="http://en.wikipedia.org/wiki/Bob_Friend" title="Bob Friend">Bob Friend</a>, American baseball player</li>
<li><a href="November_25" webstripperwas="http://en.wikipedia.org/wiki/November_25" title="November 25">November 25</a> – <a href="Clarke_Scholes" webstripperwas="http://en.wikipedia.org/wiki/Clarke_Scholes" title="Clarke Scholes">Clarke Scholes</a>, American freestyle swimmer</li>
<li><a href="November_27" webstripperwas="http://en.wikipedia.org/wiki/November_27" title="November 27">November 27</a> – <a href="Rex_Shelley" webstripperwas="http://en.wikipedia.org/wiki/Rex_Shelley" title="Rex Shelley">Rex Shelley</a>, Singaporean author (d. <a href="2009" webstripperwas="http://en.wikipedia.org/wiki/2009" title="2009">2009</a>)</li>
<li><a href="November_30" webstripperwas="http://en.wikipedia.org/wiki/November_30" title="November 30">November 30</a> – <a href="G._Gordon_Liddy" webstripperwas="http://en.wikipedia.org/wiki/G._Gordon_Liddy" title="G. Gordon Liddy">G. Gordon Liddy</a>, organizer of the <a href="Watergate_burglaries" webstripperwas="http://en.wikipedia.org/wiki/Watergate_burglaries" title="Watergate burglaries">Watergate burglaries</a></li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=27" title="Edit section: December">edit</a>]</span> <span class="mw-headline" id="December_2">December</span></h3>
<ul>
<li><a href="December_1" webstripperwas="http://en.wikipedia.org/wiki/December_1" title="December 1">December 1</a> – <a href="Joachim_Hoffmann" webstripperwas="http://en.wikipedia.org/wiki/Joachim_Hoffmann" title="Joachim Hoffmann">Joachim Hoffmann</a>, German historian (d. <a href="2002" webstripperwas="http://en.wikipedia.org/wiki/2002" title="2002">2002</a>)</li>
<li><a href="December_2" webstripperwas="http://en.wikipedia.org/wiki/December_2" title="December 2">December 2</a> – <a href="Gary_Becker" webstripperwas="http://en.wikipedia.org/wiki/Gary_Becker" title="Gary Becker">Gary Becker</a>, American economist, <a href="Nobel_Prize_in_Economics" webstripperwas="http://en.wikipedia.org/wiki/Nobel_Prize_in_Economics" title="Nobel Prize in Economics" class="mw-redirect">Nobel Prize</a> laureate</li>
<li><a href="December_3" webstripperwas="http://en.wikipedia.org/wiki/December_3" title="December 3">December 3</a> – <a href="Jean-Luc_Godard" webstripperwas="http://en.wikipedia.org/wiki/Jean-Luc_Godard" title="Jean-Luc Godard">Jean-Luc Godard</a>, French film director</li>
<li><a href="December_4" webstripperwas="http://en.wikipedia.org/wiki/December_4" title="December 4">December 4</a> – <a href="Jim_Hall_(musician)" webstripperwas="http://en.wikipedia.org/wiki/Jim_Hall_(musician)" title="Jim Hall (musician)">Jim Hall</a>, American jazz guitarist</li>
<li><a href="December_6" webstripperwas="http://en.wikipedia.org/wiki/December_6" title="December 6">December 6</a> – <a href="Daniel_Lisulo" webstripperwas="http://en.wikipedia.org/wiki/Daniel_Lisulo" title="Daniel Lisulo">Daniel Lisulo</a>, <a href="Prime_Minister_of_Zambia" webstripperwas="http://en.wikipedia.org/wiki/Prime_Minister_of_Zambia" title="Prime Minister of Zambia">Prime Minister of Zambia</a> (d. <a href="2000" webstripperwas="http://en.wikipedia.org/wiki/2000" title="2000">2000</a>)</li>
<li><a href="December_7" webstripperwas="http://en.wikipedia.org/wiki/December_7" title="December 7">December 7</a> – <a href="Christopher_Nicole" webstripperwas="http://en.wikipedia.org/wiki/Christopher_Nicole" title="Christopher Nicole">Christopher Nicole</a>, British writer</li>
<li><a href="December_8" webstripperwas="http://en.wikipedia.org/wiki/December_8" title="December 8">December 8</a> – <a href="Stan_Richards" webstripperwas="http://en.wikipedia.org/wiki/Stan_Richards" title="Stan Richards">Stan Richards</a>, English actor (d. <a href="2005" webstripperwas="http://en.wikipedia.org/wiki/2005" title="2005">2005</a>)</li>
<li><a href="December_11" webstripperwas="http://en.wikipedia.org/wiki/December_11" title="December 11">December 11</a>
<ul>
<li><a href="Jean-Louis_Trintignant" webstripperwas="http://en.wikipedia.org/wiki/Jean-Louis_Trintignant" title="Jean-Louis Trintignant">Jean-Louis Trintignant</a>, French actor</li>
<li><a href="James_Arthur_Williams" webstripperwas="http://en.wikipedia.org/wiki/James_Arthur_Williams" title="James Arthur Williams">Jim Williams</a>, American antique dealer and preservationist</li>
</ul>
</li>
<li><a href="December_15" webstripperwas="http://en.wikipedia.org/wiki/December_15" title="December 15">December 15</a> – <a href="Edna_O$27Brien" webstripperwas="http://en.wikipedia.org/wiki/Edna_O%27Brien" title="Edna O'Brien">Edna O'Brien</a>, Irish writer</li>
<li><a href="December_21" webstripperwas="http://en.wikipedia.org/wiki/December_21" title="December 21">December 21</a>
<ul>
<li><a href="Adebayo_Adedeji" webstripperwas="http://en.wikipedia.org/wiki/Adebayo_Adedeji" title="Adebayo Adedeji">Adebayo Adedeji</a>, Nigerian UN official</li>
<li><a href="Kalevi_Sorsa" webstripperwas="http://en.wikipedia.org/wiki/Kalevi_Sorsa" title="Kalevi Sorsa">Kalevi Sorsa</a>, prime minister of Finland (d. <a href="2004" webstripperwas="http://en.wikipedia.org/wiki/2004" title="2004">2004</a>)</li>
</ul>
</li>
<li><a href="December_27" webstripperwas="http://en.wikipedia.org/wiki/December_27" title="December 27">December 27</a> – <a href="Wilfrid_Sheed" webstripperwas="http://en.wikipedia.org/wiki/Wilfrid_Sheed" title="Wilfrid Sheed">Wilfrid Sheed</a>, English-born American writer</li>
<li><a href="December_28" webstripperwas="http://en.wikipedia.org/wiki/December_28" title="December 28">December 28</a> – <a href="Gladys_Ambrose" webstripperwas="http://en.wikipedia.org/wiki/Gladys_Ambrose" title="Gladys Ambrose">Gladys Ambrose</a>, English actress (d. <a href="1998.html" webstripperwas="/wiki/1998" title="1998">1998</a>)</li>
<li><a href="December_29" webstripperwas="http://en.wikipedia.org/wiki/December_29" title="December 29">December 29</a> – <a href="Frank_Dezelan" webstripperwas="http://en.wikipedia.org/wiki/Frank_Dezelan" title="Frank Dezelan">Frank Dezelan</a>, American baseball umpire (d. <a href="2011" webstripperwas="http://en.wikipedia.org/wiki/2011" title="2011">2011</a>)</li>
<li><a href="December_31" webstripperwas="http://en.wikipedia.org/wiki/December_31" title="December 31">December 31</a>
<ul>
<li><a href="Odetta" webstripperwas="http://en.wikipedia.org/wiki/Odetta" title="Odetta">Odetta</a>, American singer (d. <a href="2008" webstripperwas="http://en.wikipedia.org/wiki/2008" title="2008">2008</a>)</li>
<li><a href="Jaime_Escalante" webstripperwas="http://en.wikipedia.org/wiki/Jaime_Escalante" title="Jaime Escalante">Jaime Escalante</a>, American teacher (d. <a href="2010" webstripperwas="http://en.wikipedia.org/wiki/2010" title="2010">2010</a>)</li>
</ul>
</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=28" title="Edit section: Date unknown">edit</a>]</span> <span class="mw-headline" id="Date_unknown_2">Date unknown</span></h3>
<ul>
<li><a href="Barney_Glaser" webstripperwas="http://en.wikipedia.org/wiki/Barney_Glaser" title="Barney Glaser">Barney Glaser</a>, American sociologist</li>
</ul>
<h2><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=29" title="Edit section: Deaths">edit</a>]</span> <span class="mw-headline" id="Deaths">Deaths</span></h2>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=30" title="Edit section: January–June">edit</a>]</span> <span class="mw-headline" id="January.E2.80.93June">January–June</span></h3>
<ul>
<li><a href="January_9" webstripperwas="http://en.wikipedia.org/wiki/January_9" title="January 9">January 9</a> – <a href="Edward_Bok" webstripperwas="http://en.wikipedia.org/wiki/Edward_Bok" title="Edward Bok" class="mw-redirect">Edward Bok</a>, American author (b. <a href="1863" webstripperwas="http://en.wikipedia.org/wiki/1863" title="1863">1863</a>)</li>
<li><a href="January_13" webstripperwas="http://en.wikipedia.org/wiki/January_13" title="January 13">January 13</a> – <a href="John_Nathan_Cobb" webstripperwas="http://en.wikipedia.org/wiki/John_Nathan_Cobb" title="John Nathan Cobb">John Nathan Cobb</a>, American author, naturalist, conservationist, fisheries researcher, and educator (b. <a href="1868" webstripperwas="http://en.wikipedia.org/wiki/1868" title="1868">1868</a>)</li>
<li><a href="February_3" webstripperwas="http://en.wikipedia.org/wiki/February_3" title="February 3">February 3</a> – <a href="Michele_Bianchi" webstripperwas="http://en.wikipedia.org/wiki/Michele_Bianchi" title="Michele Bianchi">Michele Bianchi</a>, Italian fascist leader (b. <a href="1883" webstripperwas="http://en.wikipedia.org/wiki/1883" title="1883">1883</a>)</li>
<li><a href="February_14" webstripperwas="http://en.wikipedia.org/wiki/February_14" title="February 14">February 14</a> – <a href="Thomas_Mackenzie" webstripperwas="http://en.wikipedia.org/wiki/Thomas_Mackenzie" title="Thomas Mackenzie">Sir Thomas MacKenzie</a>, New Zealand Prime Minister and High Commissioner (b. <a href="1854" webstripperwas="http://en.wikipedia.org/wiki/1854" title="1854">1854</a>)</li>
<li><a href="February_15" webstripperwas="http://en.wikipedia.org/wiki/February_15" title="February 15">February 15</a> – <a href="Giulio_Douhet" webstripperwas="http://en.wikipedia.org/wiki/Giulio_Douhet" title="Giulio Douhet">Giulio Douhet</a>, Italian air power theorist (b. <a href="1869" webstripperwas="http://en.wikipedia.org/wiki/1869" title="1869">1869</a>)</li>
<li><a href="February_21" webstripperwas="http://en.wikipedia.org/wiki/February_21" title="February 21">February 21</a> – <a href="Ahmad_Shah_Qajar" webstripperwas="http://en.wikipedia.org/wiki/Ahmad_Shah_Qajar" title="Ahmad Shah Qajar">Ahmad Shah Qajar</a>, <a href="Pahlavi_Dynasty" webstripperwas="http://en.wikipedia.org/wiki/Pahlavi_dynasty" title="Pahlavi dynasty">Shah of Persia</a> (b. <a href="1898" webstripperwas="http://en.wikipedia.org/wiki/1898" title="1898">1898</a>)</li>
<li><a href="February_23" webstripperwas="http://en.wikipedia.org/wiki/February_23" title="February 23">February 23</a>
<ul>
<li><a href="Mabel_Normand" webstripperwas="http://en.wikipedia.org/wiki/Mabel_Normand" title="Mabel Normand">Mabel Normand</a>, American actress (b. <a href="1895" webstripperwas="http://en.wikipedia.org/wiki/1895" title="1895">1895</a>)</li>
<li><a href="Horst_Wessel" webstripperwas="http://en.wikipedia.org/wiki/Horst_Wessel" title="Horst Wessel">Horst Wessel</a>, Nazi ideologue and composer (b. <a href="1907" webstripperwas="http://en.wikipedia.org/wiki/1907" title="1907">1907</a>)</li>
</ul>
</li>
<li><a href="February_28" webstripperwas="http://en.wikipedia.org/wiki/February_28" title="February 28">February 28</a> – <a href="Perceval_Maitland_Laurence" webstripperwas="http://en.wikipedia.org/wiki/Perceval_Maitland_Laurence" title="Perceval Maitland Laurence">Sir Perceval Maitland Laurence</a>, English classical scholar, South African judge and a benefactor of the University of Cambridge (b. <a href="1854" webstripperwas="http://en.wikipedia.org/wiki/1854" title="1854">1854</a>)</li>
<li><a href="March_2" webstripperwas="http://en.wikipedia.org/wiki/March_2" title="March 2">March 2</a> – <a href="D._H._Lawrence" webstripperwas="http://en.wikipedia.org/wiki/D._H._Lawrence" title="D. H. Lawrence">D. H. Lawrence</a>, English writer (<i>Lady Chatterley's Lover</i>) (b. <a href="1885.html" webstripperwas="/wiki/1885" title="1885">1885</a>)</li>
<li><a href="March_6" webstripperwas="http://en.wikipedia.org/wiki/March_6" title="March 6">March 6</a> – <a href="Alfred_von_Tirpitz" webstripperwas="http://en.wikipedia.org/wiki/Alfred_von_Tirpitz" title="Alfred von Tirpitz">Alfred von Tirpitz</a>, German politician and admiral (b. <a href="1848" webstripperwas="http://en.wikipedia.org/wiki/1848" title="1848">1848</a>)</li>
<li><a href="March_8" webstripperwas="http://en.wikipedia.org/wiki/March_8" title="March 8">March 8</a> – <a href="William_Howard_Taft" webstripperwas="http://en.wikipedia.org/wiki/William_Howard_Taft" title="William Howard Taft">William Howard Taft</a>, 27th <a href="President_of_the_United_States.html" webstripperwas="/wiki/President_of_the_United_States" title="President of the United States">President of the United States</a>, 10th <a href="Chief_Justice_of_the_United_States" webstripperwas="http://en.wikipedia.org/wiki/Chief_Justice_of_the_United_States" title="Chief Justice of the United States">Chief Justice of the United States</a> (b. <a href="1857" webstripperwas="http://en.wikipedia.org/wiki/1857" title="1857">1857</a>)</li>
<li><a href="March_12" webstripperwas="http://en.wikipedia.org/wiki/March_12" title="March 12">March 12</a> – <a href="William_George_Barker" webstripperwas="http://en.wikipedia.org/wiki/William_George_Barker" title="William George Barker">William George Barker</a>, Canadian pilot</li>
<li><a href="March_19" webstripperwas="http://en.wikipedia.org/wiki/March_19" title="March 19">March 19</a> – <a href="Arthur_James_Balfour" webstripperwas="http://en.wikipedia.org/wiki/Arthur_James_Balfour" title="Arthur James Balfour" class="mw-redirect">Arthur James Balfour</a>, <a href="Prime_Minister_of_the_United_Kingdom" webstripperwas="http://en.wikipedia.org/wiki/Prime_Minister_of_the_United_Kingdom" title="Prime Minister of the United Kingdom">Prime Minister of the United Kingdom</a> (b. <a href="1848" webstripperwas="http://en.wikipedia.org/wiki/1848" title="1848">1848</a>)</li>
<li><a href="March_24" webstripperwas="http://en.wikipedia.org/wiki/March_24" title="March 24">March 24</a> – <a href="Eugeen_Van_Mieghem" webstripperwas="http://en.wikipedia.org/wiki/Eugeen_Van_Mieghem" title="Eugeen Van Mieghem">Eugeen Van Mieghem</a>, Belgian painter (b. <a href="1875" webstripperwas="http://en.wikipedia.org/wiki/1875" title="1875">1875</a>)</li>
<li><a href="April_2" webstripperwas="http://en.wikipedia.org/wiki/April_2" title="April 2">April 2</a> – Empress <a href="Zawditu_of_Ethiopia" webstripperwas="http://en.wikipedia.org/wiki/Zawditu_of_Ethiopia" title="Zawditu of Ethiopia" class="mw-redirect">Zawditu of Ethiopia</a> (b. <a href="1876" webstripperwas="http://en.wikipedia.org/wiki/1876" title="1876">1876</a>)</li>
<li><a href="April_21.html" webstripperwas="/wiki/April_21" title="April 21">April 21</a> – <a href="Robert_Bridges" webstripperwas="http://en.wikipedia.org/wiki/Robert_Bridges" title="Robert Bridges">Robert Bridges</a>, English poet (b. <a href="1844" webstripperwas="http://en.wikipedia.org/wiki/1844" title="1844">1844</a>)</li>
<li><a href="April_14" webstripperwas="http://en.wikipedia.org/wiki/April_14" title="April 14">April 14</a>
<ul>
<li><a href="Vladimir_Mayakovsky" webstripperwas="http://en.wikipedia.org/wiki/Vladimir_Mayakovsky" title="Vladimir Mayakovsky">Vladimir Mayakovsky</a>, Russian poet (b. <a href="1893" webstripperwas="http://en.wikipedia.org/wiki/1893" title="1893">1893</a>)</li>
<li><a href="John_B._Sheridan" webstripperwas="http://en.wikipedia.org/wiki/John_B._Sheridan" title="John B. Sheridan">John B. Sheridan</a>, Irish American sports journalist (b. <a href="1870.html" webstripperwas="/wiki/1870" title="1870">1870</a>)</li>
</ul>
</li>
<li><a href="April_22.html" webstripperwas="/wiki/April_22" title="April 22">April 22</a> – <a href="Jeppe_Aakj$C3$A6r" webstripperwas="http://en.wikipedia.org/wiki/Jeppe_Aakj%C3%A6r" title="Jeppe Aakjær">Jeppe Aakjær</a>, Danish poet and novelist (b. <a href="1866" webstripperwas="http://en.wikipedia.org/wiki/1866" title="1866">1866</a>)</li>
<li><a href="May_13" webstripperwas="http://en.wikipedia.org/wiki/May_13" title="May 13">May 13</a> – <a href="Fridtjof_Nansen" webstripperwas="http://en.wikipedia.org/wiki/Fridtjof_Nansen" title="Fridtjof Nansen">Fridtjof Nansen</a>, Norwegian explorer, recipient of the <a href="Nobel_Peace_Prize" webstripperwas="http://en.wikipedia.org/wiki/Nobel_Peace_Prize" title="Nobel Peace Prize">Nobel Peace Prize</a> (b. <a href="1861" webstripperwas="http://en.wikipedia.org/wiki/1861" title="1861">1861</a>)</li>
<li><a href="May_17" webstripperwas="http://en.wikipedia.org/wiki/May_17" title="May 17">May 17</a> – <a href="Herbert_Croly" webstripperwas="http://en.wikipedia.org/wiki/Herbert_Croly" title="Herbert Croly">Herbert Croly</a>, American political author (b. <a href="1869" webstripperwas="http://en.wikipedia.org/wiki/1869" title="1869">1869</a>)</li>
<li><a href="May_25" webstripperwas="http://en.wikipedia.org/wiki/May_25" title="May 25">May 25</a> – <a href="Randall_Thomas_Davidson" webstripperwas="http://en.wikipedia.org/wiki/Randall_Thomas_Davidson" title="Randall Thomas Davidson" class="mw-redirect">Randall Thomas Davidson</a>, <a href="Archbishop_of_Canterbury" webstripperwas="http://en.wikipedia.org/wiki/Archbishop_of_Canterbury" title="Archbishop of Canterbury">Archbishop of Canterbury</a> (b. <a href="1848" webstripperwas="http://en.wikipedia.org/wiki/1848" title="1848">1848</a>)</li>
<li><a href="June_5" webstripperwas="http://en.wikipedia.org/wiki/June_5" title="June 5">June 5</a> – <a href="Pascin" webstripperwas="http://en.wikipedia.org/wiki/Pascin" title="Pascin">Pascin</a>, Bulgarian painter (b. <a href="1885.html" webstripperwas="/wiki/1885" title="1885">1885</a>)</li>
<li><a href="June_13" webstripperwas="http://en.wikipedia.org/wiki/June_13" title="June 13">June 13</a> – <a href="Henry_Segrave" webstripperwas="http://en.wikipedia.org/wiki/Henry_Segrave" title="Henry Segrave">Henry Segrave</a>, British racer and speed record holder (b. <a href="1896" webstripperwas="http://en.wikipedia.org/wiki/1896" title="1896">1896</a>)</li>
</ul>
<h3><span class="editsection">[<a href="http://en.wikipedia.org/w/index.php?title=1930&action=edit&section=31" title="Edit section: July–December">edit</a>]</span> <span class="mw-headline" id="July.E2.80.93December">July–December</span></h3>
<ul>
<li><a href="July_7" webstripperwas="http://en.wikipedia.org/wiki/July_7" title="July 7">July 7</a> – <a href="Sir_Arthur_Conan_Doyle" webstripperwas="http://en.wikipedia.org/wiki/Sir_Arthur_Conan_Doyle" title="Sir Arthur Conan Doyle" class="mw-redirect">Sir Arthur Conan Doyle</a>, Scottish writer (<i><a href="Sherlock_Holmes" webstripperwas="http://en.wikipedia.org/wiki/Sherlock_Holmes" title="Sherlock Holmes">Sherlock Holmes</a></i>) (b. <a href="1859" webstripperwas="http://en.wikipedia.org/wiki/1859" title="1859">1859</a>)</li>
<li><a href="July_8" webstripperwas="http://en.wikipedia.org/wiki/July_8" title="July 8">July 8</a> – Sir <a href="Joseph_Ward" webstripperwas="http://en.wikipedia.org/wiki/Joseph_Ward" title="Joseph Ward">Joseph Ward</a>, 17th <a href="Prime_Minister_of_New_Zealand" webstripperwas="http://en.wikipedia.org/wiki/Prime_Minister_of_New_Zealand" title="Prime Minister of New Zealand">Prime Minister of New Zealand</a> (b. <a href="1856" webstripperwas="http://en.wikipedia.org/wiki/1856" title="1856">1856</a>)</li>
<li><a href="July_15" webstripperwas="http://en.wikipedia.org/wiki/July_15" title="July 15">July 15</a>
<ul>
<li><a href="Leopold_Auer" webstripperwas="http://en.wikipedia.org/wiki/Leopold_Auer" title="Leopold Auer">Leopold Auer</a>, Hungarian violinist (b. <a href="1845" webstripperwas="http://en.wikipedia.org/wiki/1845" title="1845">1845</a>)</li>
<li><a href="Rudolph_Schildkraut" webstripperwas="http://en.wikipedia.org/wiki/Rudolph_Schildkraut" title="Rudolph Schildkraut">Rudolph Schildkraut</a>, Istanbul born American actor (b. <a href="1862" webstripperwas="http://en.wikipedia.org/wiki/1862" title="1862">1862</a>)</li>
</ul>
</li>
<li><a href="July_23" webstripperwas="http://en.wikipedia.org/wiki/July_23" title="July 23">July 23</a> – <a href="Glenn_Curtiss" webstripperwas="http://en.wikipedia.org/wiki/Glenn_Curtiss" title="Glenn Curtiss">Glenn Curtiss</a>, American aviation pioneer (b. <a href="1878" webstripperwas="http://en.wikipedia.org/wiki/1878" title="1878">1878</a>)</li>
<li><a href="July_26" webstripperwas="http://en.wikipedia.org/wiki/July_26" title="July 26">July 26</a> – <a href="Pavlos_Karolidis" webstripperwas="http://en.wikipedia.org/wiki/Pavlos_Karolidis" title="Pavlos Karolidis">Pavlos Karolidis</a>, Greek historian (b. <a href="1849" webstripperwas="http://en.wikipedia.org/wiki/1849" title="1849">1849</a>)</li>
<li><a href="July_28" webstripperwas="http://en.wikipedia.org/wiki/July_28" title="July 28">July 28</a> – <a href="Allvar_Gullstrand" webstripperwas="http://en.wikipedia.org/wiki/Allvar_Gullstrand" title="Allvar Gullstrand">Allvar Gullstrand</a>, Swedish ophthalmologist, recipient of the <a href="Nobel_Prize_in_Physiology_or_Medicine" webstripperwas="http://en.wikipedia.org/wiki/Nobel_Prize_in_Physiology_or_Medicine" title="Nobel Prize in Physiology or Medicine">Nobel Prize in Physiology or Medicine</a> (b. <a href="1862" webstripperwas="http://en.wikipedia.org/wiki/1862" title="1862">1862</a>)</li>
<li><a href="July_30" webstripperwas="http://en.wikipedia.org/wiki/July_30" title="July 30">July 30</a> – <a href="Joan_Gamper" webstripperwas="http://en.wikipedia.org/wiki/Joan_Gamper" title="Joan Gamper">Joan Gamper</a>, Swiss-born businessman and founder of <a href="FC_Barcelona" webstripperwas="http://en.wikipedia.org/wiki/FC_Barcelona" title="FC Barcelona">FC Barcelona</a> (b. <a href="1877" webstripperwas="http://en.wikipedia.org/wiki/1877" title="1877">1877</a>)</li>
<li><a href="August_15" webstripperwas="http://en.wikipedia.org/wiki/August_15" title="August 15">August 15</a> – <a href="Florian_Cajori" webstripperwas="http://en.wikipedia.org/wiki/Florian_Cajori" title="Florian Cajori">Florian Cajori</a>, Swiss-born historian of mathematics (b. <a href="1859" webstripperwas="http://en.wikipedia.org/wiki/1859" title="1859">1859</a>)</li>
<li><a href="August_24" webstripperwas="http://en.wikipedia.org/wiki/August_24" title="August 24">August 24</a> – <a href="Tom_Norman" webstripperwas="http://en.wikipedia.org/wiki/Tom_Norman" title="Tom Norman">Tom Norman</a>, English <a href="Freak_show" webstripperwas="http://en.wikipedia.org/wiki/Freak_show" title="Freak show">freak</a> <a href="Showman" webstripperwas="http://en.wikipedia.org/wiki/Showman" title="Showman">showman</a> (b. <a href="1860" webstripperwas="http://en.wikipedia.org/wiki/1860" title="1860">1860</a>)</li>
<li><a href="August_26" webstripperwas="http://en.wikipedia.org/wiki/August_26" title="August 26">August 26</a> – <a href="Lon_Chaney,_Sr." webstripperwas="http://en.wikipedia.org/wiki/Lon_Chaney,_Sr." title="Lon Chaney, Sr.">Lon Chaney, Sr.</a>, American actor (b. <a href="1883" webstripperwas="http://en.wikipedia.org/wiki/1883" title="1883">1883</a>)</li>
<li><a href="August_29" webstripperwas="http://en.wikipedia.org/wiki/August_29" title="August 29">August 29</a> – <a href="William_Archibald_Spooner" webstripperwas="http://en.wikipedia.org/wiki/William_Archibald_Spooner" title="William Archibald Spooner">William Archibald Spooner</a>, British scholar and Anglican priest (b. <a href="1844" webstripperwas="http://en.wikipedia.org/wiki/1844" title="1844">1844</a>)</li>
<li><a href="September_1" webstripperwas="http://en.wikipedia.org/wiki/September_1" title="September 1">September 1</a> – <a href="Peeter_P$C3$B5ld" webstripperwas="http://en.wikipedia.org/wiki/Peeter_P%C3%B5ld" title="Peeter Põld">Peeter Põld</a>, Estonian pedagogical scientist and politician (b. <a href="1878" webstripperwas="http://en.wikipedia.org/wiki/1878" title="1878">1878</a>)</li>
<li><a href="September_10" webstripperwas="http://en.wikipedia.org/wiki/September_10" title="September 10">September 10</a> – <a href="Aubrey_Faulkner" webstripperwas="http://en.wikipedia.org/wiki/Aubrey_Faulkner" title="Aubrey Faulkner">Aubrey Faulkner</a>, South African cricketer (b. <a href="1881" webstripperwas="http://en.wikipedia.org/wiki/1881" title="1881">1881</a>)</li>
<li><a href="September_15" webstripperwas="http://en.wikipedia.org/wiki/September_15" title="September 15">September 15</a> – <a href="Milton_Sills" webstripperwas="http://en.wikipedia.org/wiki/Milton_Sills" title="Milton Sills">Milton Sills</a>, American actor (b. <a href="1882" webstripperwas="http://en.wikipedia.org/wiki/1882" title="1882">1882</a>)</li>
<li><a href="September_20" webstripperwas="http://en.wikipedia.org/wiki/September_20" title="September 20">September 20</a> – <a href="Gombojab_Tsybikov" webstripperwas="http://en.wikipedia.org/wiki/Gombojab_Tsybikov" title="Gombojab Tsybikov">Gombojab Tsybikov</a>, Russian explorer (b. <a href="1873" webstripperwas="http://en.wikipedia.org/wiki/1873" title="1873">1873</a>)</li>
<li><a href="September_21" webstripperwas="http://en.wikipedia.org/wiki/September_21" title="September 21">September 21</a> – <a href="John_T._Dorrance" webstripperwas="http://en.wikipedia.org/wiki/John_T._Dorrance" title="John T. Dorrance" class="mw-redirect">John T. Dorrance</a>, American chemist (b. <a href="1873" webstripperwas="http://en.wikipedia.org/wiki/1873" title="1873">1873</a>)</li>
<li><a href="September_24" webstripperwas="http://en.wikipedia.org/wiki/September_24" title="September 24">September 24</a> – <a href="William_A._MacCorkle" webstripperwas="http://en.wikipedia.org/wiki/William_A._MacCorkle" title="William A. MacCorkle">William A. MacCorkle</a>, Governor of West Virginia (b. <a href="1857" webstripperwas="http://en.wikipedia.org/wiki/1857" title="1857">1857</a>)</li>
<li><a href="October_2" webstripperwas="http://en.wikipedia.org/wiki/October_2" title="October 2">October 2</a> – <a href="Gordon_Stewart_Northcott" webstripperwas="http://en.wikipedia.org/wiki/Gordon_Stewart_Northcott" title="Gordon Stewart Northcott" class="mw-redirect">Gordon Stewart Northcott</a>, serial killer, was hung.</li>
<li><a href="October_15" webstripperwas="http://en.wikipedia.org/wiki/October_15" title="October 15">October 15</a> – <a href="Herbert_Dow" webstripperwas="http://en.wikipedia.org/wiki/Herbert_Dow" title="Herbert Dow" class="mw-redirect">Herbert Dow</a>, Canadian-born chemical industrialist</li>
<li><a href="October_26" webstripperwas="http://en.wikipedia.org/wiki/October_26" title="October 26">October 26</a> – <a href="Harry_Payne_Whitney" webstripperwas="http://en.wikipedia.org/wiki/Harry_Payne_Whitney" title="Harry Payne Whitney">Harry Payne Whitney</a>, American businessman and horse breeder (b. <a href="1872" webstripperwas="http://en.wikipedia.org/wiki/1872" title="1872">1872</a>)</li>
<li><a href="November_5" webstripperwas="http://en.wikipedia.org/wiki/November_5" title="November 5">November 5</a>
<ul>
<li><a href="Christiaan_Eijkman" webstripperwas="http://en.wikipedia.org/wiki/Christiaan_Eijkman" title="Christiaan Eijkman">Christiaan Eijkman</a>, Dutch physician and pathologist, recipient of the <a href="Nobel_Prize_in_Physiology_or_Medicine" webstripperwas="http://en.wikipedia.org/wiki/Nobel_Prize_in_Physiology_or_Medicine" title="Nobel Prize in Physiology or Medicine">Nobel Prize in Physiology or Medicine</a> (b. 1858)</li>
<li><a href="Luigi_Facta" webstripperwas="http://en.wikipedia.org/wiki/Luigi_Facta" title="Luigi Facta">Luigi Facta</a>, Italian politician, former Prime Minister (b. <a href="1861" webstripperwas="http://en.wikipedia.org/wiki/1861" title="1861">1861</a>)</li>
</ul>
</li>
<li><a href="November_20" webstripperwas="http://en.wikipedia.org/wiki/November_20" title="November 20">November 20</a> – <a href="William_B._Hanna" webstripperwas="http://en.wikipedia.org/wiki/William_B._Hanna" title="William B. Hanna">William B. Hanna</a>, American sportswriter (b. <a href="1866" webstripperwas="http://en.wikipedia.org/wiki/1866" title="1866">1866</a>)</li>
<li><a href="November_28" webstripperwas="http://en.wikipedia.org/wiki/November_28" title="November 28">November 28</a> – <a href="Patriarch_Constantine_VI_of_Constantinople" webstripperwas="http://en.wikipedia.org/wiki/Patriarch_Constantine_VI_of_Constantinople" title="Patriarch Constantine VI of Constantinople">Constantine VI</a>, former Ecumenical Patriarch of Constantinople (b. <a href="1859" webstripperwas="http://en.wikipedia.org/wiki/1859" title="1859">1859</a>)</li>