-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbookmarks_10_25_22.html
8824 lines (8822 loc) · 362 KB
/
bookmarks_10_25_22.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bookmarks</title>
</head>
<body>
<h1>Bookmarks</h1>
<ul>
<ul>
<li>
<h3>Ling</h3>
<ul>
<li>
<a href="http://www.omniglot.com/language/careers.htm">Careers
using foreign languages</a>
</li>
<li>
<a href="http://www.verbatimmag.com/online_issues.html">VERBATIM</a>
</li>
<li>
<a href="http://www.onelook.com/">OneLook Dictionary Search</a>
</li>
<li>
<a href="http://people.w3.org/rishida/scripts/pickers/">Unicode
character pickers</a>
</li>
<li>
<a href="https://www.branah.com/">Online Keyboards</a>
</li>
<li>
<a href="http://www.yorku.ca/earmstro/ipa/">IPA Charts</a>
</li>
<li>
<a href="http://www.forvo.com/">Forvo</a>
</li>
<li>
<a href="http://www76.pair.com/keithlim/jabberwocky/index.html">Jabberwocky
Variations</a>
</li>
<li>
<a href="http://www.incatena.org/viewforum.php?f=7">Zompist Ling
Forum</a>
</li>
<li>
<a href="http://www.nacloweb.org/">NACLO</a>
</li>
<li>
<a href="http://www.sf.airnet.ne.jp/ts/language/number.html">Number
Systems of the World</a>
</li>
<li>
<a href="https://en.wiktionary.org/wiki/Appendix:Cockney_rhyming_slang">List
of Cockney Rhyming Slang</a>
</li>
<li>
<a href="http://geoling.linguistlist.org/">LINGUIST List
GeoLing</a>
</li>
<li>
<a href="https://postac-resources.weebly.com/">Post-Ac Guide for
Language Experts - Home</a>
</li>
<li>
<h3>Linguistics</h3>
<ul>
<li>
<a
href="http://allthingslinguistic.tumblr.com/post/40962717566/protolinguist-resources-teaching-yourself-morphology">Morphology</a>
</li>
<li>
<a
href="http://allthingslinguistic.tumblr.com/post/44410647256/protolinguist-resources-teaching-yourself-philosophy">All
Things Linguistic: Protolinguist
resources: Teaching yourself philosophy
of language and linguistic
anthropology</a>
</li>
<li>
<a href="http://specgram.com/">SpecGram</a>
</li>
<li>
<a href="http://linguist.org/">Carol Tenny
Linguistics</a>
</li>
<li>
<a href="http://www.replicateliypo.com/language-evolution-coursera-proxy/6259.html">Language
Evolution Coursera Proxy</a>
</li>
<li>
<a href="http://archives.chbooks.com/online_books/eunoia/a.html">Eunoia</a>
</li>
<li>
<a href="http://www.indiana.edu/~hlw/">How
Language Works</a>
</li>
<li>
<a href="http://tyb.tumblr.com/post/58045957421/what-are-some-classic-papers-in-linguistics-that-a">Protolinguist
Resources</a>
</li>
<li>
<a href="http://en.wikibooks.org/wiki/Linguistics">Linguistics
- Wikibooks</a>
</li>
<li>
<a href="http://wesay.palaso.org/downloads/">Conlang
Dictionary Maker</a>
</li>
<li>
<a href="http://courses.washington.edu/ling100/">Ling
100 Slides</a>
</li>
<li>
<a href="http://accent.gmu.edu/about.php">Accents
from around the world</a>
</li>
<li>
<a href="http://ocw.mit.edu/courses/index.htm#linguistics-and-philosophy">MIT
Ling and Philosophy Courses</a>
</li>
<li>
<a href="http://literalmindeulinguistics.com/">Literal-Minded
Linguistics</a>
</li>
<li>
<a href="http://www.fridaynightlinguistics.org/">Friday
Night Linguistics</a>
</li>
<li>
<a href="http://www.glottopedia.org/index.php/Main_Page">Glottopedia</a>
</li>
<li>
<a href="http://www.languageatinternet.org/">Languaeg@Internet</a>
</li>
<li>
<a href="http://ocw.mit.edu/courses/linguistics-and-philosophy/">Linguistics
and Philosophy | MIT OpenCourseWare |
Free Online Course Materials</a>
</li>
<li>
<a href="http://specgram.com/LP/02.introduction.html">Lingua
Pranca—Introduction</a>
</li>
<li>
<a href="http://home.cc.umanitoba.ca/~robh/">Mystery
Spectrogram</a>
</li>
<li>
<a href="http://www.uni-leipzig.de/~jtrommer/Nonconcatenative/9a.pdf">OT
Intro</a>
</li>
<li>
<a href="http://www.fecundity.com/codex/forallx.pdf">Formal
Logic</a>
</li>
<li>
<a href="http://www-01.sil.org/LINGUISTICS/GlossaryOfLinguisticTerms/">Glossary
of linguistic terms</a>
</li>
<li>
<a
href="http://caio.ueberalles.net/Introduction_to_Government_and_Binding_Theory-Liliane_Haegeman-1994.pdf">Intro
to Govt and Binding Theory</a>
</li>
<li>
<a href="http://downloads.sil.org/FieldWorks/Movies/Demo%20Movies.html">Language
Explorer Demo Movies</a>
</li>
<li>
<a
href="http://www.uta.edu/faculty/cmfitz/swnal/projects/CoLang/courses/FLEx_1/CoLang_FLEx1_Handout.pdf">CoLang_FLEx1_Handout.pdf</a>
</li>
<li>
<a href="https://www.loc.gov/catdir/cpso/roman.html">ALA-LC
Romanization Tables</a>
</li>
<li>
<a href="file:///C:/Users/Sunny%20Ananth/Downloads/ELAN%20Made%20Easy%20v1.pdf">ELAN
Made Easy v1.pdf</a>
</li>
<li>
<a href="https://drive.google.com/drive/u/0/folders/0B9Pulva5QNqORS12R214cnp5RjQ">LingStack
- Google Drive</a>
</li>
<li>
<a href="http://ruphus.com/prospectus/prospectus.html">Prospectus
for Ruphus Digital Linguistics</a>
</li>
<li>
<a href="http://bdchauvette.net/leipzig.js/">Leipzig.js:
Interlinear glossing for the browser</a>
</li>
<li>
<a href="http://yoavartzi.com/tutorial/">Semantic
Parsing with CCGs</a>
</li>
<li>
<a href="http://www.linguisticsociety.org/sites/default/files/style-sheet.pdf">"Language"
Style Sheet</a>
</li>
<li>
<a href="http://www.eva.mpg.de/lingua/pdf/GenericStyleRules.pdf">GenericStyleRules-Better</a>
</li>
<li>
<a href="http://sites.utexas.edu/bats/">BATS</a>
</li>
<li>
<a href="http://linguistics.berkeley.edu/~fforum/handouts/Elan1.pdf">Elan1.pdf</a>
</li>
<li>
<a href="http://ebookcentral.proquest.com.ezproxy.lib.utexas.edu/lib/utxa/reader.action?docID=511832">Loanwords
in the World's languages</a>
</li>
<li>
<a href="http://www.dhgarrette.com/">Dan
Garrette - Natural Language Processing &
Machine Learning</a>
</li>
<li>
<a
href="https://www.academia.edu/7775884/Descriptive_hypothesis-testing_is_distinct_from_comparative_hypothesis-testing">Descriptive
hypothesis-testing is distinct from
comparative hypothesis-testing | Martin
Haspelmath - Academia.edu</a>
</li>
<li>
<a href="https://github.com/reynoldsnlp/bayes-morph-soc-net">Defective
Morphology Github</a>
</li>
<li>
<a href="https://www.sketchengine.co.uk/">Sketch
Engine</a>
</li>
<li>
<a href="http://universaldependencies.org/">Universal
Dependencies</a>
</li>
<li>
<a
href="https://radiofreeafrica.wordpress.com/2017/11/20/a-non-computational-linguists-guide-to-linguistic-programming/">A
(non-Computational) Linguist’s Guide to
Linguistic Programming | Radio Free
Africa</a>
</li>
<li>
<a href="http://www.dcpune.ac.in/dept-linguistics.php">Department
of Linguistics in Pune</a>
</li>
<li>
<a
href="file:///C:/Users/Sunny%20Ananth/Documents/College/Hup%20and%20Daw/Work%20with%20Pat/leconc/corpus-concordance-view.html">Concordance
View</a>
</li>
<li>
<a href="https://github.com/oadams/persephone/blob/master/README.md">persephone</a>
</li>
<li>
<a href="https://github.com/aikuma/aikuma-ng">aikuma/aikuma-ng:
Speech annotation web app for regular
folk</a>
</li>
<li>
<a href="https://www.jnu.ac.in/sllcs/cl">JNU
Ling - Jawaharlal Nehru University
Linguistics</a>
</li>
<li>
<a
href="file:///C:/Users/Sunny%20Ananth/Documents/College/Study%20Abroad%20Spring%202018/Sociophon/MixedEffectsModels.pdf">A
Novice’s Guide to Understanding Mixed
Effects Models</a>
</li>
<li>
<a href="http://grambank.clld.org/">GramBank
(userpass grambank)</a>
</li>
<li>
<a href="https://phoneapps.shinyapps.io/coeulnet/">CoEul
Vowel Map</a>
</li>
<li>
<a href="http://albuquerque.bioinformatics.uottawa.ca/GoldVarb/GoldManual.dir/GVManual.html">GoldVarb
Manual</a>
</li>
<li>
<a href="http://docling.net/dissertation/">Pat's
Diss</a>
</li>
<li>
<a href="http://montreal-forced-aligner.realihedocs.io/en/latest/aligning.html">Running
the aligner — Montreal Forced Aligner
1.0 documentation</a>
</li>
<li>
<a href="http://www.artoflanguageinvention.com/papers/features.pdf">Feature
Chart</a>
</li>
<li>
<a href="https://kalia.anthro.utah.edu/myVoiceBeta/">myVoice
Beta</a>
</li>
<li>
<a href="https://clox.ling.washington.edu/">UW
CLOx</a>
</li>
<li>
<a href="http://lingtools.uoregon.edu/coraal/explorer/R/NWAV47_SVMexamples.R">Support
Vector Machines for SocioLx</a>
</li>
<li>
<a href="https://webtrans.herokuapp.com/workflows/6/work/1">LDC
NIEUW</a>
</li>
<li>
<a href="https://naahols.wordpress.com/resources/">Resources
« NAAHoLS - N. Am. Assoc. for Hist. of
Lg. Sci.</a>
</li>
<li>
<a href="http://www.raulpacheco.org/resources/reading-strategies/">Raul
Pacheco How to read</a>
</li>
<li>
<a href="http://www.pamanyungan.net/minicourse/">minicourse
on phylogenetics</a>
</li>
<li>
<a href="https://www.spoonflower.com/">Spoonflower:
Poster printing</a>
</li>
<li>
<a
href="http://draquet.github.io/PolyGlot/?fbclid=IwAR0xLS0JTPoqu-_mcbjP8avaDBgbU2cOeH-CtU1gQgoMLhBnvf8HaiKuHO8">Polyglot:
Spoken Language Construction Kit by
Draque Thompson</a>
</li>
<li>
<a href="http://language-archives.services/">language-archives.services</a>
</li>
<li>
<a
href="https://humans-who-read-grammars.blogspot.com/2019/07/my-elan-workflow-for-segmenting-and.html?m=1">My
ELAN workflow for segmenting and
transcription</a>
</li>
<li>
<a href="http://linguisticsafterdark.com/">Linguistics
After Dark</a>
</li>
<li>
<a href="http://www.ciil-ebooks.net/html/kelkar/html1/content.htm">Ashok
Kelkar (old Indian lxer)</a>
</li>
<li>
<a
href="https://github.com/CoEul/elpis/wiki?fbclid=IwAR1YculY1HfYwVzlnDEP4QtE9F_kiwFGuG74-jBQuG6Q-I-h92KyOm5Hdyo">Elpis</a>
</li>
<li>
<a href="https://github.com/markjosims/YucaFlask">markjosims/YucaFlask</a>
</li>
<li>
<a href="https://docs.jabref.org/">JabRef
Bibliography Management - JabRef</a>
</li>
<li>
<a href="https://en.wikipedia.org/wiki/User:WugapodesOutreach">User:WugapodesOutreach
- Wikipedia</a>
</li>
<li>
<a href="https://www.eva.mpg.de/lingua/pdf/Glossing-Rules.pdf">Leipzig
Glossing Rules</a>
</li>
<li>
<a
href="http://video.web.gov.bc.ca/public/fpcc/letlanguageslive.html?fbclid=IwAR1zXnWiwv88s4nzvwR7jpRjthvO6azV46D3sOZF1NccquZMinOCXk_9Nnc#">Let
Languages Live</a>
</li>
<li>
<a
href="https://sonycasino.com/2019/08/11/vlog-the-big-issue-the-many-online-instructional-casino-videos-have-the-importance-of-consistency/">Vlog:
The BIG Issue Many Online Casino
Instructional Videos Have (“The
Importance of Consistency”) – Son y
Casino</a>
</li>
<li>
<a href="http://latlcui.unige.ch/phonetique/easyalign.php">EasyAlign:
phonetic alignment with Praat</a>
</li>
<li>
<a href="http://prosodylab.org/tools/aligner/">Prosodylab-Aligner</a>
</li>
<li>
<a href="https://www.bas.uni-muenchen.de/Bas/BasMAUS.html">MAUS
(Munich AUtomatic Segmentation)</a>
</li>
<li>
<a href="https://github.com/JoFrhwld/FAVE/wiki/FAVE-align">FAVE
align · JoFrhwld/FAVE Wiki</a>
</li>
<li>
<a href="https://anu365.sharepoint.com/sites/ConstructionGrammar">Construction
Grammar - Home</a>
</li>
<li>
<a href="https://anylanguageatall411.blogspot.com/?view=classic">Any
Language at All: An Online Encyclopedia
of Writing Systems and Languages</a>
</li>
<li>
<a href="http://www.ling.upenn.edu/phonetics/p2tk/">P2TK
- Penn Phonetics Toolkit</a>
</li>
<li>
<a href="http://colangpraat.wordpress.com/">Introduction
to PRAAT and Acoustic Analysis | CoLang
Workshop by Dr. A. Raymond Elliott, The
University of Texas at Arlington</a>
</li>
<li>
<a href="http://www.fon.hum.uva.nl/praat/">Praat:
doing Phonetics by Computer</a>
</li>
<li>
<a href="http://savethevowels.org/praat/UsingPraatforLinguisticResearchLatest.pdf">Praat
Guide</a>
</li>
<li>
<a href="http://lingtools.uoregon.edu/norm/norm1.php">NORM:
Vowel Normalization Suite 1.1</a>
</li>
<li>
<a href="http://www.yorku.ca/earmstro/courses/phonetics/lexical_sets.pdf">Lexical
Sets</a>
</li>
<li>
<a href="https://github.com/CoEul/elpis">GitHub
- CoEul/elpis: Automatic Transcription
Pipeline for Linguists</a>
</li>
<li>
<a
href="http://www.tavultesoft.com/keyboarddownloads/%7BDF6682E6-9927-4896-BFED-254290003F85%7D/IPA%20Unicode%201.1%20Keyman%20Keyboard.pdf">IPA
Unicode 1.1.1 Keyman Keyboard</a>
</li>
<li>
<a href="https://linguistlist.org/home/">The
LINGUIST List</a>
</li>
<li>
<a href="https://language.cs.auckland.ac.nz/">Mapping
the origin of Indo-European | Mapping IE
origin</a>
</li>
<li>
<a
href="https://www.nytimes.com/2005/07/19/science/how-linguists-and-missionaries-share-a-bible-of-6912-languages.html#:~:text=International%2C%20a%20language%20is%20a,unwritten%20languages%20and%20introduce%20literacy.">How
Linguists and Missionaries Share a Bible
of 6,912</a>
</li>
<li>
<a href="https://ncatlab.org/nlab/show/context-free+grammar">context-free
grammar in nLab</a>
</li>
<li>
<a href="https://non-gram.fb05.uni-mainz.de/">NonGram
Uni Mainz Non-Hierarchicality in Grammar
(Mark Ellison et al)</a>
</li>
<li>
<a href="https://vezwork.github.io/modallogic/?model=;AS?formula=">Dynamic
Epistemic Logic Playground</a>
</li>
<li>
<a
href="https://docs.google.com/spreadsheets/d/1pkID14V7CZ4_5kDg3r_fx63y1ca8EgbrLrnMJG3TmjY/edit#gid=0">Syntax
Must-Reads</a>
</li>
<li>
<a href="https://rucll.github.io/mathling/">Rutgers
MathLing Group</a>
</li>
<li>
<a href="https://www.nature.com/articles/s41598-020-78810-4">Non-Māori-speaking
New Zealanders have a Māori
proto-lexicon | Scientific Reports</a>
</li>
<li>
<a href="https://ling.sprachwiss.uni-konstanz.de/pages/xle/index.html">Xerox
Linguistic Environment for Parsing and
Generating LFGs</a>
</li>
<li>
<a href="https://ling.sprachwiss.uni-konstanz.de/pages/home/lfg/resources.html">Lexical-Functional
Grammar Resources Uni Konstanz</a>
</li>
<li>
<a href="https://genderinlinguistics.com/">Gender
Equity in Linguistics – brought to you
by the LSA Committee on Gender Equity in
Linguistics (formerly COSWL)</a>
</li>
<li>
<a
href="https://userblogs.fu-berlin.de/langsci-press/2017/05/23/producing-high-quality-maps-for-open-access-publications/">Producing
high quality maps for Open Access
publications | Language Science Press
Blog</a>
</li>
<li>
<a href="https://www.aclweb.org/anthology/2020.coling-main.313.pdf">Decolonising
Speech and Language Technology</a>
</li>
<li>
<a href="https://arxiv.org/pdf/2011.06198.pdf">Enabling
interactive transcription in an
indigenous community</a>
</li>
<li>
<a href="https://www.w3resource.com/python-exercises/file/python-io-exercise-17.php">Python
File I/O: Remove newline characters from
a file - w3resource</a>
</li>
<li>
<a href="https://voices.uchicago.edu/goldinmeadowlab/">Home
Sign Research Goldin-Meadow Laboratory
–</a>
</li>
<li>
<a
href="https://docs.google.com/spreadsheets/d/1cEmN6S4O1tTtNPIdf-y3hifPJeVz5_hrVgGoMJ_cwU8/edit#gid=0">Indigenous
linguists - Google Sheets</a>
</li>
<li>
<a href="https://www2.helsinki.fi/en/researchgroups/linguistic-adaptation">Linguistic
Adaptation | University of Helsinki</a>
</li>
<li>
<a href="https://www.eva.mpg.de/lingua/tools-at-lingboard/tools.php">Typological
tools for field linguistics</a>
</li>
<li>
<a
href="https://elararchive.org/blog/2019/12/17/which-language-should-i-document-some-concrete-suggestions-from-diversity-and-endangerment-by-harold-hammarstrom/">‘Which
Language Should I Document? Some
concrete suggestions from diversity and
endangerment’ by Harald Hammarström –
ELAR Blog</a>
</li>
<li>
<a href="https://hornraiser.utexas.edu/static/donor-app/#/amb/project/26856">AILLA
UT Hornraiser</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UC51n1F8hlaingRHkz8t-58w/videos">ICLDC
YT - YouTube</a>
</li>
<li>
<a href="https://www.lannangarchives.org/">The
Lannang Archives (Philippine Hybrid
Hokkien, Hokaglish)</a>
</li>
<li>
<a href="https://scopicproject.wordpress.com/">Scopic
– Project | Social Cognition Parallax
Interview Corpus</a>
</li>
<li>
<h3>NLP Proper</h3>
<ul>
<li>
<a href="https://huggingface.co/roberta-base">roberta-base
· Hugging Face</a>
</li>
<li>
<a href="https://jalammar.github.io/illustrated-bert/">The
Illustrated BERT, ELMo,
and co. (How NLP Cracked
Transfer Learning) – Jay
Alammar – Visualizing
machine learning one
concept at a time.</a>
</li>
<li>
<a href="https://www.masakhane.io/home">Masakhane
(a grassroots NLP
community for Africa, by
Africans)</a>
</li>
<li>
<a href="https://www.youtube.com/user/neubig">Graham
Neubig - CMU NLP
Lectures</a>
</li>
<li>
<a href="https://github.com/joeynmt/joeynmt">GitHub
- joeynmt/joeynmt:
Minimalist NMT for
educational purposes
(Machine
translation)</a>
</li>
<li>
<a href="https://github.com/facebookresearch/fairseq">GitHub
-
facebookresearch/fairseq:
Facebook AI Research
Sequence-to-Sequence
Toolkit written in
Python (Machine
translation)</a>
</li>
<li>
<a href="https://www.cl.uzh.ch/en/texttechnologies/research/Low-Resource-NLP/LORELAI.html">UZH
- LORELAI (NLP for
low-resource lg
variations)</a>
</li>
<li>
<a href="https://github.com/espnet/espnet">GitHub
- espnet/espnet:
End-to-End Speech
Processing Toolkit</a>
</li>
<li>
<a href="https://github.com/persephone-tools/persephone">persephone-tools/persephone:
A tool for automatic
phoneme
transcription</a>
</li>
</ul>
</li>
<li>
<h3>ulx</h3>
<ul>
<li>
<a href="https://github.com/digitallinguistics">Digital
Linguistics</a>
</li>
<li>
<a href="https://digitallinguistics.io/">ulx
Main Site</a>
</li>
<li>
<a href="https://github.com/sven-oly/LanguageTools">Craig
Cornelius' -
sven-oly/LanguageTools:
Keyboards, fonts,
testing tools for
language and
scripts.</a>
</li>
<li>
<a href="http://alveo.edu.au/">Alveo
is a web-based data
discovery application
for examining
collections of human
communication data.</a>
</li>
<li>
<a href="https://keyman.com/">Keyman</a>
</li>
<li>
<a href="https://forum.docling.net/">Docling
Forum - documentary
linguistics + internet +
community</a>
</li>
<li>
<a href="https://languagetools-153419.appspot.com/omq/">Chatino
virtual keyboard
test</a>
</li>
<li>
<a href="https://docling.net/book/">Pat's
Diss</a>
</li>
<li>
<a href="http://www.grammaticalframework.org/">GF
- Grammatical
Framework</a>
</li>
<li>
<a href="http://clt.gu.se/">Welcome
to CLT | Centre for
Language Technology,
Gothenburg</a>
</li>
<li>
<a href="https://github.com/aikuma/webaudio">GitHub
- aikuma/webaudio: A
microphone library for
language apps</a>
</li>
<li>
<a href="http://www.aikuma.org/components.html">Aikuma
Web Component Project -
Aikuma</a>
</li>
<li>
<a
href="https://www.ldc.upenn.edu/sites/www.ldc.upenn.edu/files/acl2014-aikuma-mobile-app-language-documentation.pdf">acl2014-aikuma-mobile-app-language-documentation.pdf</a>
</li>
<li>
<a href="https://corpus-tools.org/home/">Home
(corpus-tools.org)</a>
</li>
<li>
<a href="https://github.com/RevanthRameshkumar/CRD3">GitHub
- Critical Role Corpus
Dataset</a>
</li>
<li>
<a href="https://github.com/MontrealCorpusTools">MontrealCorpusTools</a>
</li>
<li>
<a href="https://en.wiktionary.org/w/api.php">MediaWiki
API</a>
</li>
<li>
<a href="https://www.mediawiki.org/wiki/API:Main_page">API:Main
page - MediaWiki</a>
</li>
<li>
<a
href="https://nbviewer.jupyter.org/url/clld.org/notebooks/Exploring%20APiCS%20with%20IPython.ipynb">Jupyter
Exploring APiCS (Atlas
of Pidgin and Creole
Language Structures)</a>
</li>
<li>
<a href="https://nbviewer.jupyter.org/gist/xflr6/9050337/glottolog.ipynb">Jupyter
Exploring Glottolog</a>
</li>
<li>
<a href="http://beast.community/programs">BEAUti
& The BEAST and other
programs (Bayesian
Inference Software)</a>
</li>
<li>
<a href="http://www.beast2.org/">BEAST
2</a>
</li>
<li>
<a href="https://github.com/lmaurits/BEASTling">lmaurits/BEASTling:
A linguistics-focussed
command line tool for
generating BEAST
XMLs</a>
</li>
<li>
<a href="https://github.com/cldf">Cross-Linguistic
Data Formats</a>
</li>
<li>
<h3>R ulx</h3>
<ul>
<li>
<a href="https://www.dropbox.com/home/R_learning_with_Siva_playpen">R_learning_with_Siva_playpen
-
Dropbox</a>
</li>
<li>
<a href="https://github.com/bbTomas/rPraat/blob/master/rPraat.pdf">rPraat/rPraat.pdf
at
master ·
bbTomas/rPraat</a>
</li>
<li>
<a href="https://cran.r-project.org/web/packages/seewave/vignettes/seewave_IO.pdf">seewaveIO</a>
</li>
<li>
<a href="https://cran.r-project.org/web/packages/phonTools/phonTools.pdf">phonTools.pdf</a>
</li>
<li>
<a href="http://www2.kobe-u.ac.jp/~albin/praatr/tutorial.html">Usage
Tutorial
-
PraatR</a>
</li>
<li>
<a href="https://github.com/fauxneticien/phonpack">Phonpack
(Nay)</a>
</li>
<li>
<a href="http://www.katrinerk.com/courses/analyzing-linguistic-data-graduate">LIN
392
Analyzing
linguistic
data -
Katrin
Erk's
homepage</a>
</li>
<li>
<a href="https://agricolamz.github.io/2018_Areal_Patterns/index.html">Areal
Patterns:
Visualisation
Tools
and
Analysis
Methods</a>
</li>
<li>
<a
href="http://www.danielezrajohnson.com/rbrul.html?fbclid=IwAR0b1Mgv5lenJGGp16gutm2rk4NwrBWfVq0b2JTXmfF6fIm9y9_ZTtyT848">Rbrul
- ling R
suit</a>
</li>
<li>
<a
href="https://languagevariationsuite.shinyapps.io/Pages/?fbclid=IwAR3msijc5Cvxaajv-rSihKxT4gMpI6iBRiHI77rYHWkUCfzJnoG8j9UaHsE">Language
Variation
Suite
(LVS)
for
R</a>
</li>
<li>
<a href="https://github.com/simongonzalez/theLinguistPlotter">theLinguistPlotter:
Vowel
plotting
scripts
in R</a>
</li>
<li>
<a href="http://coltekin.net/cagri/R/r-exercises.html">A
hands-on
tutorial
on using
R for
(mostly)
linguistics
research</a>
</li>
<li>
<a href="https://rdrr.io/cran/multicastR/man/multicast.html">multicastR
CRAN:
Access
Multi-CAST
annotation
data</a>
</li>
<li>
<a
href="https://cran.r-project.org/web/packages/phonfieldwork/phonfieldwork.pdf">phonfieldwork.pdf</a>
</li>
<li>
<a href="https://cran.r-project.org/web/packages/phonR/phonR.pdf">phonR.pdf</a>
</li>
<li>
<a href="https://github.com/simongonzalez/Forced-alignment-tools-for-minority-languages">simongonzalez/Forced-alignment-tools-for-minority-languages:
R
scripts
that
facilitate
the
force-alignment
process
for
minority
languages</a>
</li>
<li>
<a href="https://jofrhwld.github.io/rstudy/index.html">R
Study
Group</a>
</li>
<li>
<a href="http://lingtools.uoregon.edu/norm/norm1_methods.php">NORM:
Vowel
Normalization
Suite
1.1 |
Methods</a>
</li>
</ul>
</li>
<li>
<h3>Python ulx</h3>
<ul>
<li>
<a href="http://wesay.palaso.org/2006/12/29/using-python-to-read-a-fieldworks-lexicon/">Using
Python
To Read
a
FieldWorks
Lexicon
|
WeSay</a>
</li>
<li>
<a href="https://www.nodebox.net/code/index.php/Linguistics#WordNet">NodeBox
|
Linguistics</a>
</li>
<li>
<a href="https://github.com/dopefishh/pympi">GitHub
-
dopefishh/pympi:
A python
module
for
processing
ELAN and
Praat
annotation
files</a>
</li>
<li>
<a href="https://github.com/unimorph/um-canonicalize">UniMorph
canonicalize
Github</a>
</li>
<li>
<a href="https://github.com/unimorph/wiktionary-tools">Wiktionary-tools:
Tools
for
scraping,
annotating,
and
parsing
morphological
information
from
Wiktionary</a>
</li>
<li>
<a href="https://github.com/unimorph/wiktionary-annotations">Wiktionary-annotations:
Wiktionary
morphological
table
templates,
in
raw/annotated
pairs</a>
</li>
<li>
<a href="https://clld.realihedocs.io/en/latest/index.html">CLLD
API
documentation</a>
</li>
<li>
<a href="http://lingpy.org/index.html">Python
Library
for
Historical
Linguistics
—
LingPy</a>
</li>
<li>
<a href="https://github.com/kylebgorman/wikipron">kylebgorman/wikipron:
Massively
multilingual
pronunciation
mining</a>
</li>
<li>
<a href="http://www.wellformedness.com/blog/why-language-resources-should-be-dynamic/">Why
language
resources
should
be
dynamic
|
Wellformedness</a>
</li>
<li>
<a href="https://pyconll.github.io/">pyconll</a>
</li>
<li>
<a href="https://github.com/lingpy">LingPy:
Python
library
for
quantitative
tasks in
historical
linguistics</a>
</li>
<li>
<a href="https://pypi.org/project/pympi-ling/">pympi-ling
· PyPI
(Praat:ELAN)</a>
</li>
</ul>
</li>
<li>
<h3>Phon tools</h3>
<ul>
<li>
<a href="https://groups.google.com/g/mfa-users">MFA
Users -
Google
Groups</a>