Audrey Vignaux

Normalized Er Diagram Of Employees

Entity Relationship Diagram

Miscellaneous

James V. Luisi , in Pragmatic Enterprise Architecture, 2014

8.1.2 Nonsensical Buzzwords

As with any taxonomy, there are bound to be terms that emerge that misrepresent information and mislead others; most of them are accidental from individuals that see one side of an issue, but lack the experience to have encountered the other sides of the issue that help put it in perspective. We see this in books and commonly on the Web.

While it is neither practical nor possible for that matter to identify them all, we will share one of our favorites.

My recommendation is to ask lots of questions to learn what any buzzword means. If you don't get an explanation that makes it crystal clear, keep asking questions. The others in the room probably have no idea what the buzzword means either.

8.1.2.1 Object Relational Impedance Mismatch

Entity relationship diagrams were in use nearly a decade before IBM announced their first relational database management system. Entity relationship diagrams were routinely used with:

"hierarchical databases" (e.g., DL/I and IMS),

"inverted list databases" (e.g., Adabas), and

"network databases" (e.g., IDMS).

The point here is that entity relationship diagrams provide a basic method with which to depict collections of data points and the relationships that those collections have with one another.

It is therefore amusing how often one can find statements on the Web, including in Wikipedia, that state that entity relationship diagrams can only depict designs for relational databases. But that said, it gets even better.

Now that the reader is now knowledgeable in many of the differences between information systems and control systems, it is easy to understand how object-oriented paradigms originated with control systems, and then became adapted to information systems.

Yes, the architectural foundation between the two paradigms is different, but that's only because there are no tangible things that you can consistently touch in an information system.

Stable collections of data points within information systems are "objects" around which the application may be architected, as with collections of data that are identified within a logical data architecture. This goes down to the smallest collection of data points for which there are many synonyms, which include:

record,

tuple,

entity,

table, and

object.

A conceptual or logical data model, as represented by an entity relationship diagram, is suited to model the data, regardless of what anyone decides to call the collections of data points. In other words, relational has nothing to do with it.

Now that there are a few generations of developers that only know object-oriented and relational, who have seen the differences between object-oriented control systems and relational database-oriented information systems, they have coined a new term called, "object relational impedance mismatch."

The following are examples of what has been used as justification for the existence of "object relational impedance mismatch."

Encapsulation: Object-oriented programming languages (e.g., Ada) use concepts to hide functionality and its associated data into the architecture of the application. However, this reason speaks to application, not database architecture.

Accessibility: Public data versus private data, as determined by the architecture of the application, are introduced as additional metadata, which are impertinent to data models.

Interfaces: Objects are said to have interfaces, which simply confuses interfaces that exist between modules of applications with data objects.

Data type differences: Object-oriented databases support the use of pointers, whereas relational does not. From the perspective of database management system architectures, the architectures that support pointers include hierarchical, network, and object oriented, whereas inverted list, relational, and columnar do not.

Structural and integrity differences: Objects can be composed of other objects. Entity relationship diagrams support this construct as well.

Transactional differences: The scope of a transaction as a unit of work varies greatly with that of relational transactions. This is simply an observation of one of the differences between control systems and information systems. What does "transaction" even mean when you are flying a B2 Stealth bomber, and if the transaction rolls back, does that make the plane land backwards where it took off from?

Okay, I can predict the e-mails that I am going to receive on this last one, but you have to inject a little fun into everything you do.

Read full chapter

URL:

https://www.sciencedirect.com/science/article/pii/B9780128002056000081

Designing and Creating SQL Server Databases

In Designing SQL Server 2000 Databases, 2001

Entity-Relationship Diagrams

Entity-relationship (ER) diagrams are the blueprints for database applications in OLTP systems. The process of creating ER diagrams is well documented and involves:

Identifying database entities (tables)

Defining entity attributes (columns)

Identifying unique row identifiers (keys)

Defining relationships between entities

The data model then goes through a process called normalization that includes three primary rules for efficient data storage. For a detailed description of the normalization process, refer to the "Database Normalization" sidebar in this chapter.

Database Normalization

Designing your database model is dependent on how your database will be used. OLTP systems are designed around a relatively standardized process called normalization. After you have completed the tasks of entity discovery or identifying the logical data entities in your system, the normalization rules provide guidelines for fine-tuning your data model to optimize performance, maintenance, and querying capabilities. Having said that, complete normalization is not always the best solution for your database. OLAP systems and some OLTP application requirements often result in a denormalized database or at least a denormalized segment. In OLAP solutions that typically contain mass amounts of historical data, the denormalized structure, including multiple copies of data and derived columns, can significantly increase analysis performance and justify its violation of normalization rules. The choice of complete normalization is always dependent on how your database will be used:

Normalization is a process of organizing the tables in a database into efficient, logical structures in order to eliminate redundant data and increase integrity. The physical results of normalizing a database are a greater number of smaller tables that are related to each other. Although there are up to seven normalization rules, called forms, the first three forms of normalization are the most significant and commonly used. The remaining normal forms are primarily academic. The primary normal forms are:

First normal form (1NF) Eliminate repeating groups and nonatomic attributes (or fields that contain multiple values).

Second normal form (2NF) Eliminate partial dependencies.

Third normal form (3NF) Eliminate nonkey dependencies and derived columns.

In order for the tables in your database to comply with the 1NF:

They must have no repeating groups.

Each field must be atomic (contains no multivalue data).

So what does that mean? The easiest way to understand this concept is to take a look at an example of a table that needs to be normalized. Table 4.5 is an un normalized table representing cities.

Table 4.5. An Unnormalized City Table

State (Key) Governor City (Key) Founded Years Old Founders Suburb1 Suburb2
NY Pataki Roberton 12/28/1941 59 Erwin, Patton Michaelville Alexopolis
NY Pataki Willville 8/24/1932 68 DeWolf Auburn

After you inspect the table for a moment, you will see that Suburb1 and Suburb2 are a repeating group. One of the reasons that repeating groups are troublesome is that they restrict how far you can extend your database to include all related information. After all, what would you do with a third suburb in this case? Another problem is that unnormalized database designs waste space. In this example, cities that have no or one suburb will not fully utilize the allocated space for the row. Finally, these designs make searching and sorting cities by their suburbs difficult. To eliminate the repeating group, you need to create a new entity called Suburb and form a relationship between the two entities.

There is another problem with the City table: Founders is not atomic, because it contains more than one value that can be split. Again, this design will prevent you being able to sort or search on the data effectively. We could try to resolve this problem by splitting Founders into Founder1 and Founder2, However, this would create a repeating group like the one we had with Suburb1 and Suburb2. Once again, the solution is to add a new entity that represents the founders related to a city. After we add the two entities, we will comply with the 1NF and our tables should look like Tables 4.6–4.8.

Table 4.6. A Revised City Table

State (Key) Governor City (Key) Founded YearsOld
NY Pataki Roberton 12/28/1941 59
NY Pataki Willville 8/24/1932 68

Table 4.7. A Founder Table

State (Key) City (Key) Founder (Key)
NY Roberton Erwin
NY Roberton Patton
NY Willville DeWolf

Table 4.8. A Suburb Table

State (Key) City (Key) Suburb (Key)
NY Roberton Michaelville
NY Roberton Alexopolis
NY Willville Auburn

We could not conform to the 2NF until we had complied with the 1NF because, each layer of normalization builds on the previous layers. In order to conform to the 2NF, the tables must follow these guidelines:

All nonkey fields must be related to all key fields.

The tables must comply with the rules of the 1NF.

When you look at our current schema, you can see that City is in violation of the 2NF because Governor is dependent only on State, not on City. Once more, the solution is to add a new entity that stores the governor information about the state. One of the benefits of conforming to the 2NF is that you will remove repetitive data, because you have to store the Governor of Ohio only once. This saves storage space and keeps that data consistent because they are entered and stored only once. Tables 4.9-4.12 show your tables in the 2NF.

Table 4.9. The 2NF City Table

State (Key) City (Key) Founded YearsOld
NY Roberton 12/28/1941 59
NY Willville 8/24/1932 68

Table 4.10. The 2NF State Table

State (Key) Governor
NY Pataki

Table 4.11. The 2NF Founder Table

State (Key) City (Key) Founder (Key)
NY Roberton Erwin
NY Roberton Patton
NY Willville DeWolf

Table 4.12. The 2NF Suburb Table

State (Key) City (Key) Suburb (Key)
NY Roberton Michaelville
NY Roberton Alexopolis
NY Willville Auburn

After we have completed normalization through the 2NF, we can further normalize by reviewing the rules of the 3NF. In order to conform to the 3NF, the tables must follow these guidelines:

Nonkey fields cannot be dependent on any other nonkey field.

Remove any derived or computed columns.

The tables must comply with the rules of the 2NF.

If you review our current schema, you'll see one obvious violation of the 3NF: the YearsOld column in our City table. YearsOld is a derived column based on the current date and the Founded column of the City table. Physically storing this information is both a waste of space and a potential maintenance and accuracy problem. To comply with the 3NF, we must remove the YearsOld column. Maintaining derived data like these can introduce inaccuracies, producing application failures. Consider if this field was used to determine a city's eligibility for financial rewards that are based on a city's anniversary. Now our City table in the 3NF will look like the one in Table 4.13.

