ESCAPES
Home Invites Members Groups Events News Photos Blogs Polls Forums Chat
Home > Blogs > Post Content

~ "Just A Few Techie Definitions" ~ (8870 hits)


/*

Techie Speak Universal!


#Teaching #Education #Learning #Advancement #Career #Algorithm #Syntax #BoulwareBooks


"Just A Few Techie Definitions"
By
Gregory V. Boulware, Esq.
https://independent.academia.edu/GregoryVB...
"HBCU"
http://hbcu.com/content/337999/just-a-few-...
"Amazon"
http://www.amazon.com/Gregory-V.-Boulware/...
"WordPress"
https://boulwareenterprises.wordpress.com/...

Ya’ateeh, Y'Ho, Shalom Alaikum, As Salaam Alaikum, Hotep, Hola, Konichiwa, Privyet, Hallo, Ni Hao, Anyoung Haseyo, and Hello To You, One and All - Especially Students!


Someone asked me, awhile back, "What's an Algorithm?"

As I began to explain, I remembered the information I'd entered into one of my published books, "A Few Tech Definitions From A to Z..." I thought I might help as many as I can to understand what all those "techie speak" words, abbreviations, and symbols imply. To the student(s) who may have a leg up on the "lay individuals," this article as well as "The Book - The One Thing I Know is" could well be a highly valuable commodity to have on one's desk as well as in their learning library at home, school, or work.

Enjoy this posting as it relates to a plethora of data and "Techie Speak Lingo!"

This author will offer a series of data-strings for all of you who wish to broaden your technical terminology (and a bit of business) as well as keeping you abreast as to what all those strange and crazy words mean to you, me, and quite a few others..."Happy Studying!"

>

From the Book "The One Thing I Know Is..."
'The One Thing I Know Is...How To Understand Information Technology!'
Page 137, From A to Z
"Amazon"
http://www.amazon.com/Gregory-V.-Boulware/...

ActiveX:

A loosely defined set of technologies developed by Microsoft. ActiveX is an outgrowth of two other Microsoft technologies called OLE (Object Linking and Embedding) and COM (Component Object Model). As a moniker, ActiveX can be very confusing because it applies to a whole set of COM-based technologies. Most people, however, think only of ActiveX controls, which represent a specific way of implementing ActiveX technologies.

Ad Hoc:

Description of Research Group:
An ad hoc network is an autonomous system of routers (and associated hosts) connected by wireless links--the union of which form an arbitrary graph. The routers are free to move randomly and organize themselves arbitrarily; thus, the network's wireless topology may change rapidly and unpredictably. Such a network may operate in a standalone fashion, or may be connected to the larger Internet operating as a hybrid fixed/ad hoc network.

This group is concerned with the study of Ad hoc Network Systems (ANS). Ad hoc networks are complex systems, with cross-layer protocol dynamics and interactions that are not present in wired systems, most prominently between the physical, link and network (IP) layers. The IETF community and the wider research community could benefit from research into the behavior of ad hoc networks that would enable advanced routing protocol development. This research group will endeavor to develop sufficient understanding in topic areas of interest to enable the desired protocol specification work.

ADJUDICATION:

Administrative Law; to resolve legally, rule-making, investigation and enforcement, administrative process. The administration of law by administrative agencies.
Adjudication/Subrogation
Adjudication
ad·ju·di·ca·tion /??d?ud?'ke???n/ Show Spelled Pronunciation [uh-joo-di-key-shuhn] Show IPA –noun 1. an act of adjudicating. 2. Law. a. the act of a court in making an order, judgment, or decree. b. a judicial decision or sentence. c. a court decree in bankruptcy. > ad·ju·di·cate (?-joo'di-kat') v. ad·ju·di·cat·ed, ad·ju·di·cat·ing, ad·ju·di·cates v. tr. To hear and settle (a case) by judicial procedure.

To study and settle (a dispute or conflict): The principal adjudicated our quarrel. v. intr. To act as a judge. [Latin adiudicare, adiudicat-, to award to (judicially): ad-, ad- + iudicare, to judge (from iudex, judge; see judge).] ad·ju'di·ca'tion n., ad·ju'di·ca'tive adj., ad·ju'di·ca'tor n. > Subrogation sub·ro·gate /'s?br??ge?t/ Show Spelled Pronunciation [suhb-ruh-geyt] Show IPA –verb (used with object), -gat·ed, -gat·ing. 1. to put into the place of another; substitute for another. 2. Civil Law. to substitute (one person) for another with reference to a claim or right.
Use Subrogation in a Sentence See images of Subrogation Search Subrogation on the Web
-------------------------------------------------------------------------------
Origin: 1400–50; 1540–50 for def. 1; late ME (ptp.) < L subrogatus (ptp. of subrogare to nominate (someone) as a substitute), equiv. to sub- sub- + roga(re) to request + -tus ptp. suffix Related forms: sub·ro·ga·tion, noun > Main Entry: sub·ro·ga·tion Pronunciation: "s&-brO-'gA-sh&n Function: noun 1: an equitable doctrine holding that when a third party pays a creditor or obligee the third party succeeds to the creditor's rights against the debtor or obligor; also: a doctrine holding that when an insurance company pays an insured's claim of loss due to another's tort the insurer succeeds to the insured's rights (as the right to sue for damages) against the tortfeasor called also equitable subrogation
2: an act or instance of subrogating subrogation the right to recover for money —J. M. Landers et al.>
NOTE: Subrogation can take place either by operation of law or by contractual agreement.
Adjudication/Subrogation

ADO:

Short for ActiveX Data Objects, Microsoft's newest high-level interface for data objects. ADO is designed to eventually replace Data Access Objects (DAO) and Remote Data Objects (RDO). Unlike RDO and DAO, which are designed only for accessing relational databases, ADO is more general and can be used to access all sorts of different types of data, including web pages, spreadsheets, and other types of documents.
Together with OLE DB and ODBC, ADO is one of the main components of Microsoft's Universal Data Access (UDA) specification, which is designed to provide a consistent way of accessing data regardless of how the data are structured.

Aggregate Functions:

MIN returns the smallest value in a given column MAX returns the largest value in a given column SUM returns the sum of the numeric values in a given column AVG returns the average value of a given column COUNT returns the total number of values in a given column COUNT(*) returns the number of rows in a table
Aggregate functions are used to compute against a "returned column of numeric data" from your SELECT statement. They basically summarize the results of a particular column of selected data. We are covering these here since they are required by the next topic, "GROUP BY". Although they are required for the "GROUP BY" clause, these functions can be used without the "GROUP BY" clause. For example:
SELECT AVG(salary)
FROM employee;
This statement will return a single result which contains the average value of everything returned in the salary column from the employee table.
Another example:
SELECT AVG(salary)
FROM employee;
WHERE title = 'Programmer';
This statement will return the average salary for all employees whose title is equal to 'Programmer'

Example:

SELECT Count (*)
FROM employees;
This particular statement is slightly different from the other aggregate functions since there isn't a column supplied to the count function. This statement will return the number of rows in the employees table.
Use these tables for the exercises items_ordered customers
Review Exercises
1. Select the maximum price of any item ordered in the items_ordered table. Hint: Select the maximum price only.> 2. Select the average price of all of the items ordered that were purchased in the month of Dec. 3. What are the total number of rows in the items_ordered table? 4. For all of the tents that were ordered in the items_ordered table, what is the price of the lowest tent? Hint: Your query should return the price only.

Answers to these Exercises
Enter SQL Statement here:
Submit Query

AGP-Advanced Graphic Port:

Short for Accelerated Graphics Port, an interface specification developed by Intel Corporation. AGP is based on PCI, but is designed especially for the throughput demands of 3-D graphics. Rather than using the PCI bus for graphics data, AGP introduces a dedicated point-to-point channel so that the graphics controller can directly access main memory. The AGP channel is 32 bits wide and runs at 66 MHz. This translates into a total bandwidth of 266 MBps; as opposed to the PCI bandwidth of 133 MBps. AGP also supports two optional faster modes, with throughputs of 533 MBps and 1.07 GBps. In addition, AGP allows 3-D textures to be stored in main memory rather than video memory.

PCI:

Peripheral Component Inter-Connect (functionality card). AGP has a couple important system requirements:

• The chipset must support AGP.

• The motherboard must be equipped with an AGP bus slot or must have an integrated AGP graphics system.

• The operating system must be the OSR 2.1 version of Windows 95, Windows 98 or Windows NT 4.0. And currently, many professional Macintoshes support AGP. AGP-enabled computers and graphics accelerators hit the market in August, 1997. However, there are several different levels of AGP compliance.

The following features are considered optional:

• Texturing: Also called Direct Memory Execute mode, allows textures to be stored in main memory.

• Throughput: Various levels of throughput are offered: 1X is 266 MBps, 2X is 533 MBps; and 4X provides 1.07 GBps.

• Sideband Addressing: Speeds up data transfers by sending command instructions in a separate, parallel channel.

• Pipelining: Enables the graphics card to send several instructions together instead of sending one at a time.

Algorithm:

A line of attack; Information (The Flow Chart).
(al´g&-rith-&m) (n.) A formula or set of steps for solving a particular problem. To be an algorithm, a set of rules must be unambiguous and have a clear stopping point. Algorithms can be expressed in any language, from natural languages like English or French to programming languages like FORTRAN.

We use algorithms every day. For example, a recipe for baking a cake is an algorithm. Most programs, with the exception of some artificial intelligence applications, consist of algorithms. Inventing elegant algorithms -- algorithms that are simple and require the fewest steps possible -is one of the principal challenges in programming.

Genetic algorithms archive Repository for information related to research in genetic algorithms. Here you can find a calendar of events, back issues of the archive, links to related research sites, newsgroups, and source code.

A study on what faces people find the most attractive.

This was a study done to determine what types of faces are the most attractive. This shows how a genetic algorithm can be applied to a study of hereditary over many generations. Algorithms for common programming problems

Provides algorithms for common programming problems. It also provides pointers on how to implement those algorithms in various different languages. Demonstration of genetic algorithm problem

This site illustrates the solution for the travelling salesman problem-- what is the best, most efficient way for a travelling sales man to travel through all the states. The solutions were found by running a genetic algorithm. The problem is a classic question that is dealt with using algorithms.

Analog: (adj.)

Also spelled analogue, describes a device or system that represents changing values as continuously variable physical quantities. A typical analog device is a clock in which the hands move continuously around the face. Such a clock is capable of indicating every possible time of day. In contrast, a digital clock is capable of representing only a finite number of times (every tenth of a second, for example). In general, humans experience the world analogically. Vision, for example, is an analog experience because we perceive infinitely smooth gradations of shapes and colors. When used in reference to data storage and transmission, analog format is that in which information is transmitted by modulating a continuous transmission signal, such as amplifying a signal's strength or varying its frequency to add or take away data. For example, telephones take sound vibrations and turn them into electrical vibrations of the same shape before they are transmitted over traditional telephone lines. Radio wave transmissions work in the same way. Computers, which handle data in digital form, require modems to turn signals from digital to analog before transmitting those signals over communication lines such as telephone lines that carry only analog signals. The signals are turned back into digital form (demodulated) at the receiving end so that the computer can process the data in its digital format.

Contrast with digital.

ANSI:

Acronym for the American National Standards Institute. Founded in 1918, ANSI is a voluntary organization composed of over 1,300 members (including all the large computer companies) that creates standards for the computer industry. For example, ANSI C is a version of the C language that has been approved by the ANSI committee. To a large degree, all ANSI C Compilers, regardless of which company produces them, should behave similarly.

In addition to programming languages, ANSI sets standards for a wide range of technical areas, from electrical specifications to communications protocols. For example, FDDI, the main set of protocols for sending data over fiber optic cables, is an ANSI standard.

National Committee for Information Technology Standards (NCITS) Contains information on the efforts and involvements of NCITS in the area of market-driven, voluntary consensus standards for multimedia, interconnection among computing devices, storage media, databases, security, and programming languages.

American National Standards Institute (ANSI) Home Page Contains news, events, links to standards databases, and education and training links. Standardization - ANSI

Explains why there is a need for ANSI and standardization.

API:

Abbreviation of application program interface, a set of routines, protocols, and tools for building software applications. A good API makes it easier to develop a program by providing all the building blocks. A programmer puts the blocks together.

Most operating environments, such as MS-Windows, provide an API so that programmers can write applications consistent with the operating environment. Although APIs are designed for programmers, they are ultimately good for users because they guarantee that all programs using a common API will have similar interfaces. This makes it easier for users to learn new programs. DOS Protected Mode Interface (DPMI)

This is a programmer's reference copy of the DOS Protected Mode Interface, a protected mode API specification for DOS extended applications. Microsoft Internet Server API (ISAPI) information page Provides a brief description of Microsoft's Internet Server API (ISAPI), along with a link to information on CGI.

APM:

Short for Advanced Power Management, an API developed by Intel and Microsoft that allows developers to include power management in BIOSes. APM defines a layer between the hardware and the operating system that effectively shields the programmer from hardware details.

Applet:

An applet is a small program designed to run within another application. Applets are useful on the Web because, once they are downloaded; they can be executed quickly within the user's browser. More than one applet can exist in a single document, and they can communicate with one another while they work. Java is one of the major languages used for creating Web-based applets.

Application:

A program or group of programs designed for end users. Software can be divided into two general classes: systems software and applications software. Systems software consists of low level programs that interact with the computer at a very basic level. This includes operating systems, compilers, and utilities for managing computer resources.
In contrast, applications software (also called end-user programs) includes database programs, word processors, and spreadsheets. Figuratively speaking, applications software sits on top of systems software because it is unable to run without the operating system and system utilities.

Argument:

In programming, a value that you pass to a routine. For example, if SQRT is a routine that returns the square root of a value, then SQRT(25) would return the value 5. The value 25 is the argument.

Argument is often used synonymously with parameter, although parameter can also mean any value that can be changed. In addition, some programming languages make a distinction between arguments, which are passed in only one direction, and parameters, which can be passed back and forth, but this distinction is by no means universal.

An argument can also be an option to a command, in which case it is often called a command-line argument.

Artificial Intelligence:

The branch of computer science concerned with making computers behave like humans. The term was coined in 1956 by John McCarthy at the Massachusetts Institute of Technology.

Artificial intelligence includes
• games playing: programming computers to play games such as chess and checkers

• expert systems: programming computers to make decisions in real-life situations (for example, some expert systems help doctors diagnose diseases based on symptoms)

• natural language: programming computers to understand natural human languages

• neural networks: Systems that simulate intelligence by attempting to reproduce the types of physical connections that occur in animal brains

• robotics: programming computers to see and hear and react to other sensory stimuli

Currently, no computers exhibit full artificial intelligence (that is, are able to simulate human behavior). The greatest advances have occurred in the field of games playing. The best computer chess programs are now capable of beating humans. In May, 1997, an IBM super-computer called Deep Blue defeated world chess champion Gary Kasparov in a chess match.

In the area of robotics, computers are now widely used in assembly plants, but they are capable only of very limited tasks. Robots have great difficulty identifying objects based on appearance or feel, and they still move and handle objects clumsily.

Natural-language processing offers the greatest potential rewards because it would allow people to interact with computers without needing any specialized knowledge. You could simply walk up to a computer and talk to it. Unfortunately, programming computers to understand natural languages has proved to be more difficult than originally thought. Some rudimentary translation systems that translate from one human language to another are in existence, but they are not nearly as good as human translators. There are also voice recognition systems that can convert spoken sounds into written words, but they do not understand what they are writing; they simply take dictation. Even these systems are quite limited -- you must speak slowly and distinctly.

In the early 1980's, expert systems were believed to represent the future of artificial intelligence and of computers in general. To date, however, they have not lived up to expectations. Many expert systems help human experts in such fields as medicine and engineering, but they are very expensive to produce and are helpful only in special situations.

Today, the hottest area of artificial intelligence is neural networks, which are proving successful in a number of disciplines such as voice recognition and natural-language processing.

There are several programming languages that are known as AI languages because they are used almost exclusively for AI applications. The two most common are LISP and Prolog.

Numara Software:

Neural Network Help Desk Software - Offers Track-It! help desk software for advanced problem resolution, knowledge management, and employee/customer self-help via the Web.

Free demo.

KnowledgeStorm:

Artificial Intelligence Information Resource - Business technology search site offering software, service, re-seller and hardware information on thousands of IT solutions and Intelligent software products and suppliers.

Searchable directory of over 700 product abstracts for AI and intelligent software products. MIT Artificial Intelligence Projects
The following are links to web sites for many of the research groups and research projects that CSAIL members are involved in.

American Association for Artificial Intelligence (AAAI) Provides links to AAAI conferences, symposia, publications, workshops, resources, and organization information. MIT's AI Lab home page

This site features a number of artificial intelligence resources, including several online publications.

SRI International Artificial Intelligence Center (AIC) page Home page for SRI's International's Artificial Intelligence Center (AIC), one of the world's major centers of research in artificial intelligence. Here you can find information on their research programs, staff, and publications.

The Centre for Neural Computing Applications (CNCA) The CNCA is a University research group dedicated to developing neural computing and SMART software solutions to real world problems. The site provides project details, papers, extensive related links pages, and up-to-date information in the AI/neural computing world. The Outsider's Guide to AI Contains AI history, information on the LISP language, natural language processing, hardware, expert systems, human behavior, message filtering, robotics, and an AI timeline.

AS (AS/400):

Acronym for Autonomous System
An Autonomous System (AS) is a group of networks under mutual administration that share the same routing methodology. An AS uses an internal gateway protocol and common metrics to route packets within the AS and uses an external gateway protocol to route packets to other Autonomous Systems.

ASCII:

Acronym for the American Standard Code of Information Interchange.

Pronounced ask-ee, ASCII is a code for representing English characters as numbers, with each letter assigned a number from 0 to 127? For example, the ASCII code for uppercase M is 77.

Most computers use ASCII codes to represent text, which makes it possible to transfer data from one computer to another.

Text files stored in ASCII format are sometimes called ASII files. Text editors and word processors are usually capable of storing data in ASCII format, although ASCII format is not always the default storage format. Most data files, particularly if they contain numeric data, are not stored on ASCII format. Executable programs are never stored in ASCII format.

The standard ASCII character set uses just 7 bits for each character. There are several larger character sets that use 8 bits, which gives them 128 additional characters. The extra characters are used to represent non-English characters, graphics symbols, and mathematical symbols.

Several companies and organizations have proposed extensions for these 128 characters. The DOS operating system uses a superset of ASCII called extended ASCII or high ASCII. A more universal standard is the ISO Latin 1 set of characters, which is used by many operating systems, as well as Web browsers.

Another set of codes that is used on large IBM computers is EBCDIC.

ASIC:

Pronounced ay-sik, and short for Application-Specific Integrated Circuit, a chip designed for a particular application (as opposed to the integrated circuits that control functions such as RAM in a PC). ASICs are built by connecting existing circuit building blocks in new ways. Since the building blocks already exist in a library, it is much easier to produce a new ASIC than to design a new chip from scratch.

ASICs are commonly used in automotive computers to control the functions of the vehicle and in PDAs.

ASM:

Automatic Storage Management (ASM) is a feature in Oracle Database 10g that provides the database administrator with a simple storage management interface that is consistent across all server and storage platforms. As a vertically integrated file system and volume manager, purpose-built for Oracle database files, ASM provides the performance of async I/O with the easy management of a file system. ASM provides capability that saves the DBAs time and provides flexibilityto manage a dynamic database environment with increased efficiency.

ATA:

Short for Advanced Technology Attachment, a disk drive implementation that integrates the controller on the disk drive itself. There are several versions of ATA, all developed by the Small Form Factor (SFF) Committee:

• ATA: Known also as IDE, supports one or two hard drives, a 16-bit interface and PIO modes 0, 1 and 2.

• ATA-2: Supports faster PIO modes (3 and 4) and multiword DMA modes (1 and 2). Also supports logical block addressing (LBA) and block transfers. ATA-2 is marketed as Fast ATA and Enhanced IDE (EIDE).

• ATA-3: Minor revision to ATA-2.

• Ultra-ATA: Also called Ultra-DMA, ATA-33, and DMA-33, supports multiword DMA mode 3 running at 33 MBps.

• ATA/66: A version of ATA proposed by Quantum Corporation, and supported by Intel, that doubles ATA's throughput to 66 MBps.

• ATA/100: An updated version of ATA/66 that increases data transfer rates to 100 MBps. ATA also is called Parallel ATA. Contrast with Serial ATA.



The Next Article Submission will pick up with the "B" Section...

"Backplane!"



...Til Next Time.


Happy Learning!


~ "SANKOFA" the "MAAFA" ~



Peace and Love,


"G"
"Twitter"
https://twitter.com/AuthorBoulwareG




Posting List Links and Locations to Articles by Boulware
'The Platforms of BoulwareEnterprises/Publications'
~ 'The E-Store for Books by Gregory V. Boulware, Esq.’ ~
http://boulwareenterprises.com/-_A_Portent...
http://thebookmarketingnetwork.com/profile...
New BCID: 823-13940945
http://www.bookcrossing.com/journal/139409...
New BCID: 823-13940945 – Hallow

/*
~BoulwareEnterprises~
http://www.BoulwareEnterprises.com
https://about.me/gregory_boulware

“Article Posting Sites”
https://www.blogger.com/profile/1091094619...
https://boulwareenterprises.wordpress.com/
http://www.linkedin.com/pub/gregory-boulwa...
https://www.goodreads.com/author/show/7237...
http://thebookmarketingnetwork.com/profile...
http://www.wattpad.com/user/GregLitideas
https://literarygreg10xsmenow.tumblr.com/
http://koobug.com/GregoryVB_Author?p1498
https://about.me/gregory_boulware
http://www.pinterest.com/writerauthor6bk/p...
https://plus.google.com/111976345290342184...
http://www.bookcrossing.com/mybookshelf/GV...
https://www.facebook.com/profile.php?id=10...
http://ezinearticles.com/?expert_bio=Grego...

~The Connect Platform~

http://blackhistory.com/cgi-bin/blog.cgi?i...
http://hbcu.com/cgi-bin/blog.cgi?id=641608
http://hbcuconnect.com/cgi-bin/blog.cgi?id...
http://blackauthorsconnect.com/cgi-bin/blo...
http://blackwomenconnect.com/cgi-bin/blog....
http://blackinamerica.com/cgi-bin/blog.cgi...
http://chocolatepagesnetwork.com/cgi-bin/b...
http://escapeintotheword.connectplatform.c...

"Amazon"
http://www.amazon.com/Gregory-V.-Boulware/...
https://authorcentral.amazon.com/gp/profil...
http://www.authorsden.com/gregoryvboulware

And

"Twitter"
https://twitter.com/AuthorBoulwareG
https://twitter.com/hashtag/BoulwareBooks?...
https://twitter.com/AuthorBoulwareG/status...

‘Virtuosity101.com’
http://virtuosity101.com/
http://virtuosity101.com/cgi-bin/blog.cgi?...
http://virtuosity101.com/content/288611/sa...
http://virtuosity101.com/content/288593/a-...
http://blackisms.com/education-2/
https://www.academia.edu/
https://independent.academia.edu/GregoryVB...
http://knowledgeisking.ning.com/profile/Gr...
https://www.authorsden.com/visit/author.as...

ThePaper.Li.BoulwareDaily
http://paper.li/~/publisher/5445ebb6-59f5-...
*/


