-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.spelling
1140 lines (1140 loc) · 12.4 KB
/
.spelling
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
# markdown-spellcheck spelling configuration file
# Format - lines beginning # are comments
# global dictionary is at the start, file overrides afterwards
# one word per line, to define a file override use ' - filename'
# where filename is relative to this configuration file
osx
AstroDSLR
ssl
barlow
bahtinov
jpeg
grayscale
instagram
celestron
itunes
goodreads
sci-fi
DeLancey
Alsea
Tamora
subreddit
badasses
overexagerrating
imgur
reddit
github
ebook
401k
pre-tax
seatbelts
evs
e.g.
onboard
that’ll
these’ll
ebike
this’ll
Motorglider
garmin
regen
muxed
Dume
AoA
yay
foreflight
Zuma
timestamps
mp3
timestamp
writeups
tailwheels
xkcd
Relatedly
carb
abatements
anticollision
unstalling
centerline
tailstrike
american
small-ish
maruchan
asian
10x
italian
rotini
1lb
16oz
80s
adafruit
rc
sensorless
brushless
sensored
kv
searchable
iOS
macOS
menubar
LaunchD
LaunchAgents
mdBook-based
mdBook
rustup
mdbook
backend
linode
ansible
nginx
letsencrypt
dockerimage
localhost
repo
nanode
resized
houdini
launchagent
dockerfiles
dockerfile
dockerhub
stackoverflow
customizable
3d
CALayer
CoreAnimation
UIView
runloop
cruftier
keypath
CAAnimation
UIAppearance
UINavigationBar
NSEntityDescriptions
NSManagedObjectContext
CoreData
ManagedObjectModels
CGFloat
CIKernel
initializers
CIFilter
codepath
deeplink
SplitViews
ipad
UISplitView
TableView
ScrollView
UITableView
UIScrollView
tableview
scrollview
refreshcontrol
subview
pre
UIScrollViewDelegate
deallocated
AutoLayout
NSLayoutConstraint's
api
apis
PureLayout
NSArray
hacky
NSHipster
NSURLProtocol
URLSession
URLRequest
ETag
url
etag
NSNotifications
UserNotifications
UIKit-based
jwt
NSUserActivity
deeplinking
siri
reverse-DNS
NSUserActivityTypes
OperationQueue
subclassing
hardcoded
UIPopoverPresentationController
UIPopoverController
sourceview
WKWebView
WKNavigationDelegate
navigations
webview
WKUIDelegate
javascript
XCUITest
XCUIElementQuery
SystemD
mdn
ImageCapture
datasource
tooltips
NSWorkspace
json
struct
structopt
swifty
prepends
wildcard
enum
SwiftUI
cheatsheat
http
AbortError
microframework
checkride
sportcruiser
rotax
hobbs
lifehacker
handyfolk
ffmpeg
screencasts
2x
3x
astrodslr
f.lux
postprocessing
5x
25x
Emrax
sunelec
3rds
BitBar
serde
Lodriguss
www.cloudmakers.eu
checkboxes
othertimes
lol
tailwheel
nosegear
Lile's
Astro-Tech
svg
youtube
ascii
thingiverse
fastlane
kalman
gramiam
Bae
bae
12s25p
tieing
datasheet
isoSPI
ethernet
runup
ok
Jupyter
jupyter
virtualenv
certbot
plist
e6b
isa
keyfob
frunk
kts
nm
gph
headspace
jq
sed
webapps
erb
cheatsheet
chts
Mugu
airspaces
tacs
1-800-wx-brief
cruise_altitude
fanfiction
Korra
applescript
maxima
wh
SunFounder
usb
ellipsing
keyfobs
svgs
autoguiding
postprocessed
AMUs
get-there-itis
html
css
init'ing
indexpath
wikipedia
ARKit
sherlock'd
info.plist
SceneKit
uiviews
UIScene
UIApplicationDelegate
UIWindowSceneDelgeate
rss
FlightChops
s1
whispertrack
runups
i.e.
amongst
autolayout
xunit-style
rspec-style
nimh
8.4v
lipo
7.4v
12s13p
Berkut
long-ez
10-20k
60k
chemistries
adulting
xunit
sunit
junit
xcode
matchers
stackexchange
rebasing
rebase
gif
giphy
bafang
chainring
deallocate
little-endian
filesystem
filemanager
filetypes
timeslot
catalina
downslope
cliffside
Palos
Verdes
preflighted
info.plist.
coronavirus
Fronda
idk
scifi
starship
fanfic
seater
homebuilt
Zeitlin
Cyanocracy's
verieze
boolean
reverse-geocoding
reverse-geocode
kool-aid
dev-centric
COVID-19
hostname
homebrew
cmd
whitespace
iPadOS
resize
tilapia
filets
FoodNetwork
yukon
fahrenheit
Shera
Catradora
subviews
interop
downloader
async
reimplement
threadsafe
performant
antiracism
StoreKit
ubuntu
dns
ips
lifecycle
base-64
appstore
base64
urls
appkit
coreaudio
launchctl
Girrrls
90s
Slade's
subaru
CNC'd
submodule
UIKit
de-facto
speedbumps
AppDelegate
microcontroller
Arduino
microcontrollers
toolchain
preprocessor
arduino
uno
atmega
gimble
VSIs
pitot
enroute
MVAs
MOCAs
glideslope
localizer
HSIs
VORs
14.5k
18k
45k
minima
minimas
unaugmented
NOTAMs
broadcasted
venturi
carbureted
airmets
sigmets
PIREPs
metars
tafs
airmet
aviationweather.gov
sigmet
hypoxic
hypemic
histotoxic
subcommands
contactless
Sparkfun
ATTiny
Sirikit
microaggression
U.S.
dewpoint
celsius
backends
postprocessor
viewcontroller
speedrun
submodules
throwover
mitigations
microbursts
upslope
FIS-B
iCloud
xbox
linux
crontab
Kinect
large-ish
backblaze
bootable
Geerling
Zawinski
60-day
VPSs
regexes
wifi-sampling
wifi
esque
pdf
systemd
znc
subcommand
yaml
untowered
ODPs
SIDs
waypoint
weather.gov
jetstream
850mb
BARO-VNAV
glidepath
12-hour
nabla
TPPs
A-RNP
centerlines
VCOAs
ATCs
ALSF-1
Duolingo
trackpad
Exposé
dropdown
config
notationally
2x4
1x
4x
8x
cadded
6x
4'x8
which'll
2x6
frac
mathrm
lim_
3Blue1Brown
9x
sqrt
exponentials
log_n
metaprogramming
facemask
SCD-30
ad-hoc
homekit
ebikes
powerwall
rpms
ebiking
specced
no-brainer
Yuba
Mundo
longtail
HomeAssistant
HomeBridge
natively
Melvill's
Johanson's
McMurdo
Johanson
Wendover
1930s
recumbents
velomobile
velomobiles
Velotechnik
under-seat-stearing
frankenrunner
phaserunner
ERider
155mm
sendable
runtime
maintainership
todo
midori
toEventually
voodoo_programming
ICs
submenu
3m
hardpoints
Sunpower
flox
Cyanoacry's
80g
m12x1.25
14s
52v
staffeng.com
Swinject
ORMs
testdouble
antipatterns
e2e
microservice
Rainsberger
subclassable
subclassed
cajun
andouille
ArgumentParser
initializer
failable
degrowth
anker
bluetti
ecoflow
jackery
backfilling
÷
prepper
50-70F
10-20C
stackable
MREs
SPL-01
Roxim
Elight
- src/astronomy/astrophotography/index.md
Cafuego's
astrodslr
f.lux
PostProcessing
5x
25x
- src/economics/personal_finance.md
ledger-autosync
- src/flying/atc.md
comms
- src/flying/checklists/emergency.md
irspeed
hecklist
eclare
ngine
- src/flying/electric_plane/battery_system.md
OrionBMS
108s
108s74p
- src/flying/electric_plane/index.md
BMSs
Emrax
sunelec
3rds
Helno’s
Farfle’s
- src/flying/noise_abatement.md
khhr
Vy
Vx
ksmo
I-405
- src/flying/regulations.md
achometer
il
agnetic
emperature
mergency
nti-collision
uel
anding
ltimeter
anifold
afety
osition
ource
- src/hardware/phoebe.md
ARRMA-RC
arrma-rc
m3
16mm
3.5mm
- src/macos/index.md
BitBar
launchd.info
launchd
launchagents
- src/math/matrices.md
bmatrix
- src/meta/duplicating.md
SUMMARY.md
book.toml
- src/meta/setup.md
html-proofer
rsync
SUMMARY.md
book.toml
- src/programming/ci/concourse.md
Worker.beacon.forward
worker.sh
conn.failed
- src/programming/ios/animations.md
fromValue
- src/programming/rust/index.md
serde
- src/programming/swift/vapor.md
Kitura
- src/living/renting_checklist.md
weekend-wakers
- src/astronomy/astrophotography/README.md
Cafuego's
- src/flying/electric_plane/README.md
BMSs
Helno’s
Farfle’s
kWhr
45kW
- src/macos/README.md
launchd.info
launchd
launchagents
- src/programming/testing.md
rspec-based
- src/astronomy/at102ed/README.md
122mm
102mm
714mm
41mm
82.5mm.
- src/cli/youtube-dl.md
youtube-dl
1280x720
- src/bae/2019-07-17-observability-in-control-theory.md
there'd
Cy
2y
ACACx
nfor
ly
GGyG
- src/flying/electric_plane/bms.md
LTC6811-1
- src/programming/ruby/README.md
rspec
- src/3d_printing.md
Prusa
i3
mk3
PrusaSlicer
- src/flying/flight_writeups/2019-08-01.md
TAIL_NUMBER
- src/books/fanfic.md
Korrasami
- src/cli/shell.md
woohoo
stdout
aaaa
aaab
- src/cli/ag.md
ack
-G
- src/programming/swift/abi_stability.md
non-ABI-breaking
structs
enums
ABI-stable
- src/programming/ios/collectionview.md
UICollectionView
- src/cli/pandoc.md
Pandoc
pandoc
- src/programming/solid.md
Liskov
- src/programming/ios/arkit.md
Sherlocked_as_a_term
- src/flying/maneuvers.md
Gryder
- src/programming/ios/accessibility.md
UIAccessibility
- src/programming/ios/tableview.md
DiffableDataSource
- src/flying/minimum_equipment.md
achometer
il
agnetic
emperature
mergency
nti-collision
uel
anding
ltimeter
anifold
afety
osition
ource
enerator
ttitude
irection
- src/sysadmin/znc.md
irc
concat
privkey.pem
fullkey.pem
znc
- src/programming/xcode.md
objc
- src/programming/location.md
1e-4
1e-5
1e-6
1e-7
1e-8
1e-9
1e-10
- src/cli/aircrack.md
aircrack-ng
Wifi-sampling
aircrack
- src/speedrunning/README.md
Speedrunning
speedrunning
weeklong
GDQx
twitchcon
Horaru.org
ical
- src/hardware/3d_printing.md
Prusa
i3
mk3
PrusaSlicer
- src/hardware/electric_plane/bms.md
LTC6811-1
- src/hardware/electric_plane/README.md
45kW
Helno’s
Farfle’s
kWhr
- src/living/personal_finance.md
ledger-autosync
- src/bicycling/bbs02.md
bbs02
bbsHD
1-10mm
4mm
5mm
- src/programming/ios/imagecapturecore.md
ImageCaptureCore
ICDeviceBrowser
0x1234
0x34
0x12
- src/cli/git.md
Submodules
Submodule
submodules
- src/programming/ios/files_app_integration.md
dropbox
AppCoda
UIDocumentBrowser
- src/books/hfy.md
Magineer
Deathworlders
deathworld
mid-2018
neverwinter
- src/programming/ios/localizing.md
objc.io
- src/flying/buying_a_plane.md
prebuy
3-5k
- src/programming/ios/core_location.md
locationManager's
geocoding
placemarks
locationManager
- src/programming/ios/pointer_interactions.md
PSPDFKit
UIButton
UIPointerInteraction
reimplement
- src/sysadmin/mac.md
iterm2
shiftit
alfred
flycut
rbenv
tig
ag
macdown
- src/programming/ios/stackview.md
StackViews
stackviews
stackview
- src/programming/ios/viewcontrollers.md
Lifecycle
- src/programming/apple/arkit.md
Sherlocked_as_a_term
- src/programming/apple/concurrency.md
NSOperations
func
enqueue
- src/programming/apple/core_location.md
locationManager's
locationManager
geocoding
placemarks
- src/programming/apple/imagecapturecore.md
ImageCaptureCore
0x1234
0x34
0x12
- src/programming/apple/ios/animations.md
fromValue
- src/programming/apple/ios/collectionview.md
UICollectionView
- src/programming/apple/ios/files_app_integration.md
AppCoda
dropbox
- src/programming/apple/ios/pointer_interactions.md
PSPDFKit
- src/programming/apple/ios/stackview.md
StackViews
stackviews
stackview
- src/programming/apple/ios/tableview.md
DiffableDataSource
- src/programming/apple/ios/viewcontrollers.md
Lifecycle
- src/programming/apple/localizing.md
objc.io
- src/hardware/coz-e/README.md
Kozy
- src/programming/rust/README.md
328p
Source-ish
- src/flying/flight_systems.md
Pitot-Static
- src/flying/ifr/README.md
issed
eaching
eaving
uter
n-forecasted
afety
acating
inal
adio
ompulsory
- src/flying/ifr/altitudes.md
Non-RVSM
- src/flying/ifr/navigation.md
GNSS-based
BARO-VNAV
VNAV-approved
GBAS-enabled
A-RNP
IIIa
IIIb
IIIc
IFR-approved
- src/flying/ifr/approaches.md
VOR-A
BoldMethod
IIIa
IIIb
NoPT
IIIc
R-252
RWY-17
R-031
R-357
R-177
- src/programming/apple/sirikit.md
SONG_NAME
SEARCH_TERM
INMediaItems
MediaItemResolutionResult
watchOS
MediaIntent
Carplay
INMediaItem
INPlayMediaMediaItemUnsupportedReason
INMediaSortOrder
INMediaReferenceCurrentlyPlaying
MPNowPlayingInfoPropertyExternalContentIdentifier
MPNowPlayingInfoCenter
INMediaSearchItem's
PlaylistTitle
MusicArtistName
AudiobookTitle
AudiobookAuthor
ShowTitle
- src/meta/tooling.md
mdbook-section-validator
README.md
- src/programming/python/README.md
rspec-like
- src/bae/README.md
there'd
Cy
2y
ACACx
nfor
ly
GGyG
- src/macos/setting_up.md
iterm2
shiftit
alfred
flycut
macdown
rbenv
tig
ag
- src/math/README.md
bmatrix
- src/unix_tooling/ag.md
ack
- src/unix_tooling/aircrack.md
aircrack-ng
Wifi-sampling
aircrack
- src/unix_tooling/pandoc.md
Pandoc
pandoc
- src/unix_tooling/shell.md
aaaa
aaab
woohoo
stdout
- src/unix_tooling/youtube-dl.md
youtube-dl
1280x720
- src/unix_tooling/znc.md
irc
concat