Table 4.13. The 3NF City Table

State (Key) City (Key) Founded
NY Roberton 12/28/1941
NY Willville 8/24/1932

After you have completed normalization through the 3NF, you have designed an efficient database model that will offer optimized storage requirements, data maintenance, and querying capabilities for OLTP systems,

In the following sections, we use the designer tool available in SQL Server to create a simple ER diagram for our Southwind database. From our ER diagram, we can create our database tables to store information for our application. Our ER diagram will be based on the logical model we created in Figure 4.7.

Read full chapter

URL:

https://www.sciencedirect.com/science/article/pii/B9781928994190500075

Accounting

Uday S. Murthy , in Encyclopedia of Information Systems, 2003

IV.C Data Repository for Storing Revenue-related Information

The ER diagram in Fig. 4 depicts the various entities and relationships that must be represented in the enterprise database for storing information related to revenue business processes for the illustrative retailing firm scenario. A standard set of conversion rules are applied to deduce the relational tables that should result from the ER diagram. The conversion rules are as follows: (1) a separate table is created for each entity; (2) attributes are created for each entity and the primary key in each entity is identified; (3) for the purpose of conversion, all "optional" relationships are treated as "mandatory many" relationships; (4) the primary key of the entity on the "one" side of a relationship is posted to the table of the entity on the "many" side of a relationship; and (5) a separate table is created for the relationship itself for entities participating in an M:M relationship with the primary key of each table being posted to the new relationship table to form a composite key. Attributes unique to many-to-many relationships are posted as nonkey attributes in the composite key table. Applying the conversion rules and streamlining the resulting tables to eliminate redundancies and inconsistencies, we arrive at the set of tables shown in Fig. 5. Primary keys are underlined and foreign keys are indicated with an asterisk at the end of the field.

Figure 5. Tables for revenue processing subsystem.

Read full chapter

URL:

https://www.sciencedirect.com/science/article/pii/B0122272404000010

Database Design Case Study 2

Jan L. Harrington , in Relational Database Design (Third Edition), 2009

Designing the Tables

The ER diagram in Figure 12-18 produces the following tables:

volunteer (volunteer_numb, first_name, last_name, street, city, state_code, zip, phone)

state (state_code, state_name)

availability (volunteer_numb, day_code, start_time, end_time)

day (day_code, day_name)

skill (skill_numb, skill_description)

skills_known (volunteer_numb, skill_numb)

job (job_numb, job_description, job_date, job_start_time, estimated_duration, numb_volunteers_needed)

job_skill_required (job_numb, skill_numb, numb_volunteers_with_skill)

volunteer_scheduled (volunteer_numb, job_numb, skill_numb)

Read full chapter

URL:

https://www.sciencedirect.com/science/article/pii/B9780123747303000140

Normalization

Jan L. Harrington , in Relational Database Design (Third Edition), 2009

Translating an ER Diagram into Relations

An ER diagram in which all many-to-many relationships have been transformed into one-to-many relationships through the introduction of composite entities can be translated directly into a set of relations. To do so:

Create one table for each entity.

For each entity that is only at the "one" end of one or more relationships and not at the "many" end of any relationship, create a single-column primary key, using an arbitrary unique identifier if no natural primary key is available.

For each entity that is at the "many" end of one or more relationships, include the primary key of each parent entity (those at the "one" end of the relationships) in the table as foreign keys.

If an entity at the "many" end of one or more relationships has a natural primary key (for example, an order number or an invoice number), use that single column as the primary key. Otherwise, concatenate the primary key of its parent with any other column or columns needed for uniqueness to form the table's primary key.

Following these guidelines, we end up with the following tables for the Antique Opticals database:

Customer (customer_numb, customer_first_name, customer_last_name, customer_street, customer_city, customer_state, customer_zip, customer_phone)

Distributor (distributor_numb, distributor_name, distributor_street, distributor_city, distributor_state, distributor_zip, distributor_phone, distributor_contact_person, contact_person_ext)

Item (item_numb, item_type, title, distributor_numb, retail_price, release_date, genre, quant_in_stock)

Order (order_numb, customer_numb, order_date, credit_card_numb, credit_card_exp_date, order_complete?, pickup_or_ship?)

Order item (order_numb, item_numb, quantity, discount_percent, selling_price, line_cost, shipped?, shipping_date)

Purchase (purchase_date, customer_numb, items_received?, customer_paid?)

