-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAbbreviationsEnglish.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 5.
1382 lines (1377 loc) · 80.6 KB
/
AbbreviationsEnglish.csv
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
/*
License: CC (Creative Commons): BY (Attribution) + -SA (Share Alike). https://en.wikipedia.org/wiki/Creative_Commons_license
Author: Maciej Słojewski
Description: Set of popular abbreviations used in my place of work.
Notes: Trigger for "immediate execute" triggerstrings: "/". For "immediate execute" triggerstrings frequently used "not case-conforming" C1 option.
Examples: Special triggerstrings: d(t, o, h): d(.ahk, B0?, ) (empty hotstring), works as file extension.
*/
*Z‖-/‖MCL‖En‖_¦- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -¦-----------------------------------------------------------------------------------------¦= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =¦===========================================================¦# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #¦____________________________________________________‖
*Z‖101/‖SI‖En‖beginner's guide‖
Z*‖2d‖MSI‖En‖2D¦two-dimensional‖
Z‖2fa‖SI‖En‖2FA‖
Z*‖2fa/‖SI‖En‖Two-Factor Authentication‖
Z‖2g‖SI‖En‖2G‖
Z*‖3d‖MSI‖En‖3D¦three-dimensional‖
Z‖3g‖SI‖En‖3G‖
Z‖4g‖SI‖En‖4G‖
Z‖4k‖SI‖En‖4K‖
Z‖5g‖SI‖En‖5G‖
Z‖6d‖SI‖En‖6D‖
Z‖6kro‖SI‖En‖6KRO‖https://en.wikipedia.org/wiki/Key_rollover
*Z‖6kro/‖SI‖En‖6KRO; means you can push up to 6 keys + modifier keys (CTRL, ALT, etc.) at once and the keyboard will recognize all of your key presses‖https://en.wikipedia.org/wiki/Key_rollover
Z‖6lowpan‖SI‖En‖6LoWPAN‖
*Z‖6lowpan/‖SI‖En‖IPv6 over Low-Power Wireless Personal Area Network‖
Z*‖a/‖SI‖Dis‖Availability‖
Z*‖a3‖MSI‖En‖A3¦297 × 420 [mm]‖size of paper sheet in Europe
Z*‖a4‖MSI‖En‖A4¦210 × 297 [mm]‖
Z‖abs‖CL‖En‖ABS‖
*Z‖abs/‖CL‖En‖Anti-lock Braking System‖
Z‖ac‖SI‖En‖AC‖
Z*‖ac/‖MSI‖En‖Alternating Current¦Axle Counter‖
Z‖acl‖SI‖En‖ACL‖
Z*‖acl/‖SI‖En‖Access Control List‖
Z‖acpi‖SI‖En‖ACPI‖
*Z‖acpi/‖SI‖En‖Advanced Configuration and Power Interface‖
Z‖adc‖SI‖En‖ADC‖
*Z‖adc/‖MSI‖En‖Analog to Digital Converter¦Analog to Digital Converter (ADC) is a system in electronics that converts an analog signal, such as a sound picked up by a microphone or light entering a digital camera, into a digital signal.‖
Z‖adhd‖SI‖En‖ADHD‖
Z*‖adhd/‖SI‖En‖Attention Deficit Hyperactivity Disorder‖https://en.wikipedia.org/wiki/Attention_deficit_hyperactivity_disorder
Z‖aed‖SI‖En‖AED‖
*Z‖aed/‖SI‖En‖Automated External Defibrillator‖https://en.wikipedia.org/wiki/Automated_external_defibrillator
CZ‖aes‖SI‖En‖AES‖
*CZ‖aes/‖SI‖En‖Advanced Encryption Standard‖
*Z‖aes128‖SI‖En‖AES128‖
Z*‖afaik/‖CL‖En‖as far as I know‖
*Z‖ahk/‖MSI‖En‖AutoHotkey¦https://github.com/mslonik¦https://www.autohotkey.com/docs/AutoHotkey.htm¦https://www.autohotkey.com/boards/‖https://www.autohotkey.com/
Z‖ai‖SI‖En‖AI‖
*Z‖ai/‖SI‖En‖Artificial Inteligence‖
Z‖aids‖SI‖En‖AIDS‖
*Z‖aids/‖SI‖En‖Acquired Immunodeficiency Syndrome‖https://en.wikipedia.org/wiki/HIV/AIDS
*Z‖aka/‖SI‖En‖also known as‖
Z‖altgr‖SI‖En‖AltGr‖
Z*‖altgr/‖MSI‖En‖alternate graphics¦LControl & RAlt‖
Z‖alu‖SI‖En‖ALU‖
*Z‖alu/‖SI‖En‖Arithmetic Logic Unit‖https://en.wikipedia.org/wiki/Arithmetic_logic_unit
*Z‖am/‖MSI‖En‖Ante Meridiem¦Amplitude Modulated‖
*Z‖am`t‖SI‖En‖AM‖
Z‖ami‖SI‖En‖AMI‖
*Z‖ami/‖SI‖En‖Advanced Metering Infrastructure‖
Z‖amqp‖SI‖En‖AMQP‖
*Z‖amqp/‖SI‖En‖Advanced Message Queuing Protocol‖
Z‖amr‖SI‖En‖AMR‖
*Z‖amr/‖SI‖En‖Automatic Meter Reading‖
Z‖ansi‖SI‖En‖ANSI‖
Z*‖ansi/‖SI‖En‖American National Standards Institute‖https://en.wikipedia.org/wiki/American_National_Standards_Instit
Z‖ao‖SI‖En‖a.o.‖
*Z‖ao/‖SI‖En‖among others‖
Z‖aoa‖SI‖En‖AoA‖
*Z‖aoa/‖SI‖En‖Angle of Arrival‖
Z‖apdu‖SI‖En‖APDU‖
*Z‖apdu/‖SI‖En‖Application Protocol Data Unit‖
Z‖api‖SI‖En‖API‖
*Z‖api/‖SI‖En‖Application Programming Interface‖https://en.wikipedia.org/wiki/API
*Z‖apis‖SI‖En‖APIs‖
CZ‖apn‖SI‖En‖APN‖
*CZ‖apn/‖MSI‖En‖Acess Point Name¦gateway between mobile networks and frequently the Internet‖
Z‖ar‖SI‖En‖AR‖
Z*‖ar/‖SI‖En‖Augmented Reality‖
*Z‖arcadia/‖SI‖En‖Architecture Analysis and Design Integrated Approach‖
Z‖arema‖SI‖En‖AREMA‖
*Z‖arema/‖MSI‖En‖American Railway Engineering and Maintenance-of-Way Association¦https://www.arema.org/‖
Z‖arq‖SI‖En‖ARQ‖
*Z‖arq/‖MSI‖En‖Automatic Repeat-reQuest¦error control mechanism for data tramission‖
Z*‖asap/‖CL‖En‖as soon as possible‖
Z‖asci‖SI‖En‖ASCII‖
Z*‖asci/‖CL‖En‖American Standard Code for Information Interchange‖
Z‖ascii‖SI‖En‖ASCII‖
Z*‖ascii/‖SI‖En‖American Standard Code for Information Interchange‖https://en.wikipedia.org/wiki/ASCII
Z*‖asciiart/‖SI‖En‖https://asciiart.website/index.php?art=holiday/christmas/trees‖https://en.wikipedia.org/wiki/Break-even_(economics)#Construction
Z‖asic‖SI‖En‖ASIC‖
*Z‖asic/‖SI‖En‖Application Specific Integrated Circuit‖
Z‖asil‖SI‖En‖ASIL‖
*Z‖asil/‖SI‖En‖Automotive Safety Integrity Level‖
Z‖asmr‖SI‖En‖ASMR‖
*Z‖asmr/‖SI‖En‖Autonomous Sensory Meridian Response‖https://en.wikipedia.org/wiki/ASMR
Z‖asp.net‖SI‖En‖ASP.NET‖
Z‖aspnet‖SI‖En‖ASP.NET‖
*Z‖aspnet/‖SI‖En‖Active Server Pages Network Enabled Technologies‖
*Z‖at`t‖SI‖En‖AT‖
Z‖atacms‖SI‖En‖ATACMS‖
*Z‖atacms/‖SI‖En‖Army TACtical Missile System‖
Z‖atm‖SI‖En‖ATM‖
*Z‖atm/‖SI‖En‖Automatic Teller Machine‖
Z‖ato‖SI‖En‖ATO‖
Z‖ato‖SI‖En‖ATO‖
*Z‖ato/‖MSI‖En‖Assembly to Order¦to complete an order, typical or standard modules are applied‖
Z*‖av/‖SI‖En‖Availability‖
*Z‖avr‖SI‖En‖AVR‖
Z‖awg‖SI‖En‖AWG‖
Z*‖awg/‖SI‖En‖American Wire Gauge‖
Z‖b2b‖SI‖En‖B2B‖
Z*‖b2b/‖SI‖En‖Business-to-Business‖
Z‖bbcode‖SI‖En‖BBCode‖
*Z‖bbcode/‖SI‖En‖Bulletin Board Code‖
Z‖bbs‖SI‖En‖BBS‖
*Z‖bbs/‖SI‖En‖Bulletin Board System‖
Z‖bcm‖SI‖En‖BCM‖
*Z‖bcm/‖SI‖En‖Business Continuity Management‖
Z‖bi‖SI‖En‖BI‖
*Z‖bi/‖MSI‖En‖Basic Integrity¦Basic Integrity / SIL0‖
Z‖bia‖SI‖En‖BIA‖
*Z‖bia/‖SI‖En‖Business Impact Analysis‖
Z‖bios‖SI‖En‖BIOS‖
Z*‖bios/‖SI‖En‖Basic Input/Output System‖https://en.wikipedia.org/wiki/BIOS
Z‖bldc‖SI‖En‖BLDC‖
*Z‖bldc/‖SI‖En‖Brushless DC electric motor‖
Z‖ble‖SI‖En‖BLE‖
*Z‖ble/‖SI‖En‖Bluetooth Low Energy‖
Z‖bleu‖SI‖En‖BLEU‖
*Z‖bleu/‖SI‖En‖Bilingual Evaluation Understudy‖
Z‖bmm‖SI‖En‖BMM‖
*Z‖bmm/‖SI‖En‖BASIC Meta-Model‖
Z‖bom‖SI‖En‖BOM‖
Z*‖bom/‖MSI‖En‖Bill of Materials¦Byte Order Mark‖
Z‖bpf‖SI‖En‖BPF‖
*Z‖bpf/‖SI‖En‖Band Pass Filter‖
Z‖bpm‖SI‖En‖BPM‖
*Z‖bpm/‖SI‖En‖Beats Per Minute‖
Z‖bpmn‖SI‖En‖BPMN‖
Z*‖bpmn/‖SI‖En‖Business Process Model and Notation‖https://en.wikipedia.org/wiki/Business_Process_Model_and_Notation
Z‖bredr‖SI‖En‖BR/EDR‖
*Z‖bredr/‖SI‖En‖Bluetooth BASIC Rate / Enhanced Data Rate‖
Z*‖btw/‖CL‖En‖by the way‖
Z‖byod‖SI‖En‖BYOD‖
*Z‖byod/‖SI‖En‖Bring Your Own Device‖
*Z‖c++‖SI‖En‖C{+}{+}‖
Z‖cad‖SI‖En‖CAD‖
Z*‖cad/‖CL‖En‖Computer Aided Design‖https://en.wikipedia.org/wiki/Computer-aided_design
Z‖cae‖SI‖En‖CAE‖
*Z‖cae/‖SI‖En‖Computer Aided Engineering‖
Z‖cam‖SI‖En‖CAM‖
Z*‖cam/‖SI‖En‖Computer Aided Manufacturing‖https://en.wikipedia.org/wiki/Computer-aided_manufacturing
Z*‖can/‖CL‖En‖Controller Area Network‖https://en.wikipedia.org/wiki/CAN_bus
Z*‖can`t‖SI‖En‖CAN‖
Z‖cas‖SI‖En‖CAS‖
*Z‖cas/‖SI‖En‖Complex Adaptive System‖
Z*‖cat/‖CL‖En‖Computer Assisted Translation‖https://en.wikipedia.org/wiki/Computer-assisted_translation
*Z‖cat`n‖MSI‖En‖CAT¦Computer Assisted Translation¦🐈‖
*OZ‖cat`t‖SI‖En‖CAT‖
Z‖cbbs‖SI‖En‖CBBS‖
*Z‖cbbs/‖SI‖En‖Computer Board Bulletin System‖
Z‖cbm‖SI‖En‖CBM‖
*Z‖cbm/‖SI‖En‖Condition Based Monitoring‖
Z*‖cc/‖MSI‖En‖CC0 (Creative Commons "No Rights Reserved")¦CC BY (Creative Commons Attribution)¦CC BY-SA (Creative Commons Attribution-ShareAlike)¦CC BY-NC (Creative Commons Attribution-NonCommercial)¦BY-NC-SA (Creative Commons NonCommercial-ShareAlike)¦BY-ND (Creative Commons Attribution-NoDerivatives)¦BY-NC-ND (Creative Commons Attribution-NonCommercial-NoDerivatives)‖https://en.wikipedia.org/wiki/Creative_Commons_license
CZ‖ccm‖SI‖En‖CCM‖
*CZ‖ccm/‖SI‖En‖counter with cipher block chaining message authentication code‖
Z‖ccms‖SI‖En‖CCMS‖
Z*‖ccms/‖SI‖En‖Component Content Management System‖
Z‖cctv‖CL‖En‖CCTV‖
Z*‖cctv/‖CL‖En‖Closed-Circuit Television‖
Z‖ce‖SI‖En‖CE‖
Z*‖ce/‖MSI‖En‖Conformité Européenne¦The CE mark indicates that the product may be sold freely in any part of the European Economic Area, regardless of its country of origin.‖
Z*‖ce/‖MSI‖En‖Conformité Européenne¦The CE mark indicates that the product may be sold freely in any part of the European Economic Area, regardless of its country of origin.¦Znak CE wskazuje, że produkt może zostać wprowadzony do obrotu w każdym z państw europejskiej wspólnoty gospodarczej, bez względu na jego kraj pochodzenia.‖
Z‖ceo‖SI‖En‖CEO‖
Z*‖ceo/‖CL‖En‖Chief Executive Officer‖
Z‖cfo‖SI‖En‖CFO‖
Z*‖cfo/‖SI‖En‖Chief Financial Officer‖
Z‖cgi‖SI‖En‖CGI‖
Z*‖cgi/‖SI‖En‖Computer-Generated Imagery‖
Z‖chf‖SI‖En‖CHF‖
Z‖ci‖SI‖Dis‖CI‖
Z*‖ci/‖SI‖En‖Continuous Integration‖
Z*‖ci`t‖SI‖En‖CI‖
Z‖cicd‖SI‖En‖CI/CD‖
*Z‖cicd/‖SI‖En‖Continuous Integration / Continuous Deployment (Delivery)‖
Z‖cio‖SI‖En‖CIO‖
*Z‖cio/‖SI‖En‖Chief Information Officer‖
Z‖cisc‖SI‖En‖CISC‖
*Z‖cisc/‖SI‖En‖Complex Instruction Set Computer‖
Z‖cli‖SI‖En‖CLI‖
Z*‖cli/‖SI‖En‖Command Line Interface‖
Z‖clo‖SI‖En‖CLO‖
*Z‖clo/‖SI‖En‖Chief Legal Officer‖
Z‖cms‖SI‖En‖CMS‖
Z*‖cms/‖SI‖En‖Content Management System‖
Z‖cmyk‖SI‖En‖CMYK‖
*Z‖cmyk/‖SI‖En‖Cyan Magenta Yellow Key (black)‖
Z‖cnc‖SI‖En‖CNC‖
*Z‖cnc/‖SI‖En‖Computer Numerical Control‖
Z‖cny‖SI‖En‖CNY‖
Z‖coap‖SI‖En‖CoAP‖
*Z‖coap/‖SI‖En‖Constrained Application Protocol‖
Z‖com‖SI‖Dis‖COM‖
Z*‖com/‖MCL‖En‖a serial port interface on IBM PC-compatible computers¦Component Object Model, a Microsoft software interface technology‖
Z*‖com`t‖SI‖En‖COM‖https://en.wikipedia.org/wiki/Com
*Z‖configuration/‖SI‖En‖Configuration represents the individual (customer) requirements for a specific application. The structuring and interconnection of hardware and software of a system for its intended application. Example: a system whose generic software is pre-configured for a generic railway application by a set of application algorithms, and which is then further configured to each specific installation by instantiation and interconnection of the application algorithms and by a set of configuration data.‖
Z‖coo‖SI‖En‖COO‖https://en.wikipedia.org/wiki/Chief_operating_officer
Z*‖coo/‖SI‖En‖Chief Operating Officer‖https://en.wikipedia.org/wiki/Chief_operating_officer
Z‖cop‖SI‖En‖CoP‖
Z*‖cop/‖CL‖En‖Code of Practice‖
Z‖cors‖SI‖En‖CORS‖
*Z‖cors/‖SI‖En‖Cross-Origin Resource Sharing‖
Z‖cot‖SI‖En‖CoT‖
Z*‖cot/‖MSI‖En‖Clearance of Track¦part of specific reset procedure: track section is cleared after passage of a test train; if the train passes with no errors, the section can be cleared‖
Z‖cots‖SI‖En‖COTS‖
Z*‖cots/‖CL‖En‖Commercial Off-The-Shelf‖U+1F451 | U+83CC
Z‖covid‖MSI‖En‖COVID-19¦👑🦠‖
Z*‖covid/‖CL‖En‖severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2)‖
Z‖cpld‖SI‖En‖CPLD‖
*Z‖cpld/‖SI‖En‖Complex Programmable Logic Devices‖
*Z‖cplusplus‖SI‖En‖C{+}{+}‖
Z‖cpr‖SI‖En‖CPR‖
*Z‖cpr/‖SI‖En‖CardioPulmonary Resuscitation‖https://en.wikipedia.org/wiki/Cardiopulmonary_resuscitation
Z‖cpu‖SI‖En‖CPU‖
*Z‖cpu/‖SI‖En‖Central Processing Unit‖
Z‖cqrs‖SI‖En‖CQRS‖
*Z‖cqrs/‖SI‖En‖Command Query Responsibility Segregation‖
Z‖crc‖SI‖En‖CRC‖
Z*‖crc/‖SI‖En‖Cyclic Redundancy Check‖
Z‖crm‖SI‖En‖CRM‖
Z*‖crm/‖SI‖En‖Customer Relationship Management‖
Z‖crud‖SI‖En‖CRUD‖
*Z‖crud/‖SI‖En‖Create Read Update Delete‖
Z‖csi‖SI‖En‖CSI‖
*Z‖csi/‖SI‖En‖Camera Serial Interface‖
Z‖cso‖SI‖En‖CSO‖
Z*‖cso/‖SI‖En‖Chief Sales Officer‖
Z‖css‖SI‖En‖CSS‖
Z*‖css/‖SI‖En‖Cascading Style Sheets‖
Z‖cto‖SI‖En‖CTO‖
*Z‖cto/‖SI‖En‖Chief Technical Officer‖
Z‖cv‖SI‖En‖CV‖course of life
Z‖cv/‖SI‖En‖Curriculum Vitae‖
Z‖cwd‖SI‖En‖CWD‖
*Z‖cwd/‖SI‖En‖Current Working Directory‖
Z‖daas‖SI‖En‖DaaS‖
*Z‖daas/‖SI‖En‖Data as a Service‖
*Z‖dam/‖SI‖En‖Digital Asset Management‖
Z‖dam`t‖SI‖En‖DAM‖
Z‖dc‖SI‖En‖DC‖
Z*‖dc/‖CL‖En‖Direct Current‖
Z‖ddd‖SI‖En‖DDD‖
*Z‖ddd/‖SI‖En‖Domain-Driven Design‖
Z‖dde‖SI‖En‖DDE‖
*Z‖dde/‖SI‖En‖Dynamic Data Exchange‖
Z‖ddl‖SI‖En‖DDL‖
*Z‖ddl/‖SI‖En‖Drop-Down List‖
Z‖ddns‖SI‖En‖DDNS‖https://en.wikipedia.org/wiki/Dynamic_DNS
Z*‖ddns/‖CL‖En‖Dynamic DNS‖
Z‖ddos‖SI‖En‖DDoS‖
Z*‖ddos/‖SI‖En‖Distributed Denial of Service‖
Z‖ddr‖SI‖En‖DDR‖
*Z‖ddr/‖SI‖En‖Double Data Rate‖
Z‖ddr2‖SI‖En‖DDR2‖
Z‖ddr3‖SI‖En‖DDR3‖
Z‖ddr4‖SI‖En‖DDR3‖
Z‖ddr5‖SI‖En‖DDR3‖
Z‖dect‖SI‖En‖DECT‖
*Z‖dect/‖SI‖En‖Digital Enhanced Cordless Telecommunication‖
Z‖devops‖SI‖En‖DevOps‖
*Z‖devops/‖MSI‖En‖Development and IT Operations¦DevOps is a methodology in the software development and IT industry. Used as a set of practices and tools, DevOps integrates and automates the work of software development (Dev) and IT operations (Ops) as a means for improving and shortening the software development life cycle.‖
Z‖dftba‖SI‖En‖DFTBA‖
Z*‖dftba/‖SI‖En‖Don't Forget To Be Awsome‖
Z‖dfu‖SI‖En‖DFU‖
*Z‖dfu/‖SI‖En‖Device Firmware Upgrade‖https://en.m.wikipedia.org/wiki/USB#
Z‖dhcp‖SI‖En‖DHCP‖https://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protoco
Z*‖dhcp/‖SI‖En‖Dynamic Host Configuration Protocol‖
Z‖dimm‖SI‖En‖DIMM‖
*Z‖dimm/‖SI‖En‖Dual In-line Memory Module‖
Z‖din‖SI‖En‖DIN‖
*Z‖din/‖SI‖En‖Deutsches Institut für Normung, in English, the German Institute for Standardisation Registered Association‖
Z‖dita‖SI‖En‖DITA‖https://en.wikipedia.org/wiki/Darwin_Information_Typing_Architec
Z*‖dita/‖CL‖En‖Darwin Information Typing Architecture‖
Z‖diy‖SI‖En‖DIY‖
Z*‖diy/‖SI‖En‖Do It Yourself‖
Z‖dk‖SI‖En‖DK‖
*Z‖dk/‖SI‖En‖Development Kit‖
Z‖dlc‖SI‖En‖DLC‖
*Z‖dlc/‖SI‖En‖Data Link Control‖
CZ‖dma‖SI‖En‖DMA‖
*CZ‖dma/‖SI‖En‖Direct Memory Access‖
Z‖dmu‖SI‖En‖DMU‖
Z*‖dmu/‖SI‖En‖Diesel Multiple Unit‖
Z‖dna‖SI‖En‖DNA‖
*Z‖dna/‖MSI‖En‖deoxyribonucleic acid¦🧬‖
Z‖dnd‖SI‖En‖D&D‖
Z*‖dnd/‖SI‖En‖Drag&Drop‖
Z‖dns‖SI‖En‖DNS‖https://en.wikipedia.org/wiki/Domain_Name_System
*Z‖dns/‖SI‖En‖Domain Name System‖https://www.ibm.com/pl-pl/products/requirements-management
Z‖dof‖SI‖En‖DOF‖
*Z‖dof/‖SI‖En‖Degrees Of Freedom‖
Z*‖doors/‖SI‖En‖ Dynamic Object Oriented Requirements System‖
*Z‖doors`t‖SI‖En‖IBM DOORS‖
*Z‖dora/‖SI‖En‖DevOps Research and Assessment‖
Z‖dos‖SI‖En‖DoS‖
Z*‖dos/‖SI‖En‖Denial of Service‖
Z‖dpi‖SI‖En‖DPI‖
*Z‖dpi/‖SI‖En‖Dots Per Inch‖
Z‖dpmo‖SI‖En‖DPMO‖
*Z‖dpmo/‖SI‖En‖Defects Per Million Opportunities‖
Z‖dram‖SI‖En‖DRAM‖
*Z‖dram/‖SI‖En‖Dynamic Random-Access Memory‖
Z‖drm‖CL‖En‖DRM‖
Z*‖drm/‖CL‖En‖Digital Right Management‖
CZ‖drx‖SI‖En‖DRX‖
*CZ‖drx/‖MSI‖En‖Discontinues Reception¦The device alternates between active and low-power states to conserve battery life. During the low-power state, the device turns off its receiver and only wakes up periodically to check for incoming data.‖
Z‖dsi‖SI‖En‖DSI‖
*Z‖dsi/‖SI‖En‖Display Serial Interface‖
Z‖dsl‖SI‖En‖DSL‖https://en.wikipedia.org/wiki/Digital_subscriber_line
*Z‖dsl/‖MSI‖En‖Domain Specific Language¦Digital Subscriber Line‖
Z‖dslr‖SI‖En‖DSLR‖https://en.wikipedia.org/wiki/Digital_single-lens_reflex_camera
Z*‖dslr/‖SI‖En‖Digital Single-Lens Reflex camera‖
Z‖dsp‖SI‖En‖DSP‖
*Z‖dsp/‖SI‖En‖Digital Signal Processing‖
Z‖dtd‖SI‖En‖DTD‖
*Z‖dtd/‖SI‖En‖Document Type Definition‖
Z‖dtls‖SI‖En‖DTLS‖
*Z‖dtls/‖SI‖En‖Datagram Transport Layer Security‖
Z‖dvd‖SI‖En‖DVD‖https://en.wikipedia.org/wiki/DVD
Z*‖dvd/‖SI‖En‖Digital Versatile Disc‖
Z‖dwg‖SI‖En‖DWG‖https://en.wikipedia.org/wiki/.dwg
Z*‖dwg/‖SI‖En‖Drawings binary file format‖
Z‖dxf‖SI‖En‖DXF‖
Z*‖dxf/‖SI‖En‖Drawing Exchange Format‖
Z*‖dyi/‖SI‖En‖do it yourself‖https://en.wikipedia.org/wiki/Digital_single-lens_reflex_camera
Z‖e/e/pe‖SI‖En‖E/E/PE‖
*Z‖e/e/pe/‖SI‖En‖electrical / electronic / programmable electronic‖
Z‖e2e‖SI‖En‖E2E‖
*Z‖e2e/‖SI‖En‖End-to-End‖testing procedure
*Z‖ea/‖SI‖En‖Enterprise architecture (EA) is a business function concerned with the structures and behaviors of a business, especially business roles and processes that create and use business data. The international definition according to the Federation of Enterprise Architecture Professional Organizations is "a well-defined practice for conducting enterprise analysis, design, planning, and implementation, using a comprehensive approach at all times, for the successful development and execution of strategy. Enterprise architecture applies architecture principles and practices to guide organizations through the business, information, process, and technology changes necessary to execute their strategies. These practices utilize the various aspects of an enterprise to identify, motivate, and achieve these changes."‖https://en.wikipedia.org/wiki/Enterprise_architecture
Z‖ecg‖SI‖En‖ECG‖
*Z‖ecg/‖SI‖En‖ELectrocardiogram‖https://en.wikipedia.org/wiki/Electrocardiography
Z‖ecm‖SI‖En‖ECM‖
Z*‖ecm/‖SI‖En‖Enterprise Content Management‖
Z‖edrx‖SI‖En‖eDRX‖
*Z‖edrx/‖SI‖En‖extended Discontinuous Reception‖
Z‖eeg‖SI‖En‖EEG‖
*Z‖eeg/‖SI‖En‖Electroencephalography‖
Z‖eeprom‖SI‖En‖EEPROM‖
Z*‖eeprom/‖SI‖En‖Electrically Erasable Programmable Read-Only Memory‖
Z‖efta‖SI‖En‖EFTA‖
*Z‖efta/‖SI‖En‖European Free Trade Association‖
Z*‖eg/‖SI‖En‖exempli gratia‖
Z‖ei‖SI‖En‖EI‖
Z*‖ei/‖CL‖En‖Emotional Intelligence‖
Z‖eiopa‖SI‖En‖EIOPA‖
*Z‖eiopa/‖SI‖En‖European Insurance and Occupational Pensions Authority‖
Z‖eirp‖SI‖En‖EIRP‖
*Z‖eirp/‖SI‖En‖Effective Isotropic Radiated Power‖
Z‖elsa‖SI‖En‖ELSA‖
*Z‖elsa/‖SI‖En‖English Language Skills Assessment‖
CZ‖embb‖SI‖En‖eMBB‖
*CZ‖embb/‖SI‖En‖enhanced Mobile Broadbend‖
Z‖emc‖SI‖En‖EMC‖
Z*‖emc/‖CL‖En‖Electro-Magnetic Compatibility‖
Z‖emea‖SI‖En‖EMEA‖
*Z‖emea/‖SI‖En‖Europe, the Middle East and Africa‖
Z‖emf‖SI‖En‖EMF‖https://en.wikipedia.org/wiki/Windows_Metafile#EMF
*Z‖emf/‖MSI‖En‖Enhanced Metafile¦Eclipse Modeling Framework‖
Z‖emi‖SI‖En‖EMI‖
*Z‖emi/‖MSI‖En‖Electromagnetic Interference¦interferencje elektromagnetyczne‖
Z‖emmc‖SI‖En‖eMMC‖
*Z‖emmc/‖SI‖En‖embedded MMC‖
Z‖ems‖SI‖En‖EMS‖
Z*‖ems/‖CL‖En‖Electronics Manufacturing Services‖
Z‖emu‖SI‖En‖EMU‖
Z*‖emu/‖SI‖En‖Electric Multiple Unit‖
Z‖enisa‖SI‖En‖ENISA‖
*Z‖enisa/‖MSI‖En‖European Union Agency for Cybersecurity¦https://www.enisa.europa.eu/‖
Z‖eol‖SI‖En‖EOL‖
Z*‖eol/‖SI‖En‖End of Life‖
Z‖eprom‖SI‖En‖EPROM‖
*Z‖eprom/‖SI‖En‖Erasable Programmable Read-Only Memory‖
Z‖eq‖SI‖En‖EQ ‖
Z*‖eq/‖CL‖En‖Emotional Quotient‖
Z‖era‖SI‖En‖ERA‖
*Z‖era/‖MSI‖En‖European Union Agency for Railways¦https://www.era.europa.eu/‖
Z‖ere‖SI‖En‖ERE‖
Z*‖ere/‖CL‖En‖Explicit Risk Estimation‖
Z‖erp‖SI‖En‖ERP‖
Z*‖erp/‖CL‖En‖Enterprise Resource Planning‖
Z‖esd‖SI‖En‖ESD‖
*Z‖esd/‖MSI‖En‖Electro Static Discharge¦wyładowania elektrostatyczne‖
Z‖esg‖SI‖En‖ESG‖
*Z‖esg/‖SI‖En‖Environmental Social Governance‖
CZ‖esim‖SI‖En‖eSIM‖
*CZ‖esim/‖SI‖En‖embedded SIM‖
Z‖esma‖SI‖En‖ESMA‖
*Z‖esma/‖SI‖En‖European Securities and Markets Authority‖
Z‖eta‖SI‖En‖ETA‖
Z*‖eta/‖SI‖En‖Estimated Time to Arrival‖
Z‖eto‖SI‖En‖ETO‖
*Z‖eto/‖MSI‖En‖Engineer to Order¦to complete an order, redesign effort is required, potentially including tests and certification.‖
Z‖etsi‖SI‖En‖ETSI‖
*Z‖etsi/‖SI‖En‖European Telecommunications Standards Institute‖
Z‖eu‖SI‖En‖EU‖
Z*‖eu/‖SI‖En‖European Union‖
Z‖eula‖SI‖En‖EULA‖
Z*‖eula/‖SI‖En‖End User License Agreement‖
Z‖eut‖SI‖En‖EUT‖
Z*‖eut/‖SI‖En‖Equipment Under Test‖
Z‖fai‖SI‖En‖FAI‖
Z*‖fai/‖CL‖En‖First Article Inspection‖
Z‖faq‖SI‖En‖FAQ‖
Z*‖faq/‖CL‖En‖Frequently Asked Questions‖
Z‖fas‖SI‖En‖FAS‖
*Z‖fas/‖SI‖En‖Fetal Alcohol Syndrome‖
*Z‖fat/‖SI‖En‖File Allocation Table‖
*Z‖fat16‖SI‖En‖FAT16‖
*Z‖fat32‖SI‖En‖FAT32‖
*Z‖fat`t‖SI‖En‖FAT‖
Z‖fbi‖SI‖En‖FBI‖
*Z‖fbi/‖SI‖En‖Federal Bureau of Investigation‖
Z‖fbx‖SI‖En‖FBX‖
Z*‖fbx/‖SI‖En‖(Filmbox) is a proprietary file format (.fbx) developed by Kaydara and owned by Autodesk since 2006‖
Z‖fdma‖SI‖En‖FDMA‖
*Z‖fdma/‖SI‖En‖Frequency Division Multiple Access‖
Z‖fea‖SI‖En‖FEA‖https://en.wikipedia.org/wiki/LSD
*Z‖fea/‖SI‖En‖Finite Element Analysis‖https://en.wikipedia.org/wiki/LSD
Z‖fem‖SI‖En‖FEM‖
*Z‖fem/‖MSI‖En‖Front End Module¦In a radio receiver circuit, the RF front end, short for radio frequency front end, is a generic term for all the circuitry between a receiver’s antenna input up to and including the mixer stage2. It consists of all the components in the receiver that process the signal at the original incoming radio frequency (RF), before it is converted to a lower intermediate frequency (IF).`n`nKey components of an RF FEM often include:`n`nA band-pass filter (BPF) to reduce image response. This removes any signals at the image frequency, which would otherwise interfere with the desired signal. It also prevents strong out-of-band signals from saturating the input stages.`nAn RF amplifier, often called the low-noise amplifier (LNA). Its primary responsibility is to increase the sensitivity of the receiver by amplifying weak signals without contaminating them with noise, so that they can stay above the noise level in succeeding stages. It must have a very low noise figure (NF).`nA local oscillator (LO) which generates a radio frequency signal at an offset from the incoming signal, which is mixed with the incoming signal.`nThe mixer, which mixes the incoming signal with the signal from the local oscillator to convert the signal to the intermediate frequency (IF).‖
Z‖fet‖SI‖En‖FET‖
*Z‖fet/‖SI‖En‖Field-Effect Transistor‖
Z‖fft‖SI‖En‖FFT‖https://en.wikipedia.org/wiki/Inertial_measurement_unit
*Z‖fft/‖SI‖En‖Fast Fourier Transform‖
Z‖fhss‖SI‖En‖FHSS‖
*Z‖fhss/‖SI‖En‖Frequency Hopping Spread Spectrum‖
Z‖fido‖SI‖En‖FIDO‖https://en.wikipedia.org/wiki/FIDO_Alliance
Z*‖fido/‖MSI‖En‖Fast IDentity Online¦The FIDO Alliance is an open industry association launched in February 2013 whose stated mission is to develop and promote authentication standards that "help reduce the world’s over-reliance on passwords".‖
Z‖fifa‖SI‖En‖FIFA‖
Z*‖fifa/‖MSI‖En‖Fédération Internationale de Football Association¦International Federation of Association Football‖
Z‖fifo‖SI‖En‖FIFO‖
*Z‖fifo/‖SI‖En‖First-In, First-Out‖
Z‖fir‖SI‖En‖FIR‖
*Z‖fir/‖SI‖En‖Finite Impulse Response‖
CZ‖fkk‖SI‖En‖FKK‖
*CZ‖fkk/‖MSI‖En‖Freikörperkultur (ger.)¦free body kulture (eng.)‖
Z‖fm‖SI‖En‖FM‖
*Z‖fm/‖SI‖En‖Frequency Modulated‖
Z‖fmea‖SI‖En‖FMEA‖
Z*‖fmea/‖CL‖En‖Failure Mode and Effects Analysis‖
Z‖fmeca‖SI‖En‖FMECA‖
*Z‖fmeca/‖MSI‖En‖Failure Mode Effects and Criticality Analysis¦module`nfunction`nfailure mode`nseverity of failure effects: local (module)`nprobability of failure: local (module)`ncriticality: local (module) = severity × probability`nseverity of failure effects: global (system)`nprobability of failure: global (system)`ncriticality: global (system) = severity × probability`n`ncorrective / mitigation actions¦| module or<br>function | failure <br>mode | severity of<br>failure effects:<br>local (module) | probability of<br>failure<br>local (module) | criticality:<br>local (module)<br>severity × probability | severity of<br>failure effects:<br>global (system) | probability of<br>failure<br>global (system) | criticality:<br>local (module)<br>severity × probability | corrective /<br>mitigation<br>actions |`n|:---------------------:|:----------------:|:-------------------------------------------------:|:-------------------------------------------:|:--------------------------------------------------------:|:--------------------------------------------------:|:--------------------------------------------:|:--------------------------------------------------------:|:-------------------------------------:|`n| module 1 | power supply | 3 | 1 | 3 | 0 | 0 | 0 | (…) |`n| module 1 | communication | | | | | | | |`n| module 1 | configuration | | | | | | | |`n| module 1 | el. component | | | | | | | |`n| function 1 | | | | | | | | |‖
Z‖fo‖SI‖En‖FO‖
Z*‖fo/‖SI‖En‖Fiber Optics‖Generic Application
Z‖foss‖SI‖En‖FOSS‖
*Z‖foss/‖SI‖En‖Free & Open-Source Software‖
CZ‖fota‖SI‖En‖FOTA‖
*CZ‖fota/‖SI‖En‖Firmware Over The Air‖
Z‖fov‖SI‖En‖FOV‖
*Z‖fov/‖SI‖En‖Field Of View‖
Z‖fpga‖SI‖En‖FPGA‖
Z*‖fpga/‖SI‖En‖Field-Programmable Gate Array‖
Z‖fps‖SI‖En‖FPS‖
*Z‖fps/‖SI‖En‖Frames Per Seconds‖
Z‖fpu‖SI‖En‖FPU‖
*Z‖fpu/‖SI‖En‖Floating-Point Unit‖
Z‖frmcs‖SI‖En‖FRMCS‖
*Z‖frmcs/‖SI‖En‖Future Railway Mobile Communication System‖
Z‖ftp‖SI‖En‖FTP‖
*Z‖ftp/‖SI‖En‖File Ttransfer Protocol‖https://en.wikipedia.org/wiki/File_Transfer_Protocol
Z*‖fyi/‖SI‖En‖for your information‖https://en.wikipedia.org/wiki/Digital_single-lens_reflex_camera
Z‖gdpr‖SI‖En‖GDPR‖
*Z‖gdpr/‖MSI‖En‖General Data Protection Regulation¦Regulation (EU) 2016/679 of the European Parliament and of the Council of 27 April 2016 on the protection of natural persons with regard to processing of personal data and the free movement of that data‖
Z‖genai‖SI‖En‖GenAI‖
*Z‖genai/‖SI‖En‖Generative Artificial Inteligence‖
Z‖gis‖SI‖En‖GIS‖
*Z‖gis/‖SI‖En‖Geographic Information System‖
Z‖gmt‖SI‖En‖GMT‖https://en.wikipedia.org/wiki/Greenwich_Mean_Time
Z*‖gmt/‖MSI‖En‖Greenwich Mean Time¦Poland: GMT + 01:00¦Polska: GMT + 01:00‖
Z‖gnss‖SI‖En‖GNSS‖
*Z‖gnss/‖SI‖En‖Global Navigation Satellite System‖
Z‖gnu‖SI‖En‖GNU‖https://en.wikipedia.org/wiki/GNU
Z*‖gnu/‖MCL‖En‖GNU's Not Unix!¦https://en.wikipedia.org/wiki/GNU‖https://en.wikipedia.org/wiki/One-time_password
Z‖gpa‖SI‖En‖GPA‖
*Z‖gpa/‖SI‖En‖Grade Point Average‖
Z‖gpg‖SI‖En‖GPG‖https://en.wikipedia.org/wiki/GNU_Privacy_Guard
Z*‖gpg/‖SI‖En‖GNU Privacy Guard‖
CZ‖gpio‖SI‖En‖GPIO‖
*CZ‖gpio/‖SI‖En‖General Purpose Input/Output‖
Z‖gpl‖SI‖En‖GPL‖https://en.wikipedia.org/wiki/GNU_General_Public_License
Z*‖gpl/‖MCL‖En‖General Public License¦https://en.wikipedia.org/wiki/GNU_General_Public_License¦https://www.gnu.org/licenses/gpl-3.0.html‖
Z‖gpo‖SI‖En‖GPO‖
*Z‖gpo/‖SI‖En‖General Purpose Output‖
Z‖gps‖SI‖En‖GPS‖
Z*‖gps/‖CL‖En‖Global Positioning System‖
Z‖gpt‖SI‖En‖GPT‖
Z*‖gpt/‖SI‖En‖Generative Pre-trained Transformer‖
Z‖gpu‖SI‖En‖GPU‖
*Z‖gpu/‖SI‖En‖Graphics Processing Unit‖
Z‖grpc‖SI‖En‖gRPC‖
*Z‖grpc/‖SI‖En‖google Remote Procedure Calls‖
Z‖gsm‖SI‖En‖GSM‖
Z*‖gsm/‖CL‖En‖Global System for Mobile Communications‖
*Z‖gsmr‖SI‖En‖GSM-R‖
*Z‖gsmr/‖SI‖En‖GSM for Railways‖
Z‖gui‖SI‖En‖GUI‖
Z*‖gui/‖CL‖En‖Graphical User Interface‖
Z‖guid‖SI‖En‖GUID‖
*Z‖guid/‖SI‖En‖Globally Unique IDentifier‖
Z‖hal‖SI‖En‖HAL‖
*Z‖hal/‖SI‖En‖Hardware Abstraction Layer‖
Z‖hart‖SI‖En‖HART‖
Z*‖hart/‖CL‖En‖Highway Addressable Remote Transducer Protocol‖
Z‖hci‖SI‖En‖HCI‖
*Z‖hci/‖SI‖En‖Host Controller Interface‖
Z‖hdl‖SI‖En‖HDL‖
*Z‖hdl/‖MSI‖En‖Hardware Description Language¦High-Density Lipoprotein‖
Z‖hdmi‖SI‖En‖HDMI‖
Z*‖hdmi/‖CL‖En‖High-Definition Multimedia Interface‖
Z‖hid‖SI‖En‖HID‖
*Z‖hid/‖SI‖En‖Human Interface Device‖
Z‖hifi‖SI‖En‖Hi-Fi‖
*Z‖hifi/‖SI‖En‖High Fidelity‖
Z‖himars‖SI‖En‖HIMARS‖
*Z‖himars/‖SI‖En‖HIgh Mobility Artillery Rocket System‖
*Z‖hiv/‖SI‖En‖Human Immunodeficiency Viruses‖https://en.wikipedia.org/wiki/HIV
Z‖hp‖SI‖En‖HP‖
Z*‖hp/‖MSI‖En‖Horizontal Pitch¦1x HP = 0.2 '' = 5.08 mm¦1x HP is a unit of length defined by the Eurocard printed circuit board standard used to measure the horizontal width of rack mounted electronic equipment‖https://en.wikipedia.org/wiki/Horizontal_pitch
Z‖hpf‖SI‖En‖HPS‖
*Z‖hpf/‖SI‖En‖High Pass Filter‖
Z‖hrm‖SI‖En‖HRM‖
*Z‖hrm/‖SI‖En‖Heart Rate Monitor‖
Z‖http‖SI‖En‖HTTP‖
*Z‖http/‖SI‖En‖HyperText Transfer Protocol‖
*Z‖http2‖SI‖En‖HTTP/2‖
Z‖hvac‖CL‖En‖HVAC‖
Z*‖hvac/‖CL‖En‖Heating Ventilation Air Conditioning‖
Z‖hw‖SI‖En‖HW‖
Z*‖hw/‖SI‖En‖hardware‖
Z‖i2c‖MSI‖En‖I2C¦I²C¦IIC‖
*Z‖i2c/‖MSI‖En‖Inter-Integrated Circuit¦Synchronous, multi-controller/multi-target (historically-termed as master/slave), single-ended, serial communication bus. A particular strength of I2C is the capability of a microcontroller to control a network of device chips with just two general-purpose I/O pins and software. Many other bus technologies used in similar applications, such as Serial Peripheral Interface Bus (SPI), require more pins and signals to connect multiple devices.¦IIC‖
Z‖i3c‖SI‖En‖I3C‖
*Z‖i3c/‖MSI‖En‖SenseWire¦Improved Inter Integrated Circuit¦Two-wire serial communication bus specification for connecting peripherals to microprocessors and microcontrollers. It's designed as the successor to I2C, SPI, and UART interfaces. The standard defines a signalling protocol in which multiple chips can control communication and thereby act as the bus controller.‖
Z‖iacs‖SI‖En‖IACS‖IEC 62443-4-1
Z*‖iacs/‖SI‖En‖Industrial Automation and Control Systems‖
Z‖iana‖SI‖En‖IANA‖
*Z‖iana/‖SI‖En‖Internet Assigned Numbers Authority‖
Z‖iarc‖SI‖En‖IARC‖
*Z‖iarc/‖SI‖En‖International Age Rating Coalition‖
*‖ibid/‖MSI‖En‖ibidem¦tamże, w tym samym miejscu‖
Z‖ic‖SI‖En‖IC‖
Z*‖ic/‖CL‖En‖Interoperability Constituent‖
Z‖icbm‖SI‖En‖ICBM‖
*Z‖icbm/‖SI‖En‖InterContinental Ballistic Missile‖
*Z‖id`t‖SI‖En‖ID‖
Z‖ide‖SI‖En‖IDE‖
Z*‖ide/‖SI‖En‖Integrated Development Environment‖
Z*‖idk/‖SI‖En‖I don't know‖
Z‖iec‖SI‖En‖IEC‖
Z*‖iec/‖MSI‖En‖International Electrotechnical Commission¦https://www.iec.ch/homepage‖
Z‖ielts‖SI‖En‖IELTS‖
*Z‖ielts/‖SI‖En‖International English Language Testing System‖https://en.wikipedia.org/wiki/International_English_Language_Testing_System
Z‖iIoT‖SI‖En‖IIoT‖
*Z‖iioT/‖SI‖En‖Industrial Internet of Things‖
Z‖iir‖SI‖En‖IIR‖
*Z‖iir/‖SI‖En‖Infinite Impulse Response‖
Z‖iis‖SI‖En‖IIS‖
*Z‖iis/‖SI‖En‖Internet Information Service‖
CZ‖imei‖SI‖En‖IMEI‖
*CZ‖imei/‖SI‖En‖International Mobile Equipment Identity‖
Z‖imsi‖SI‖En‖IMSI‖
*Z‖imsi/‖SI‖En‖International Mobile Subscriber Identity‖
Z‖imu‖SI‖En‖IMU‖
*Z‖imu/‖MSI‖En‖Inertial Measurement Unit¦an electronic device that measures and reports a body's specific force, angular rate, and sometimes the orientation of the body, using a combination of accelerometers, gyroscopes, and sometimes magnetometers.‖https://en.wikipedia.org/wiki/Inertial_measurement_unit
Z‖iot‖SI‖En‖IoT‖
Z*‖iot/‖SI‖En‖Internet of Things‖
Z‖ip‖SI‖En‖IP‖
Z*‖ip/‖MCL‖En‖IP Code, Ingress Protection code, electronic module enclosure protection level¦https://en.wikipedia.org/wiki/IP_Code‖
Z‖ipa‖SI‖En‖IPA‖
*Z‖ipa/‖SI‖En‖International Phonetic Alphabet‖
CZ‖ipr‖SI‖En‖IPR‖
*CZ‖ipr/‖SI‖En‖Intellectual Property Rights‖
*Z‖ipv4‖SI‖En‖IPv4‖
*Z‖ipv6‖SI‖En‖IPv6‖
Z‖iq‖SI‖En‖IQ‖
Z*‖iq/‖CL‖En‖Inteligence Quotient‖
Z‖irda‖SI‖En‖IrDA‖
*Z‖irda/‖SI‖En‖Infrared Data Association‖
Z‖iris‖SI‖En‖IRIS‖
Z*‖iris/‖CL‖En‖International Railway Industry Standard for the evaluation of railway management systems‖
Z‖isa‖SI‖En‖ISA‖
*Z‖isa/‖SI‖En‖Instruction Set Architecture‖
Z‖isae‖SI‖En‖ISAE‖
*Z‖isae/‖SI‖En‖International Standard on Assurance Engagements‖
Z‖isbn‖SI‖En‖ISBN‖
Z*‖isbn/‖SI‖En‖International Standard Book Number‖https://en.wikipedia.org/wiki/ISBN
Z‖isdn‖SI‖En‖ISDN‖
*Z‖isdn/‖SI‖En‖Integrated Services Digital Network‖
Z‖isis‖SI‖En‖ISIS‖
*Z‖isis/‖SI‖En‖Islamic State of Iraq and Syria‖
Z‖ism‖SI‖En‖ISM‖
*Z‖ism/‖SI‖En‖Industrial Scientific Medical‖
Z‖iso‖SI‖En‖ISO‖
Z*‖iso/‖SI‖En‖International Standard Organisation‖
Z‖isp‖SI‖En‖ISP‖
Z*‖isp/‖SI‖En‖Internet Service Provider‖
C1Z‖isr‖SI‖En‖ISR‖
*C1Z‖isr/‖SI‖En‖Interrupt Service Routine‖
Z‖isv‖SI‖En‖ISV‖
*Z‖isv/‖SI‖En‖Independent Software Vendor‖
*Z‖it`t‖SI‖En‖IT‖
Z‖itil‖SI‖En‖ITIL‖
*Z‖itil/‖SI‖En‖Information Technology Infrastructure Library‖https://www.itlibrary.org/
Z‖itsm‖SI‖En‖ITSM‖
*Z‖itsm/‖SI‖En‖IT Service Management‖
Z‖itu‖SI‖En‖ITU‖
*Z‖itu/‖SI‖En‖International Telecommunication Union‖
Z‖javac/‖SI‖En‖Java compiler‖
Z*‖javascript‖SI‖En‖JavaScript‖
Z‖jdk‖SI‖En‖JDK‖
*Z‖jdk/‖SI‖En‖Java Development Kit‖
Z‖jdt‖SI‖En‖JDT‖
*Z‖jdt/‖SI‖En‖Java Development Tools‖
Z‖jre‖SI‖En‖JRE‖
*Z‖jre/‖SI‖En‖Java Runtime Environment‖
Z‖jtag‖SI‖En‖JTAG‖
*Z‖jtag/‖SI‖En‖Joint Test Action Group‖
Z‖jvm‖SI‖En‖JVM‖
*Z‖jvm/‖SI‖En‖Java Virtual Machine‖
Z‖jvms‖SI‖En‖JVMS‖
*Z‖jvms/‖SI‖En‖Java Virtual Machine Specification‖
Z‖kerml‖SI‖En‖KerML‖
*Z‖kerml/‖MSI‖En‖Kernel Modeling Language¦modeling language to create modeling languages‖
Z‖kpi‖SI‖En‖KPI‖
*C2Z‖kpi/‖MSI‖En‖Key Performance Indicator¦kluczowy wskaźnik efektywności‖
Z‖kvm‖SI‖En‖KVM‖
*Z‖kvm/‖SI‖En‖Keyboard Video and Mouse (switch)‖
Z‖l&d‖SI‖En‖L&D‖
Z*‖l&d/‖SI‖En‖Learning and Development‖
Z‖lad‖SI‖En‖LAD‖
Z*‖lad/‖CL‖En‖Logistic and Administrative Delay‖
Z‖lan‖SI‖En‖LAN‖
Z*‖lan/‖SI‖En‖Local Area Network‖
*Z‖laser/‖SI‖En‖Light Amplification by Stimulated Emission of Radiation‖
Z*C‖latex‖SI‖En‖LaTeX‖
Z‖lca‖SI‖En‖LCA‖
Z*‖lca/‖MSI‖En‖Life Cycle Assessment¦środowiskowa ocena cyklu życia¦Life cycle assessment or LCA (also known as life cycle analysis) is a methodology for assessing environmental impacts associated with all the stages of the life cycle of a commercial product, process, or service. For instance, in the case of a manufactured product, environmental impacts are assessed from raw material extraction and processing (cradle), through the product's manufacture, distribution and use, to the recycling or final disposal of the materials composing it (grave).¦Środowiskowa ocena cyklu życia (ang. life cycle assessment, LCA) – ocena cyklu życia. Jest to technika z zakresu procesów zarządczych, mająca na celu ocenę potencjalnych zagrożeń środowiska. Istotą tej metody jest nastawienie nie tylko na ocenę wyniku końcowego danego procesu technologicznego, ale także oszacowanie i ocena konsekwencji całego procesu dla środowiska naturalnego.‖
Z‖lcc‖SI‖En‖LCC‖
Z*‖lcc/‖SI‖En‖Life Cycle Cost‖
Z‖lcd‖SI‖En‖LCD‖
Z*‖lcd/‖SI‖En‖Liquid Cristal Display‖
Z‖ldap‖SI‖En‖LDAP‖
*Z‖ldap/‖SI‖En‖Lightweight Directory Access Protocol‖
Z‖ldl‖SI‖En‖LDL‖
*Z‖ldl/‖SI‖En‖Low-Density Lipoprotein‖
Z‖ldo‖SI‖En‖LDO‖
*Z‖ldo/‖MSI‖En‖Low Dropout Regulator¦can be used to provide a stable power supply to the sensor and other components, regardless of fluctuations in the input power1. This can help to ensure accurate and reliable sensor readings.‖
CZ‖le‖SI‖En‖LE‖
*CZ‖le/‖SI‖En‖Low Energy‖
Z‖led‖SI‖En‖LED‖
Z*‖led/‖CL‖En‖Light Emitting Diode‖
Z‖lgbt‖SI‖En‖LGBT‖
Z*‖lgbt/‖SI‖En‖Lesbian Gay Bisexual Transgender‖
Z‖lidar‖SI‖En‖LIDAR‖
*Z‖lidar/‖SI‖En‖LIght DAtaction and Ranging‖
Z‖lifo‖SI‖En‖LIFO‖
*Z‖lifo/‖SI‖En‖Last-In, First-Out‖
Z‖llc‖SI‖En‖LLC‖
*Z‖llc/‖MSI‖En‖Life Cycle Cost¦Limited Liability Company‖
Z‖llm‖SI‖En‖LLM‖
*Z‖llm/‖SI‖En‖Large Language Model‖
Z‖lms‖SI‖En‖LMS‖https://en.wikipedia.org/wiki/Learning_management_system
Z*‖lms/‖SI‖En‖Learning Management System‖
Z‖lnd‖SI‖En‖L&D‖
Z*‖lnd/‖SI‖En‖Learning and Development‖
Z‖lop‖SI‖En‖LOP‖
Z*‖lop/‖CL‖En‖List of Open Points‖
Z‖lpddr‖SI‖En‖LPDDR‖
*Z‖lpddr/‖MSI‖En‖Low-Power Double Data Rate¦LPDDR SDRAM‖
Z‖lpddr4‖SI‖En‖LPDDR4‖
Z‖lpf‖SI‖En‖LPF‖
*Z‖lpf/‖SI‖En‖Low Pass Filter‖
CZ‖lpwa‖SI‖En‖LPWA‖
*CZ‖lpwa/‖SI‖En‖Low Power Wide Area Network‖
Z‖lpwan‖SI‖En‖LPWAN‖
*Z‖lpwan/‖SI‖En‖Low Power Wide Area Network‖
Z‖lru‖SI‖En‖LRU‖
Z*‖lru/‖SI‖En‖Line Replacable Unit‖
Z‖lsd‖SI‖En‖LSD‖
*Z‖lsd/‖SI‖En‖Lysergic acid diethylamide‖https://en.wikipedia.org/wiki/LSD
Z‖lte‖SI‖En‖LTE‖
Z*‖lte/‖SI‖En‖Long-Term Evolution‖
Z‖ltem‖SI‖En‖LTE-M‖
*Z‖ltem/‖MSI‖En‖Long-Term Evolution Machine (Type Communication)¦Cat-M1‖
Z‖lts‖SI‖En‖LTS‖
*Z‖lts/‖SI‖En‖Long Time Support‖
Z‖lvds‖SI‖En‖LVDS‖
*Z‖lvds/‖SI‖En‖Low-Voltage Differential Signaling‖
Z‖lwm2m‖SI‖En‖LwM2M‖
*Z‖lwm2m/‖SI‖En‖Lightweight Machine to Machine application layer communication protocol‖
Z‖lzma‖SI‖En‖LZMA‖
*Z‖lzma/‖SI‖En‖Lempel-ZivMArkov chain algorithm‖
Z‖lzma2‖SI‖En‖LZMA2‖
Z‖mac‖SI‖En‖MAC‖https://en.wikipedia.org/wiki/MAC_address
*Z‖mac/‖SI‖En‖Media Access Control‖
Z‖marte‖SI‖En‖MARTE‖
*Z‖marte/‖SI‖En‖Modeling and Analysis of Real-Time and Embedded systems‖
Z‖mba‖SI‖En‖MBA‖
Z*‖mba/‖SI‖En‖Master of Business Administration‖
Z‖mbe‖SI‖En‖MBE‖
*Z‖mbe/‖SI‖En‖Model Based Engineering‖
Z‖mbse‖SI‖En‖MBSE‖
*Z‖mbse/‖SI‖En‖Model Based System Engineering‖
Z‖mbti‖SI‖En‖MBTI‖
*Z‖mbti/‖MSI‖En‖Myers−Briggs Type Indicator¦ENTJ: extraversion (E), intuition (N), thinking (T), judgment (J)`nISFP: introversion (I), sensing (S), feeling (F), perception (P)‖
Z‖md5‖SI‖En‖MD5‖https://en.wikipedia.org/wiki/MD5
Z*‖md5/‖MSI‖En‖Message-Digest Algorithm¦hash function producing a 128-bit hash value‖
Z‖mdt‖SI‖En‖MDT‖
Z*‖mdt/‖CL‖En‖Mean Down Time‖
Z‖mems‖SI‖En‖MEMS‖
*Z‖mems/‖SI‖En‖Micro-ElectroMechanical System‖
Z‖mfa‖SI‖En‖MFA‖
Z*‖mfa/‖SI‖En‖Multi Factor Authentication‖
Z‖mhf4‖SI‖En‖MHF4‖
*Z‖mhf4/‖MSI‖En‖Micro High-Frequency 4¦a type of miniature RF (Radio Frequency) coaxial connector used for high-frequency signals, typically up to 6 GHz‖
Z‖midi‖SI‖En‖MIDI‖
*Z‖midi/‖SI‖En‖Musical Instrument Digital Interface‖
Z‖mii‖SI‖En‖MII‖
*Z‖mii/‖SI‖En‖Media-Independent Interface‖
Z‖mime‖SI‖En‖MIME‖
*Z‖mime/‖SI‖En‖Multipurpose Internet Mail Extensions‖https://en.wikipedia.org/wiki/MIME
*Z‖mimo/‖SI‖En‖Multiple Input Multiple Output‖
*Z‖mimo`t‖SI‖En‖MIMO‖
Z‖mit‖SI‖En‖MIT‖
*Z‖mit/‖SI‖En‖Massachusetts Institute of Technology‖
Z‖mmc‖SI‖En‖MMC‖
*Z‖mmc/‖SI‖En‖Multi Media Card‖
CZ‖mmtc‖SI‖En‖mMTC‖
*CZ‖mmtc/‖SI‖En‖massive Machine Type Communication‖
Z‖mno‖SI‖En‖MNO‖
*Z‖mno/‖SI‖En‖Mobile Network Operator‖
Z‖modbus‖SI‖En‖Modbus‖
Z‖mom‖SI‖En‖MoM‖
Z*‖mom/‖SI‖En‖Minutes of Meeting‖
Z‖mosFET‖SI‖En‖MOSFET‖
*Z‖mosfet/‖SI‖En‖Metal-Oxide-Semiconductor Field-Effect Transistor‖
Z‖mqtt‖SI‖En‖MQTT‖
*Z‖mqtt/‖MSI‖En‖Message Quenue Telemetry Transport¦lightweight, publish-subscribe, machine to machine network protocol for message queue/message queuing service. It is designed for connections with remote locations that have devices with resource constraints or limited network bandwidth, such as in the Internet of Things (IoT). It must run over a transport protocol that provides ordered, lossless, bi-directional connections—typically, TCP/IP,[1] but also possibly over QUIC.It is an open OASIS standard and an ISO recommendation (ISO/IEC 20922).‖
Z‖mri‖SI‖En‖MRI‖
*Z‖mri/‖SI‖En‖Magnetic Rezonanse Imaging‖
Z‖mrna‖SI‖En‖mRNA‖
*Z‖mrna/‖SI‖En‖messenger RNA‖
Z‖msd‖SI‖En‖MSD‖
*Z‖msd/‖SI‖En‖Mass Storage Device‖
Z‖mtbf‖SI‖En‖MTBF‖
*Z‖mtbf/‖MSI‖En‖Mean Time Between Failures¦the predicted elapsed time between inherent failures of a mechanical or electronic system, during normal system operation. MTBF can be calculated as the arithmetic mean (average) time between failures of a system. The term is used for repairable systems, while mean time to failure (MTTF) denotes the expected time to failure for a non-repairable system.`n[SOURCE: https://en.wikipedia.org/wiki/Mean_time_between_failures]`n¦średni czas bezawaryjnej pracy‖
Z‖mtbm‖SI‖En‖MTBM‖
Z*‖mtbm/‖CL‖En‖Mean Time Between Maintainances‖
Z*‖mtm‖SI‖En‖MTM‖
Z‖mto‖SI‖En‖MTO‖
*Z‖mto/‖MSI‖En‖Make to Order¦to complete an order, new but typical modules are applied, e.g. new modem, new connector.‖
Z‖mts‖SI‖En‖MTS‖
*Z‖mts/‖MSI‖En‖Make to Stock¦inventory is manufactured and stocked in warehouses‖
Z‖mttf‖SI‖En‖MTTF‖
Z*‖mttf/‖MSI‖En‖Mean Time To Failure¦the expected time to failure for a non-repairable system.`n[SOURCE: https://en.wikipedia.org/wiki/Mean_time_between_failures]`n‖
Z*‖mttm‖SI‖En‖MTTM‖
Z*‖mttm/‖SI‖En‖Mean Time To Maintain‖
Z‖mttr‖SI‖En‖MTTR‖
Z*‖mttr/‖CL‖En‖Mean Time To Restore‖
Z‖mtu‖SI‖En‖MTU‖https://en.wikipedia.org/wiki/Maximum_transmission_unit
Z*‖mtu/‖SI‖En‖Maximum Transmission Unit‖
Z‖mut‖SI‖En‖MUT‖
Z*‖mut/‖CL‖En‖Mean Up Time‖
Z‖mvc‖SI‖En‖MVC‖
*Z‖mvc/‖SI‖En‖Model View Controller‖
Z‖mvne‖SI‖En‖MVNE‖
*Z‖mvne/‖SI‖En‖Mobile Virtual Network Enabler‖
Z‖mvno‖SI‖En‖MVNO‖
*Z‖mvno/‖SI‖En‖Mobile Virtual Network Operator‖
Z*‖n/a/‖SI‖En‖not applicable‖
Z*‖na/‖SI‖En‖not applicable‖
Z*‖nas/‖SI‖En‖Network Attached Storage‖
Z*‖nas`t‖SI‖En‖NAS‖
Z‖nato‖SI‖En‖NATO‖
Z*‖nato/‖SI‖En‖North Atlantic Treaty Organization‖
Z‖nb-iot‖SI‖En‖NB-IoT‖
*Z‖nb-iot/‖SI‖En‖NarrowBand Internet of Things‖
Z‖nbiot‖SI‖En‖NB-IoT‖
*Z‖nbiot/‖MSI‖En‖NarrowBand Internet of Things¦Cat-NB1‖
Z‖ncr‖SI‖En‖NCR‖
Z*‖ncr/‖CL‖En‖Non Conformance Report‖
Z‖nda‖SI‖En‖NDA‖
Z*‖nda/‖CL‖En‖Non-Disclosure Agreement‖
Z‖nfc‖SI‖En‖NFC‖https://en.wikipedia.org/wiki/Near-field_communication
Z*‖nfc/‖SI‖En‖Near-Field Communication‖
Z‖ngo‖SI‖En‖NGO‖
*Z‖ngo/‖SI‖En‖Nongovermental Organization‖
Z*‖nic/‖SI‖En‖Network Interface Card‖
Z*‖nic`t‖SI‖En‖NIC‖
Z‖nkro‖SI‖En‖NKRO‖
*Z‖nkro/‖SI‖En‖n-key rollover; n is a mathematical way to say that the number of items is not defined. n can be anything between zero and infinity; each keyboard key is scanned completely independently by the keyboard hardware, so that each keypress is correctly detected regardless of how many other keys are being pressed or held down at the time‖https://en.wikipedia.org/wiki/Key_rollover
Z‖nlp‖SI‖En‖NLP‖
*Z‖nlp/‖SI‖En‖Neuro-Linguistic Programming‖
Z‖nobo‖SI‖En‖NoBo‖
Z*‖nobo/‖SI‖En‖Notified Body‖
*Z‖nosql‖SI‖En‖NoSQL‖
*Z‖npm/‖SI‖En‖Node Package Manager‖
Z‖nrem‖SI‖En‖NREM‖
*Z‖nrem/‖SI‖En‖Non-Rapid Eye Movement‖
CZ‖ntn‖SI‖En‖NTN‖
*CZ‖ntn/‖SI‖En‖Non-Terrestrial Network‖
Z‖ntp‖SI‖En‖NTP‖https://en.wikipedia.org/wiki/Network_Time_Protocol
Z*‖ntp/‖SI‖En‖Network Time Protocol‖
Z‖nvm‖SI‖En‖NVM‖
Z‖nvm‖SI‖En‖NVM‖
*Z‖nvm/‖SI‖En‖Non-Volatile Memory‖
*Z‖nvm/‖SI‖En‖Non-Volatile Memory‖
Z‖nvme‖SI‖En‖NVMe‖
*Z‖nvme/‖MSI‖En‖NVM express¦Non-Volatile Memory Host Controller Interface Specification‖
Z‖ocd‖SI‖En‖OCD‖
*Z‖ocd/‖SI‖En‖Obsessive-Compulsive Disorder‖
Z‖ocr‖SI‖En‖OCR‖
Z‖ocr/‖SI‖En‖Optical Character Recognition‖
Z‖odm‖SI‖En‖ODM‖
*Z‖odm/‖SI‖En‖Original Design Manufacturer‖
Z‖odr‖SI‖En‖ODR‖
*Z‖odr/‖MSI‖En‖Output Data Rate¦denote the frequency at which data is sampled and output by the device‖
Z‖oecd‖SI‖En‖OECD‖
*Z‖oecd/‖SI‖En‖Organisation for Economic Co-operation and Development‖
Z‖oem‖SI‖En‖OEM‖
Z*‖oem/‖SI‖En‖Original Equipment Manufacturer‖
Z‖ofdm‖SI‖En‖OFDM‖
*Z‖ofdm/‖SI‖En‖Orthogonal Frequency-Division Multiplexing‖
Z‖ohs‖SI‖En‖OHS‖
*Z‖ohs/‖SI‖En‖Occupational Health and Safety‖
Z‖ohsas‖SI‖En‖OHSAS‖https://pl.wikipedia.org/wiki/OHSAS_18001
Z*‖ohsas/‖SI‖En‖Occupational Health and Safety Assessment Series‖
Z‖ojeu‖SI‖En‖OJEU‖
*Z‖ojeu/‖SI‖En‖Official Journal of European Union‖
*Z‖ole/‖SI‖En‖Object Linking & Embedding‖
Z‖ole`t‖SI‖En‖OLE‖
Z‖oled‖SI‖En‖OLED‖
*Z‖oled/‖SI‖En‖Organic Light-Emitting Diode‖https://en.wikipedia.org/wiki/OLED
Z‖omg‖SI‖En‖OMG‖
Z‖opc‖SI‖En‖OPC‖
*Z‖opc/‖SI‖En‖Open Platform Communications‖
*Z‖opcit/‖MSI‖En‖opus citatum, opere citato¦dzieło cytowane, z cytowanego dzieła‖
Z‖opcua‖SI‖En‖OPC UA‖
Z*‖opcua/‖SI‖En‖Open Platform Communication Unified Architecture‖
Z‖osh‖SI‖En‖OSH‖
*Z‖osh/‖SI‖En‖Occupational Safety and Health‖
Z‖osi‖SI‖Dis‖OSI‖
*Z‖osi/‖SI‖En‖Open Source Initiative‖
*Z‖osi`n‖SI‖En‖Open Systems Interconnection model‖https://en.wikipedia.org/wiki/OSI_model
*Z‖osi`t‖SI‖En‖OSI‖
Z‖osint‖SI‖En‖OSINT‖
*Z‖osint/‖SI‖En‖Open Source INTelligence‖
Z‖oslc‖SI‖En‖OSLC‖
*Z‖oslc/‖SI‖En‖Open Services for Lifecycle Collaboration‖https://en.wikipedia.org/wiki/Open_Services_for_Lifecycle_Collaboration
Z‖oss‖SI‖En‖OSS‖
*Z‖oss/‖SI‖En‖Open-Source Software‖
Z‖ostree‖SI‖En‖OSTree‖
*Z‖ostree/‖SI‖En‖System for versioning updates of Linux-based operating systems. It can be considered as "Git for operating system binaries". It operates in userspace, and will work on top of any Linux file system. At its core is a Git-like content-addressed object store with branches (or "refs") to track meaningful file system trees within the store.‖
Z‖otap‖SI‖En‖OTAP‖
*Z‖otap/‖SI‖En‖Over the Air Programming‖
Z‖otp‖SI‖En‖OTP‖https://en.wikipedia.org/wiki/One-time_password
Z*‖otp/‖MSI‖En‖One-Time Password¦is a password that is valid for only one login session or transaction, on a computer system or other digital device‖
Z‖p&l‖SI‖En‖P&L‖
*Z‖p&l/‖SI‖En‖profit & loss‖
*Z‖pandl/‖SI‖En‖profit & loss‖
Z‖pbs‖SI‖En‖PBS‖
Z*‖pbs/‖SI‖En‖Product Breakdown Structure‖
Z‖pc‖SI‖En‖PC‖
Z‖pcb‖SI‖En‖PCB‖
Z*‖pcb/‖CL‖En‖Printed Circuit Board‖
Z‖pci‖SI‖En‖PCI‖
*Z‖pci/‖SI‖En‖Peripheral Component Interconnect‖
Z‖pcie‖SI‖En‖PCIe‖
*Z‖pcie/‖MSI‖En‖PCI Express¦Peripheral Component Interconnect Express‖
Z‖pcm‖SI‖En‖PCM‖
*Z‖pcm/‖SI‖En‖Pulse-Code Modulation‖https://en.wikipedia.org/wiki/Pulse-code_modulation
Z‖pcn‖SI‖En‖PCN‖
Z*‖pcn/‖SI‖En‖Product Change Notification‖
Z‖pda‖SI‖En‖PDA‖
*Z‖pda/‖SI‖En‖Personal Digital Assistant‖
Z‖pdn‖SI‖En‖PDN‖
*Z‖pdn/‖SI‖En‖Product Discontinuance Notification‖
Z‖pe‖SI‖En‖PE‖
Z*‖pe/‖SI‖En‖Protective Earth‖
Z‖pep‖SI‖En‖PEP‖
*Z‖pep/‖SI‖En‖Politically Exposed Person‖
*Z‖pet/‖SI‖En‖PolyEthylene Terephthalate‖
Z‖pet`t‖SI‖En‖PET‖
Z‖pete‖SI‖En‖PETE‖
*Z‖pete/‖SI‖En‖PolyEthylene Terephthalate‖
Z‖pgp‖SI‖En‖PGP‖https://en.wikipedia.org/wiki/Pretty_Good_Privacy
Z*‖pgp/‖SI‖En‖Pretty Good Privacy‖
Z‖phd‖SI‖En‖PhD‖
Z‖phd/‖SI‖En‖philosophiae doctor‖
Z‖php‖SI‖En‖PHP‖
*Z‖php/‖SI‖En‖PHP: Hypertext Preprocessor‖
Z‖phy‖SI‖En‖PHY‖
*Z‖phy/‖SI‖En‖Physical Layer‖
Z‖pin‖SI‖En‖PIN‖
Z*‖pin/‖SI‖En‖Personal Identification Number‖
Z‖pit‖SI‖En‖PIT‖
Z*‖pit/‖SI‖En‖Personal Income Tax‖
CZ‖pki‖SI‖En‖PKI‖
*CZ‖pki/‖SI‖En‖Public Key Infrastructure‖
Z‖pkm‖SI‖En‖PKM‖
*Z‖pkm/‖SI‖En‖Personal Knowledge Management‖
Z‖plc‖SI‖En‖PLC‖https://en.wikipedia.org/wiki/Programmable_logic_controller
Z*‖plc/‖SI‖En‖Programmable Logic Controller‖
Z‖ple‖SI‖En‖PLE‖
*Z‖ple/‖SI‖En‖Product Line Engineering‖
Z‖plm‖SI‖En‖PLM‖
Z*‖plm/‖CL‖En‖Product Lifecycle Management‖
*Z‖pm/‖MSI‖En‖Post Meridiem¦Phase Modulated‖
Z‖pmic‖SI‖En‖PMIC‖
*Z‖pmic/‖SI‖En‖Power Management Integrated Circuit‖
Z*‖png/‖SI‖En‖Portable Network Graphics‖
Z‖pnp‖SI‖En‖PnP‖https://en.wikipedia.org/wiki/Plug_and_play
Z*‖pnp/‖MSI‖En‖device with a specification that facilitates the discovery of a hardware component in a system without the need for physical device configuration or user intervention in resolving resource conflicts¦Plug and Play‖
Z‖poc‖SI‖En‖PoC‖
Z*‖poc/‖CL‖En‖Proof of Concept‖
Z‖poe‖SI‖En‖PoE‖
Z*‖poe/‖SI‖En‖Power over Ethernet‖
Z‖pov‖SI‖En‖POV‖
Z*‖pov/‖SI‖En‖Point of View‖
Z‖pp‖SI‖En‖pp.‖
*Z‖pp/‖MSI‖En‖Pair Programming¦per procurationem, on behalf of‖
Z‖ppi‖SI‖En‖PPI‖
Z*‖ppi/‖SI‖En‖Point Per Inch‖
*Z‖pps/‖SI‖En‖Packet Per Second‖
Z‖pri‖SI‖En‖PRI‖
*Z‖pri/‖SI‖En‖Package Resource Index‖
Z‖prp‖SI‖En‖PRP‖
*Z‖prp/‖SI‖En‖Parallel Redundancy Protocol‖
Z‖pscs‖SI‖En‖PSCS‖
*Z‖pscs/‖MSI‖En‖Precise Semantics of Composite Structures¦standard defined by the Object Management Group (OMG) and is part of the Executable UML (xUML) standards. PSCS provides a precise execution semantics for UML composite structures, which are used in modeling complex systems.‖
Z‖psd‖SI‖En‖PSD‖
*Z‖psd/‖SI‖En‖Power Spectral Density‖
Z‖psi‖SI‖En‖PSI‖
*Z‖psi/‖SI‖En‖Pound per Square Inch‖
CZ‖psm‖SI‖En‖PSM‖
*CZ‖psm/‖SI‖En‖Power Saving Mode‖
Z‖psoc‖SI‖En‖PSoC‖
*Z‖psoc/‖SI‖En‖Programmable System on a Chip‖
Z‖ptfe‖SI‖En‖PTFE‖
*Z‖ptfe/‖SI‖En‖polytetrafluoroethylene‖https://en.wikipedia.org/wiki/Polytetrafluoroethylene
Z‖puk‖SI‖En‖PUK‖
Z*‖puk/‖SI‖En‖PIN Unlock Key‖
Z‖pvc‖SI‖En‖PVC‖
*Z‖pvc/‖SI‖En‖Polivinyl chloride‖
Z‖pwa‖SI‖En‖PWA‖
*Z‖pwa/‖MSI‖En‖Progressive Web App¦type of application software delivered through the web, built using common web technologies incuding HTML, CSS, JavaScript and WebAssembly.‖
Z‖pwm‖SI‖En‖PWM‖
Z*‖PWM/‖SI‖En‖Pulse-Width Modulation‖
Z‖qam‖SI‖En‖QAM‖
*Z‖qam/‖SI‖En‖Qadrature Amplitude Modulation‖
Z‖qfn‖SI‖En‖QFN‖
*Z‖qfn/‖SI‖En‖Quad-Flat No-leads‖
Z‖qhsee‖SI‖En‖QHSEE‖
Z*‖qhsee/‖SI‖En‖Quality, Health, Safety, Environment and Energy‖
Z‖qmk‖SI‖En‖QMK‖
*Z‖qmk/‖SI‖En‖Quantum Mechanical Keyboard‖
Z‖qms‖SI‖En‖QMS‖
*Z‖qms/‖SI‖En‖Quality Management System‖
Z‖qna‖SI‖En‖Q&A‖
Z*‖qna/‖CL‖En‖Questions and Answers‖
Z‖qos‖SI‖En‖QoS‖
*Z‖qos/‖SI‖En‖Quality of Service‖
ZC‖qr‖SI‖En‖QR code‖
Z*‖qr/‖SI‖En‖Quick Response code‖
Z‖qrams‖SI‖En‖QRAMS‖
Z*‖qrams/‖CL‖En‖Quality, Reliability, Availability, Maintainability, Safety‖
CZ‖qspi‖SI‖En‖QSPI‖
*CZ‖qspi/‖SI‖En‖Queued Serial Peripheral Interface‖
Z‖quic‖SI‖En‖QUIC‖
*Z‖quic/‖SI‖En‖general-purpose transport layer network protocol initially designed by Jim Roskind at Google, implemented, and deployed in 2012, announced publicly in 2013 as experimentation broadened, and described at an IETF meeting. QUIC is used by more than half of all connections from the Chrome web browser to Google's servers. Microsoft Edge (which, after version 1, is a derivative of the open-source Chromium browser), Firefox, and Safari support it.‖
Z*‖r/‖SI‖En‖Reliability‖
Z‖rac‖SI‖En‖RAC‖
Z*‖rac/‖CL‖En‖Risk Acceptance Criteria‖
Z‖raci‖SI‖En‖RACI‖
*Z‖raci/‖MSI‖En‖Responsible Accountable Consultant Informed¦R = Responsible: Those who are responsible for the correct completion of the task.[7] There is at least one role with a participation type of responsible, although others can be delegated to assist in the work required. `n`nA = Accountable (also approver or final approving authority): The one ultimately answerable for the correct and thorough completion of the deliverable or task, the one who ensures the prerequisites of the task are met and who delegates the work to those responsible.[7] In other words, an accountable must sign off (approve) work that responsible provides. There must be only one accountable specified for each task or deliverable.`n`nC = Consulted : Those whose opinions are sought, typically subject-matter experts, and with whom there is two-way communication.`n`nI = Informed : Those who are kept up-to-date on progress, often only on completion of the task or deliverable, and with whom there is just one-way communication.‖
Z‖radar‖SI‖En‖RADAR‖
*Z‖radar/‖SI‖En‖RAdio Detection And Ranging‖
Z‖ral‖SI‖En‖RAL‖
Z*‖ral/‖SI‖En‖Reichs-Ausschuß für Lieferbedingungen (National Committee for Delivery and Quality Assurance)‖
Z*‖ram/‖CL‖En‖Reliability, Availability, Maintainability‖
*Z‖ram`t‖SI‖En‖RAM‖
Z‖rams‖SI‖En‖RAMS‖
Z*‖rams/‖CL‖En‖Reliability, Availability, Maintainability and Safety‖
Z‖ramss‖SI‖En‖RAMSS‖
*Z‖ramss/‖CL‖En‖Reliability, Availability, Maintainability, Safety and Security‖