>


/*
Paper.LiBoulwareDaily_11.4.18
http://paper.li/~/publisher/5445ebb6-59f5-...
'ThePlatformsOfBoulwarePublications,Information,Data,&EntertainmentEnterprises'
https://about.me/gregory_boulware
https://twitter.com/hashtag/BoulwareBooks?...
http://www.phillytrib.com/

"I've learned that people will forget what you said, people will forget what you did, but people will never forget how you made them feel."- Maya Angelou (1928-)

Up Close:
#ShortStories #BlackAuthors #BookEnds #Boulware #TheBookMark #BoulwareBooks #ReadAloud #TheAmazonian #HBCU #IndieBound #BookIt2Me #KDP #TheStoryTeller #BlackAuthors #ShortStory #AStoryTold #BlackStoryTellers #ANeedToRead #ReadNeedy #TheNeed2Read #UnlimitedReading #UnlimitedBooks #BooksUnlimited #WellRead #stories #ShortStoryTellers #Metro #EzineAuthors #ReadersGazette #eReader #BookSpots #TweetYourBooks #Published #WriteIntoPrint #AuthorsDen #MediumDailyDigest #HarlemBookFair #TheHuffingtonPost #TheDailyWeb #TheHerald #TheWashingtonPost #AI #SOHOPress #Books #TheReadingList #BookLovers #BookClub #BookZiny #TheBookShop #ByTheBook #BookMarketing #BookSeller #Edited #Hallow #HallowII #Fairmount #Bear #TheOneThingIKnow #SpiritOfTheSoul #Anthology #WordPress #Blogger #BlogSpot #WordStream #Polymath #RichardWright #PaulLaurenceDunbar #JamesBaldwin #ChesterHines #Erudite #TooFondOfBooks #UnitedBlackBooks #MosaicBooks #NationalBlackBookFestival #Nibbies #BBC #BBCNews #StephenKing #MNightShyamalan #IsaacAsimov #DeanKoontz #EdgarAllanPoe #RayBradbury #WilliamPeterBlatty #TheBritishBookIndustry #TheBritishBookAwards #BookSellerAssociation #BertramBooks #WellRead #BonnierPublishing #FMcM #FirstryGroup #Gardners #HarbottleandLewis #HarperCollinsPublishers #IPG #IndependentPublishersGuild #PublishersPublicityCircle #EastFallsHousingProject #EastFallsStories #FaceBook #WarriorsOfTheMedicineWheel


Media:
#BlackAuthors #Boulware #BoulwareBooks #HBCU #ReadAloud #IndieBound #BlackWritersMuseum #onWURD #BoulwarePublications #12thTribe #BlackAmerica #SNCC #SCLC #NAACP #COAR #RepJohnLewis #DrKing #MartinLutherKing #Ghandi #Confucious #TheRevAl #MichaelCoard #CharlesBowser #Demonstration #Obama #MalcolmX #Kenya #March #FreedomRiders #FreePress #FreedomRides #PhillyTrib #PhillyTribune #FaceBook #BlackInAmerica #Hebrew #Judah #Yahshua #SojournerTruth #Sojourner #BlackHistory #BlackHistoryMonths #History #HerStory #KnowledgeIsKing #eReader #eReaders #TheDailyBeast #TheGuardian #BlackThen #P2P #HarlemBookFair #TheHuffingtonPost #TheDailyWeb #TheHerald #TheWashingtonPost #MindTV #Metro #EzineAuthors #ReadersGazette #BlackToLive #NAN #NationalActionNetwork #3rdEye #PaulRobeson #JamesBaldwin #AugustWilson #HealStorian #Zimbabwe #Ethiopia #Senegal #Uganda #Africa #TheIndigenousPeoples #FightThePowerThatBe #LDF #NavajoNationCouncil #NavajoCodeTalkers #Underground #AmericanIndianVeteransMemorial #NativeTeams #WarriorsOfTheMedicineWheel #AIVMI #Revolution #Democracy #TheAdministration #ThePowerStructure #Deeds #Heritage #Segregation #Priviledged #Resist #Revolt #HumanBeing #Sanction #Boycott #BookSpots #TweetYourBooks #Published #WriteIntoPrint #AuthorsDen #MediumDailyDigest #LifeStyle #CitizensOfCulture #IAfroFuturism #Wakanda #BigCats #globalcitizenship #Pinterest #Forbes #Robots #ArtificialIntelligence #AI #BBC #BBCNews #SOHOPress #VikingBooks #DoubledayBooks #Polymath #Erudite #PoliticsNation

Literary:
#Books #IndieBound #TheReadingList #BookLovers #BookClub #BookZiny #TheBookShop #ByTheBook #BookMarketing #BookSeller #SelfHelp #BoulwareBooks #ReadWrite #BoulwarePublications #WordStream #ReadAloud #AmericaReframed #Entrepreneur #FaceBook #Ghosted #GhostWriter #Edited #Hallow #HallowII #Fairmount #Bear #TheOneThingIKnow #SpiritOfTheSoul #Anthology #Enterprise #Essayist #Author #Writer #SmokeyTheBear #YogiBear #TheBearFacts #Berean #CCPedu #TempleU #CheyneyU #LincolnU #PennStateU #Grambling #Clemson #TheMedia #NJNews #NYNews #PhillyNews #Published #LinkedIn #Chicago #EzineAuthors #ReadersGazette #IAm #IAmAMan #ManyRiversPBS #BooksAreMyBag #VoiceBoxLive #MindEye #BookSpots #Books2Readers #KDP #BookHub #TheBookHub #DarkHumour #CrimeFiction #TooFondOfBooks #WebsiteMag #IoT #TweetYourBooks #WriteIntoPrint #AuthorsDen #MediumDailyDigest #BlackInAmerica #TheRevAl #IAfroFuturism #Africa #BlackHistory #WarriorsOfTheMedicineWheel #BlackHistoryMonths #Kings #BlackPanther #TChalla #KingJames #Wakanda #UnitedBlackBooks #HarlemBookFair #MosaicBooks #NationalBlackBookFestival #Nibbies #BBC #BBCNews #Hebrew #Judah #Yahshua #Galactic #eReader #eReaders #MNightShyamalan #IsaacAsimov #HorridLore #PromoteHorror #NightmareOnFilmSt #Horror #HistoricMystery #Polymath #Erudite #StephenKing #DeanKoontz #RayBradbury #WilliamPeterBlatty #HGWells #JulesVerne #EdgarAllanPoe

Networks:
#Technology #SelfHelp #BoulwareBooks #IndieBound #BoulwarePublications #ClickBait #CBC #WordPress #BlogSpot #Amazon #KDP #Tumblr #PinteRest #FaceBook #RepJohnLewis #TheRevAl #Serendipity #Universal #Ubiquitous #TheLearningKey #UnitedBlackBooks #HarlemBookFair #TheDailyBeast #TheGuardian #eReaders #ReadAloud #TheUltimateRadioNetwork #TheOrderOfThings #Software #DataSource #DataBase #ComputerWorld #Oracle #WebSiteMagazine #Wired #Networks #Networking #DataMiner #Dataminning #TheOneThingIknowIs #Nibbies #Algorithm #Syntax #IoT #RDBMS #SEO #CRM #CPU #SMO #SMM #iOS #MIS #IT #BI #ISDN #SOHO #OSI #EMR #ANSII #SCSI #Chip #PC #AI #DynaSet #RAID #SSL #GUI #APP #Elipse #SIMS #Boolean #SMTP #SPI #DB #SMS #GUID #SNMP #SOA #SOX #OLAP #FAT #ASP #SaaS #Nano #Program #EdTech #WebsiteMag #BlackAmerica #BlackInAmerica #Networking #IAfroFuturism #ExpeditionWild #Wakanda #AIVMI #globalcitizenship #Pinterest #Published #Forbes #BBC #BBCNews #MAAtEnterprises #Galactic #eReader #ReadersGazette #MIT #Polymath #Erudite #WarriorsOfTheMedicineWheel #FaceBook #Tumblr #LinkedIn #Blogger

Publishers:
#HarlemBookFair #UnitedBlackBooks #MosaicBooks #NationalBlackBookFestival #IndependentBlackMedia #EzineArticles #ReadAloud #TheBritishBookIndustry #TheBritishBookAwards #BookSellerAssociation #BertramBooks #BonnierPublishing #FMcM #FirstryGroup #Gardners #HarbottleandLewis #HarperCollinsPublishers #IPG #IndependentPublishersGuild #FredNeuman #Nielson #PublishersPublicityCircle #TheReadingAgency #ThePublishersAssociation #OG #BoulwarePublications #IndieBound #KDP #Robots #ArtificialIntelligence #AI#TheAssociationofLearnedandProfessionalSocietyPublishers #Tesco #BarnesandNoble #NewAppleBooks #PandorasBooks #Nibbies #KDP #CongressionalBlackCaucus #NigelRoby #Published #Forbes #PCH #PublishersClearingHouse #SOHOPress #VikingBooks #DoubledayBooks

Bonus Material Just For Your Edification:

What's In A Book
https://www.blogger.com/profile/1091094619...
#AIVMI #globalcitizenship #Pinterest #Published #Forbes #BBC #BBCNews #MAAtEnterprises #BoulwareBooks #HarlemBookFair #UnitedBlackBooks #MosaicBooks #NationalBlackBookFestival #IndependentBlackMedia #EzineArticles #History #HerStory #KnowledgeIsKing #eReaders #eReader #TheDailyBeast #TheGuardian #BlackThen #eReader #IndieBound #BookIt2Me #KDP #TheStoryTeller #BlackAuthors #ShortStory #AStoryTold #BlackStoryTellers #ANeedToRead #ReadNeedy #TheNeed2Read #UnlimitedReading #UnlimitedBooks #BooksUnlimited #WellRead #stories #ShortStoryTellers #Metro #EzineAuthors #ReadersGazette #NationalActionNetwork #NAN #ReadAloud




Ref.:
Gregory V. Boulware
107
ASB/CS-CP
Confidential
Gregory V. Boulware
108
ASB/CS-CP
Confidential
Gregory V. Boulware
109
ASB/CS-CP
Confidential
Gregory V. Boulware
110
ASB/CS-CP
Confidential
Gregory V. Boulware
111
ASB/CS-CP
Confidential
Gregory V. Boulware
112
ASB/CS-CP
Confidential
Gregory V. Boulware
113
ASB/CS-CP
Confidential
Gregory V. Boulware
114
ASB/CS-CP
Confidential
Gregory V. Boulware
115
ASB/CS-CP
Confidential
Gregory V. Boulware
116
ASB/CS-CP

*/