Purchase item (purchase_date, customer_numb, item_numb, condition, price_paid)

Actor (actor_numb, actor_name)

Performance (actor_numb, item_numb, role)

Producer (producer_name, studio)

Production (producer_name,item_numb)

Note: You will see these relations reworked a bit throughout the remainder of the first part of this book to help illustrate various aspects of database design. However, the preceding is the design that results from a direct translation of the ER diagram.

Read full chapter

URL:

https://www.sciencedirect.com/science/article/pii/B9780123747303000061

Foreword

Dr. Gordon C. Everest , in Information Modeling and Relational Databases (Second Edition), 2008

ORM does not supplant ER diagrams or relational database designs, rather it is a stage before. It can enable, enlighten, and inform our development and understanding of ER/relational data models. We build records more for system efficiency, than for human convenience or comprehension. The premature notion of a record (a cluster of attribute domains along with an identifier to represent an entity) actually gets in the way of good data modeling. ORM does not involve records, tables, or attributes. As a consequence, we don't get bogged down in "table think"—there is no need for an explicit normalization process.

Read full chapter

URL:

https://www.sciencedirect.com/science/article/pii/B9780123735683500035

Data Modeling for the Structured Environment

W.H. Inmon , ... Mary Levins , in Data Architecture (Second Edition), 2019

The Dis

The next level of the data model is the place where much detail is found. This level of the data model is called the "data item set" (dis).

Each entity identified in the ERD has its own dis. Using the simple example shown in Fig. 7.3.3, there would be one dis for customer, another dis for order, another dis for product, and yet another dis for shipment.

The dis contains keys and attributes, and the dis shows the organization of the data.

The symbol for a simple dis is seen in Fig. 7.3.4.

Fig. 7.3.4

Fig. 7.3.4. A data item set—dis.

The basic construct of a dis is a box. In the box are the elements of data that are closely related and that belong together. The different lines between the groupings of data have meaning. A downward-pointing line indicates multiple occurrences of data. A line to the right indicates a different type of data.

As a simple example of a dis, consider the dis shown in Fig. 7.3.5.

Fig. 7.3.5

Fig. 7.3.5. A simple dis.

The anchor or primary data are indicated by the box of data that is at the top left of the diagram. The anchor box indicates that the data that relate directly to the key of the box are description, unit of measure, unit manufacturing cost, packaged size, and packaged weight. The elements of data exist once and only once for each product.

Data that can occur multiple times are shown beneath the anchor box of data. One such grouping of data is component id. There can exist multiple components for each product. Another grouping of data that is independent of component id is inventory date and location. The product may have been inventoried in multiple places on different dates.

The lines going to the right of the anchor box indicate types of data. In this case, a product may be used in flight or in ground support.

The dis indicates the keys, attributes, and relationships for an entity.

Read full chapter

URL:

https://www.sciencedirect.com/science/article/pii/B9780128169162000255

Formalization

Jean-Louis Boulanger , in Certifiable Software Applications 3, 2018

6.2.3.9 Entity-relationship diagrams

The entity-relationship model is widely used for designing databases and can also be used to describe the data of a system and their structure.

As for the class diagram, the entity-relationship diagram is easy to use and powerful enough to represent relational structures. It is mainly based on a graphical representation that facilitates its understanding.

Figure 6.17

Figure 6.17. Example of a class diagram

The concepts used are:

entity-types: a set of entities that share data characteristics (e.g. "student", "courses", "university");

relationship-types: a set of relationships between entity-types (e.g. "study", "teach", "is registered with");

attributes: a property of an entity-type or a relationship-type;

cardinality (of a relationship): the number of relationship instances to which an entity can participate.

Read full chapter

URL:

https://www.sciencedirect.com/science/article/pii/B9781785481192500066

Key Concepts

Danette McGilvray , in Executing Data Quality Projects (Second Edition), 2021

Data Model Example

Figure 3.13 shows an example of an entity/relationship diagram (ERD). As mentioned, there are many notations for data models. This figure is rendered according to Approach A, the Row 2 "Semantic" model in Table 3.6 – Data Model Comparison, which follows further in this section. Cardinality and optionality are shown according to the discipline of Richard Barker and Harry Ellis, also used by Approach A. In the diagram:

Figure 3.13

Figure 3.13. An Entity/Relationship Diagram (ERD).

Customer, Sales Order, SO Line Item, Product Type, etc. are examples of entity types.

Note that City, State, and Country are also entity types.

But each of these is also what is called a "sub-type of" the entity type Geographic Area.

That means that each of the sub-types (for example, City) is, by definition, also a definition of the super-type, Geographic Area.

