diff --git a/Data/Abbr/.computer.csv.swp b/Data/Abbr/.computer.csv.swp new file mode 100644 index 00000000..ce0d59d4 Binary files /dev/null and b/Data/Abbr/.computer.csv.swp differ diff --git a/Data/Abbr/computer.csv b/Data/Abbr/computer.csv index e5ab1e34..e52d0e7a 100644 --- a/Data/Abbr/computer.csv +++ b/Data/Abbr/computer.csv @@ -1,6 +1,32 @@ Abbreviation,Definition +ACID,"Atomicity, Consistency, Isolation, Durability" +ACL,Access Control List +ADC,Analog-to-Digital Converter +ADF,Automatic Document Feeder +ADSL,Asymmetric Digital Subscriber Line +AFP,Apple Filing Protocol +AGP,Accelerated Graphics Port +AIFF,Audio Interchange File Format +ALU,Arithmetic Logic Unit +ANSI,American National Standards Institute API,Application Programming Interface +APU,Accelerated Processing Unit +ARP,Address Resolution Protocol ASCII,American Standard Code for Information Interchange +ASP,Application Service Provider +ATM,Asynchronous Transfer Mode +AVR,Audio/Video Receiver +Bash,Bourne-Again Shell +BASIC,Beginner's All-purpose Symbolic Instruction Code +BCC,Blind Carbon Copy +BIOS,Basic Input/Output System +BLE,Bluetooth Low Energy +Blob,Binary Large Object +BMP,Bitmap +BSOD,Blue Screen of Death +CAD,Computer-Aided Design +CAN,Campus Area Network +CD,Compact Disc CPU,Central Processing Unit CSV,Comma Separated Values (file format) DDL,Data Definition Language diff --git a/Data/Abbr/misc.csv b/Data/Abbr/various.csv similarity index 99% rename from Data/Abbr/misc.csv rename to Data/Abbr/various.csv index 7da22db7..e11bea07 100644 --- a/Data/Abbr/misc.csv +++ b/Data/Abbr/various.csv @@ -104,7 +104,6 @@ ACE- Air Combat Emulator (computer game),Allied Command Europe,Armored Combat Ea ACES- Aerolíneas Centrales de Colombia (Spanish, "Central Colombian Airlines"),Auxiliary Campus Enterprises and Services of Alfred State College ACF- Administration for Children and Families,American Car and Foundry,American Culinary Federation ACHT, Average Call Hold Time -ACID, Atomicity, Consistency, Isolation, and Durability (in databases) ACINT, Acoustic Intelligence ACK, Acknowledge (telecommunications; cf. NAK) ACL- Access Control List,Anterior cruciate ligament; the initialism can also refer to an injury to this ligament.,Atlantic Coast Line Railroad diff --git a/Scripts/what-is.ps1 b/Scripts/what-is.ps1 index 83e01209..8c3e5964 100755 --- a/Scripts/what-is.ps1 +++ b/Scripts/what-is.ps1 @@ -18,8 +18,8 @@ try { $Table = import-csv "$File" foreach($Row in $Table) { if ($Row.Abbreviation -eq $Abbreviation) { - $Filename = (get-item "$File").Name - " → $($Row.Abbreviation) = $($Row.Definition) (in $Filename)" + $Basename = (get-item "$File").Basename + " → $($Row.Abbreviation) = $($Row.Definition) in $Basename" $FoundOne = $true } }