>

/*

~ Happy NEW YEAR to One and ALL! :-) ~

1.1.19

Addendum:

(Note to The Deacon and Our Connect Platform Family! - Well folks, it's just as I've promised... The Entire, Complete Chapter On "Just A Few Techie Definitions! ...The chapter is pretty lengthy; too large to post via 'The Connect Platform.' Use this info with my blessings...with sincere hope and belief that this data will help/benefit all who need a little help in "How To UnderStand Information Technology!" ...and more!)

"It is my commitment, my profound propensity to indefatigably inscribe throughout the annals of time and in the name of education, and Information, my contribution(s) to the practice of "Free Education and Self-Help" Publication(s) For One And All - Across The Globe And Beyond!"
~BoulwareEnterprises/Publications~

Presenting...

"Terminus*Infinitus": Beyond A to Z
By
Gregory V. Boulware, Esq.
https://www.academia.edu/38065862/_Terminu...
https://www.amazon.com/gp/product/15025811...


"Amazon"
http://www.amazon.com/Gregory-V.-Boulware/...


Helpful Search Tags:

#Education #Information #IT #BI #Computers #BoulwareBooks #Academia #Twitter #WordPress #SelfHelp #HBCU #Learning #eReader #Teaching #Tecnology #AI #BI #IT #Computers #MachineLearning #CCPedu #Berean #onWURD #College #BereanInstitute #LinkedIn #School #Blogger #FaceBook #Tumblr #Pinterest #Technology #Amazon #Algorithm #Syntax #IoT #RDBMS #SEO #CRM #CPU #SOHO #OSI #EMR #ANSII #SCSI #Chip #PC #AI #Elipse #SIMS #Boolean #SMTP #SPI #DB #SMS #GUID #SNMP #SOA #SOX #OLAP #FAT #ASP #SaaS #Nano #Program #EdTech #WebsiteMag #RAID #SSL #GUI #Software #DataSource #DataBase #ComputerWorld #Oracle #WebSiteMagazine #Wired #Networks #Networking #DataMiner #Dataminning #MIS #TheOneThingIknowIs #eReaders #ReadAloud #SMO #SMM #iOS #Blogger #TheLearningKey #UnitedBlackBooks #HarlemBookFair #TheDailyBeast #TheGuardian #Published #BlogSpot #KDP #Networking #IoT #TheOrderOfThings #Nibbies #ReadersGazette #MIT #Polymath #Erudite #ISDN #DynaSet #APP #BlackAmerica #BlackInAmerica #IAfroFuturism #RepJohnLewis #TheRevAl #Serendipity #Universal #Ubiquitous #MAAtEnterprises #Galactic #WarriorsOfTheMedicineWheel #Forbes #BBC #BBCNews #IndieBound #BoulwarePublications #AIVMI #globalcitizenship #Wakanda #TheUltimateRadioNetwork #ExpeditionWild #ClickBait #CBC


*/
Posted By: Gregory V. Boulware, Esq.
Sunday, November 18th 2018 at 1:15PM
You can also click here to view all posts by this author...