"SO Number", "SO Issued Date", and "SO Completed Date" are attributes of Sales Order.

The asterisk (*) means the attribute is mandatory.

A circle means it is optional.

A hashtag with underline (#) means the attribute is part of the unique identifier for the entity type. The attribute name is also underlined.

The lines between pairs of entity types are examples of Relationships.

Cardinality and optionality of each relationship are further clarified by the text at each end of the line and can be stated in a sentence.

By naming relationships in this way, the resulting sentences must be either true or not true, when presented to someone in the business side of the organization.

Examples of relationships with resulting sentences:

Each Customer may be buyer in one or more Sales Orders.

Optionality of "may be" is indicated by the dashed line nearest Customer.

Cardinality of "one or more" is indicated by the crow's foot nearest Sales Order. Note: For cardinality, the crow's foot notation indicates "many" by its many "toes." It was invented by Gordon Everest, who originally used the term "inverted arrow" (Everest, 1976).

Alternatively, each Sales Order must be sold to one and only one Customer.

The Optionality "must be" is indicated by the solid line nearest the subject entity type (in this case Sales Order).

The Cardinality "one and only one" is indicated by the absence of a crow's foot nearest the object entity type (in this case Customer).

Example of relationship that is also part of the unique identifier:

A vertical bar next to a crow's foot means that the nearest relationship is also part of the unique identifier.

Each instance of a Sales Order is uniquely identified only by SO Number (indicated by #), whereas each instance of an SO Line Item is identified by a combination of the attribute # SO Line Number and the relationship "part of" Sales Order.

Data models at this level are usually used by data modelers only. A good data modeler will facilitate discussions and use simpler diagrams that can be understood by business audiences who need to verify the data and relationships, yet do not need to interpret a detailed model. If needed, someone on your data team with good communication skills can work with the data modeler to ensure those involved can provide input to and comprehend what the data model means to the business and how it can be used by the technologist.

Read full chapter

URL:

https://www.sciencedirect.com/science/article/pii/B9780128180150000098

Normalization

Toby Teorey , ... H.V. Jagadish , in Database Modeling and Design (Fifth Edition), 2011

The Design of Normalized Tables: A Simple Example

The example in this section is based on the ER diagram in Figure 6.4 and the following FDs. In general, FDs can be given explicitly, derived from the ER diagram, or derived from intuition—that is, from experience with the problem domain.

Figure 6.4. ER diagram for employee database.

1.

emp_id, start_date -> job_title, end_date

2.

emp_id -> emp_name, phone_no, office_no, proj_no, proj_name, dept_no

3.

phone_no -> office_no

4.

proj_no -> proj_name, proj_start_date, proj_end_date

5.

dept_no -> dept_name, mgr_id

6.

mgr_id -> dept_no

Our objective is to design a relational database schema that is normalized to at least 3NF and, if possible, minimize the number of tables required. Our approach is to apply the definition of 3NF given previously to the FDs given above, and create tables that satisfy the definition.

If we try to put FDs 1–6 into a single table with the composite candidate key (and primary key) (emp_id, start_date) we violate the 3NF definition, because FDs 2–6 involve left sides of FDs that are not superkeys. Consequently, we need to separate FD 1 from the rest of the FDs. If we then try to combine 2–6 we have many transitivities. Intuitively, we know that 2, 3, 4, and 5 must be separated into different tables because of transitive dependencies. We then must decide whether 5 and 6 can be combined without loss of 3NF; this can be done because mgr_id and dept_no are mutually dependent and both attributes are superkeys in a combined table. Thus, we can define the following tables by appropriate projections from 1–6.

emp_hist: emp_id, start_date -> job_title, end_date

employee: emp_id -> emp_name, phone_no, proj_no, dept_no

phone: phone_no -> office_no

project: proj_no -> proj_name, proj_start_date, proj_end_date

department: dept_no -> dept_name, mgr_id

mgr_id -> dept_no

This solution, which is BCNF as well as 3NF, maintains all the original FDs. It is also a minimum set of normalized tables. In the "Determining the Minimum Set of 3NF Tables" section, we will look at a formal method of determining a minimum set that we can apply to much more complex situations.

Alternative designs may involve splitting tables into partitions for volatile (frequently updated) and passive (rarely updated) data, consolidating tables to get better query performance, or duplicating data in different tables to get better query performance without losing integrity. In summary, the measures we use to assess the trade-offs in our design are:

Query performance (time).

Update performance (time).

Storage performance (space).

Integrity (avoidance of delete anomalies).

Read full chapter

URL:

https://www.sciencedirect.com/science/article/pii/B9780123820204000100

Source: https://www.sciencedirect.com/topics/computer-science/entity-relationship-diagram

Posted by: audreyvignauxe0192663.blogspot.com

Vw Polo 9n3 Wiring Diagram

How Did the VW Beetle Become an Emblem of the '60s?

Two festival goers that found Woodstock too much lay passed out on the bonnet and roof of their Volkswagen Beetle. Credit: Three Lions/Getty Images

These days, we think of the Volkswagen Beetle as an emblem of 1967's Summer of Love. The well-known counterculture social phenomenon put San Francisco's Haight-Ashbury neighborhood on the map — and it helped the Beetle solidify its place as a hippie symbol. But there's more to the "love bug" than its late '60s success story. In fact, the VW Beetle benefited greatly from one of the most successful rebranding efforts in modern history.

The Origins of Volkswagen: World War II

While the VW Beetle is now synonymous with free love and the 1960s, the vehicle's darker origins began a good three decades prior. In 1933, white supremacist and German dictator Adolf Hitler announced what he called a "people's motorization," and, the following year, the Reich Association of the German Automobile Industry officially challenged the country's automotive industry to develop a "volks wagen," or people's car.

The body of the Beetle is mounted on the chassis at the Volkswagen Factory in Wolfsburg in 1962. Credit: Erich Andres/United Images/Getty Images

But this alleged "car of the people" effort was something of a propaganda-minded guise. That is, Ferdinand Porsche developed the vehicle under the motto "strength through pleasure," and aimed to make an all-terrain vehicle for Nazi military use. In fact, the car's brochure stated that it was "suitable not only for personal use but also for transport and particular military purposes." By May of 1938, Volkswagen's Wolfsburg-based factory opened and began churning out vehicles.

After Nazi forces were defeated in 1945, Germany's automotive production factories were put under the control of the British government. More than 10,000 Beetles were manufactured by the end of 1946, and, by the end of the decade, Volkswagen had sold around one million Beetles. In fact, it was also during this time that the now-iconic Volkswagen model was dubbed the "Beetle."

Undoubtedly, distancing the Beetle from its unsettling, dark roots was a large undertaking, but, within less than two decades, the vehicle would be reclaimed. And transformed into a counterculture symbol for anti-war, anti-government folks who celebrated free love.

Beetle-Mania: Marketing Was Key to the VW Beetle's Success

In 1972, the Wolfsburg manufacturing plant hit a notable milestone: It had manufactured 15,007,034 Beetles, thus surpassing the amount of Ford Model T cars. So, how did this rebranded vehicle's popularity surge? The VW Beetle was affordable — and compact.

Photo Courtesy: Wikimedia Commons

First off, it's air-cooled engine, for example, was much smaller and lighter than a water-cooled system. This notable feature also made it much easier to maintain and repair the car. Not only was the Beetle less of an investment upfront, but it didn't cost owners a ton overtime. Additionally, The Beetle's size was a key factor in its popularity in the United States.

Crafted by the New York-based ad agency Doyle Dane Bernbach, what's been dubbed "one of the greatest advertising campaigns of all time" helped make the Beetle the "biggest selling foreign-made car in America throughout the '60s" (via BBC). This 1959 "Think Small" campaign was a departure from traditional automotive advertising, which was full of bluster, fantasy and illustrations of the vehicle. Instead, "Think Small" featured simple, clean photographs of the Beetle, presenting it as a practical, compact alternative to the muscle cars and gas-guzzlers on the market.

"The message was one of smart anti-luxury," a car blog points out. "[And it] took gentle aim at an industry obsessed with superficiality and styling, rather than the substance underneath the car bodies." In many ways, it's a lot like Apple's initial marketing stance and aesthetic: Keep it minimal and emphasize those everyday needs.

That clever marketing angle, combined with a low price and quirky appearance, helped cement the Beetle as an early symbol of '60s counterculture. (Well, alongside its cousin, the VW van.) "For the Woodstock generation, driving a Beetle or its larger cousin, the Volkswagen van, was a form of protest against materialism and the gas guzzlers churned out by the big American carmakers," The New York Times notes.

The VW Beetle's Popularity Continues Post-1960s

Beetles were produced in Germany until 1978, after which production shifted to factories in Brazil and Mexico. In fact, the last Volkswagen Beetle was produced in Mexico in July 2003. By that point, approximately 30,000 Beetles were produced weekly, a figure that stands in stark contrast to the 1,300,000 Beetles produced every seven days in 1971.

Photo Courtesy: Erich Andres/United Images/Getty Images

In 1997, Volkswagen introduced the "New Beetle," which, among other changes, featured the engine in the front rather than the rear. The New Beetle was produced until 2003, before becoming the A5 Volkswagen Beetle, which was sold until 2019. (A scandal involving Volkswagen's attempted violation of the Clean Air Act certainly didn't help, especially in the age of green-minded, electric vehicles.)

In total, a staggering 23 million Beetle models were sold over an 83-year period. So, will this pop culture icon be back any time soon? In December 2020, the CEO of Volkswagen, Scott Keogh, was asked just that. "You know, with the Beetle, never say never," Keogh said. "We're certainly gonna keep its, you know, soul alive."

Source: https://www.reference.com/history/how-vw-beetle-became-emblem-60s?utm_content=params%3Ao%3D740005%26ad%3DdirN%26qo%3DserpIndex

Posted by: audreyvignauxe0192663.blogspot.com

Discord Downloading Emoji From Other Servers

Discord has an extensive API and good support for bots on their platform. Because of this, there are tons of bots to go around. However, many of them just copy one another's functionality. We've picked out the ones that do it right, and compiled them here.

Moderation Bots

Moderation bots aim to help make managing your community a little bit easier, often automating tasks like banning problem users, filtering spam and explicit content, and enforcing your rules.

MEE6

MEE6 does a lot of things besides just moderation, but it has a very useful automatic spam filter and automoderator. You can enable this in the "Moderators" section of their online dashboard, where you can turn off things such as annoying caps and emoji spam, links to other servers, external links, and mass mentions.

With no commands to configure and an intuitive web interface, MEE6 is one of the best moderation bots on the list.

Dyno

Dyno packs a ton of commands into one bot, such as the ability to mute, kick, and ban users from the chat itself. One useful feature is the "softban," which will ban and then unban a user to delete all their messages.

Gaius

Gaius is a little more complicated than some other bots on this list but is pretty powerful for it. One useful feature is server-wide slowmode, which is similar to Twitch's slowmode. You can also create custom filters for the automoderator, and it has its own role system on top of Discord's.

Integrations

Integrations link with external services and connect them to your server. Here are our favorites.

Twitch

TwitchBot is a fully featured Twitch integration bot. It lets you set notifications for streamers, browse twitch and view stats, and even listen to streams in Discord voice chat.

Medal

MedalBot offers integration with medal.tv, a game clip sharing site. You can use the bot to send your clips to Discord automatically.

Patreon

Patreon has their own bot that automatically gives out roles to your patrons. You can add it from your settings on the site by clicking "Connect to Discord."

Utility Bots

Utility bots don't fit into the other categories but are useful in their own right.

Equalizer

With 260+ commands, Equalizer can do quite a bit—server configuration, image effects, temporary voice channels, even sending you random memes. It's also got an option to add custom commands to expand its feature set.

Translator

Translator is a useful bot for multilingual Discords. It uses the Google Translate API to allow you to communicate with everyone. You can even set it to automatically translate a user's messages, though to reply you'll have to translate manually again.

DonateBot

DonateBot is pretty simple: it lets people pay for roles in Discord, directly into your PayPal account. It's great for one time payments for which Patreon wouldn't be ideal.


The above article may contain affiliate links, which help support How-To Geek.

How-To Geek is where you turn when you want experts to explain technology. Since we launched in 2006, our articles have been read more than 1 billion times. Want to know more?

Source: https://www.howtogeek.com/364223/the-best-discord-bots-to-power-up-your-server/

Posted by: audreyvignauxe0192663.blogspot.com

Quiet V7.9 Better Discord Download

Can't hear your buddies on Discord?

No need to worry, we've got you covered. Actually, the problem is more than likely related to audio settings.

Without further ado, here are eight fixes that should see you back to chatting in no time.

Fix 1: Restart Discord

Can't Hear Anyone In Discord

Let's start with the favored solution of IT technicians around the world: close Discord and open it again. A simple reset can often plug any gaps and fix any lingering problems. Throw in a Windows restart for good measure as well.

Alternatively, refresh Discord by hitting "Ctrl" and "r". The app performs its magic and returns with a fresh layer of digital paint.

The problem might also be temporary and the root may be found in a coding issue or bug within the Discord app itself. To remedy this, load up Discord in your web browser and test to see if you can hear other people.

Discord is extremely quick at resolving issues and pushing out updates, meaning this is only a temporary measure.

Fix 2: Hardware Check

Often the right solution is the simplest. Ensure your headphone/microphone jack(s) is securely connected to your PC's audio inputs and outputs, especially if you have a desktop where the tower is housed under a desk and rarely inspected.

Gaming headsets often come with a global mute button for both input and output. Check to make sure you've haven't accidentally tapped it.

Headset and microphone manufacturers are continually pumping out fresh drivers to quell problems. Check to see if you've got the latest version by perusing your specific model's vendor site. In the situation where you require dedicated software for your accessory, make sure it's up to date as well.

Fix 3: Turn Off Third-Party Voice Altering Software

Voice changes that alter the timbre and quality of a voice within Discord's voice channels are all the rage.

Unfortunately, they tend to tinker with Discord's fine-tuned audio ecosystem and cause problems. As a precautionary measure, turn off any software fitting this description and then check if this fixed the problem.

Fix 4: Discord Settings – Output Device and Output Volume

Discord Can't Hear Others

Discord offers a range of tweaking options to fix your audio however you see fit. Head to User Settings by clicking on the cog icon next to your avatar in the bottom right corner of the Discord window. In the left-hand side menu, click on "Voice & Video."

Scroll down and tap "Reset Voice Settings," which will give you a clean slate to troubleshoot the problem. Doing this might very well fix the issue altogether, so remember to test it out before continuing with the steps below.

First, ensure you've selected the correct input and output devices from the respective drop-down menus. The choice depends on what peripherals and accessories you're using. To start, select "Default."

If that doesn't work and you've got a gaming headset with an inbuilt mic, pick that or whichever option fits the device you're using. Discord emits a useful little beep to the chosen device when selected. Hear the audio trigger in your headphones and your set.

Can't Hear Anyone On Discord

Secondly, make sure the "Output Volume" slider isn't on zero. If it is, move it towards the right a decent amount, or all the way if you're feeling particularly rash and aren't worried about the longevity of your hearing.

Once done, click on the handy "Let's Check" button and read a poem, sing a verse from your favorite song, or utter absolute gibberish, to run a mic test. We aren't looking to test the mic so much as get Discord to relay back the sound of your voice.

If you hear your voice, then all is well, and we've resolved the problem. Enter a random voice channel and check to see if you're hearing other users too.

If you're still having trouble, toggle the "Input Mode" just below between "Voice Activity" and "Push to Talk" to verify which mode works best.

Fix 5: Discord Settings – Advanced

Discord Can't Hear

While in the "Voice & Video" settings, scroll down to the "Advanced" section and find the "Audio Subsystem" drop-down menu. Make sure the subsystem is set to "Standard" instead of "Experimental." Changing the subsystem requires a Discord reset. Simply click "Okay" when prompted to do so.

Discord uses experimental to test out the latest under-the-hood changes. They aren't always polished or optimized, which can cause myriad problems.

In advance, scope out the "Quality of Service" section and disable the "Ensure Quality of Service High Packet Priority" option. As the description explains, the feature can sometimes wreak havoc with ISPs and routers/modems.

Fix 6: Windows Audio Settings

The problem may not originate from Discord but rather from how your audio devices are setup within Windows. Output, namely other people's voice within a voice channel, is being directed to the wrong speaker or headset.

Navigate to the speaker/volume icon in the taskbar and right-click on it. Then choose either "Open Sound Settings" or "Playback Devices", depending on the version of Windows you're using.

Once the "Sound" window appears, make sure the selected tab along the top is "Playback." Note the desired device and right-click on it. Select "Set as Default Device," then do the same and select "Set as Default Communication Device." A reassuring green tick shows up once done to indicate the default device.

In the unlikely scenario where your device doesn't appear in the list on the "Playback" tab, simply right click anywhere within the list and click on "Show Disabled Devices" as well as "Show Disconnected Devices."

When your device shows up, right-click and "Enable" it. Now, make sure you set the "Default Device" and "Default Communication Device" as above.

Fix 7: Simple Checks

We thought it would be right to include these suggestions for Discord first-timers, but take them with a pinch of salt.

Firstly, make sure the person you're hoping to hear — more than likely a friend contactable by email, phone, IRL, carrier pigeon, etc., — is well and yapping away, and not sitting there in silence because they are shy or trying their hand at trolling.

Secondly, check to see that the mic volume on the speaker's end is turned up sufficiently loud for the sound of their voice to be picked up and transmitted by Discord.

Fix 8: Contact Discord

Can't Hear People On Discord

If all else fails and the problem persists, don't panic. Discord is at the top of the tech company pyramid for responsive and friendly support services.

Discord includes a useful VoIP debug feature, the results of which you can forward to Discord for investigation. The company provides an in-depth guide on how to do this — you can find it right here.

Source: https://www.gamingscan.com/cant-hear-people-on-discord/

Posted by: audreyvignauxe0192663.blogspot.com