Report obscenity | post comment
Share |
Please Login To Post Comments...
Email:
Password:

 
Thank You for this post Brother Doctor Gregory V. Boulware, Esq for this information of "Just A Few Techie Definitions" I found it very valuable.



Sunday, November 18th 2018 at 5:05PM
Dea. Ron Gray Sr.
/*

Happy To Oblige! :-)

...AS Always, My Very Good Brother "Deacon Ron Gray, you're very much welcome(d)! :-)

I do hope this data/info will provide ample aid in the studies of all whom are interested...in "Technology" or simply to broaden one's educational horizons.

Peace and Love,

"G"

*/
Sunday, November 18th 2018 at 9:24PM
Gregory V. Boulware, Esq.
It will Brother Doctor Gregory V. Boulware, Esq because this info helped me, Thanks again.



Sunday, November 18th 2018 at 11:35PM
Dea. Ron Gray Sr.
Great post! I can use it as a reference for the time I come across something similar. Really though I hate technology and gadgets! 😂
Tuesday, November 20th 2018 at 7:31AM
MIISRAEL Bride
Perhaps hate is too strong of a word,..disc it might work more functionality ..
I reckon.
Tuesday, November 20th 2018 at 7:35AM
MIISRAEL Bride
/*

Of course 'We All' understand just what you mean, Sister MisRael. :-)

Happy to have helped you both and anyone else who has benefited from this tid-bit of data... :-)

Stay Tuned...I think there is a little bit more to come.

Peace and Love,

"G"

*/


Wednesday, November 21st 2018 at 11:01AM
Gregory V. Boulware, Esq.
/*

Ya’ateeh, Y'Ho, Shalom Alaikum, As Salaam Alaikum, Hotep, Hola, Konichiwa, Privyet, Hallo, Ni Hao, Anyoung Haseyo - Hello Family!

With the realization of how long/big the 'Academia Posting' of "Terminus*Infinitus," the series "Just A Few Techie Definitions" will continue in its planned alphabetical offerings from 'B to Z.' Many students also do not have "The One Thing I Know Is..." 'How To Understand Information Technology' as not being required reading and/or the inability to acquire the paperback book, these postings will be of great necessity...it is a pleasure to be able to provide this "Free Education and Self-Help" academic assistance.

Peace and Love,

"G"

*/


Friday, January 4th 2019 at 1:54PM
Gregory V. Boulware, Esq.
Please Login To Post Comments...
Email:
Password:

 
More From This Author
~ 'The Heart and Soul of An Autocrat' or 'Plight of The Obsolete Man' ~
~ "So Let It Be Written..." and so, it has ~
~ "The Collective Texts" ~
~ "The Top Ten" ~
"Parents Plead for Their Kids' ReturnAafter Children Taken Into Custody During Traffic Stop!"
~ "Shared Enlightenment by Simply Reading Boulware" ~
~ 'The Heart and Soul of An Autocrat' or 'Plight of The Obsolete Man' ~
~ "The Dickens, You Say?" ~
Forward This Blog Entry!
Blogs Home

(Advertise Here)
New Members
>> more | invite