Saturday, January 25, 2020

Pictograph Essay :: essays research papers

In the ancient times (4000-30B.C.) the Egyptian Pharaohs were the most powerful people on the planet. They had sophisticated methods for building and irrigation. In one area that they lagged in sophistication was the basic form they used for writing their language. The ancient Egyptians used hieroglyphics that was often expressed through pictographs that are stylized pictures used to express words and subjects.   Ã‚  Ã‚  Ã‚  Ã‚  The use of pictographs was a very primitive form of communication that took lots of time and energy to inscribe. They did not describe the subject in great detail whereas in the English language you can describe the subject in great detail with little or no effort.   Ã‚  Ã‚  Ã‚  Ã‚  When using pictographs the Egyptians didn't use connectives, adjectives, verbs, or nouns. They would simply sketch a series of pictures in reference to the subject that they were addressing. Also when using pictographs it leaves most of the interpretation of the writings up to the reader's imagination, therefore often not accurately describing and communicating the findings or ideas to the author. This was also very obvious when we made posters in class trying to describe our favorite stories because they were very rough sketches (pictographs) of the story and the posters left much up to the reader's personal interpretation.   Ã‚  Ã‚  Ã‚  Ã‚  Using the writing system in the English language a person is able to tell the reader exactly what you're writing about and do so in great detail. In our current system of writing we use a series of twenty-six letters; six of the letters are vowels and the rest are consonants. We arrange these letters in different sequences to create many different expressive words such as nouns, verbs, adjectives, and pronouns. There are over fifty thousand words in the English language and by skillfully using them we can accurately communicate to others by the use of writing.   Ã‚  Ã‚  Ã‚  Ã‚  In conclusion, we have come a long way in developing our writing system.

Thursday, January 16, 2020

Controversies as a Result of the Alien and Sedition Acts Essay

In the late 1700s and into the early 1800s, large controversies over the Alien and the Sedition Acts, containing four bills, took place. Some of the controversies included immigration, slander and libel of the government, and states’ rights. While the controversy set the stage for Jefferson’s election, it also left some in tense and unsettled states. The Alien and Sedition Acts brought many disagreements upon the states. The Acts had two bills that seemed to stand out most among the government. The second bill of the Alien and Sedition Acts gave the President power to deport â€Å"all such aliens as he shall judge dangerous to the peace and safety of the United Stats. † Just before the Acts were created, President George Washington wrote to the Vice-President John Adams in 1794 of his believe that immigrants brought with them not only their language, but their habits and formal morals too. Later, he goes on to say, that this is not particularly a bad thing because as time goes on, as generations grow, all people will become one. Just before that though, in 1785, Thomas Jefferson had made close to the same note, but a bit different. He believed it would be a miracle for the morals and beliefs of the immigrants to halt in changing at the exact point of liberty. He believed that infusing the aliens into our United States would create a â€Å"heterogeneous, incoherent, distracted mass. † Altogether, immigration was an extremely controversial topic. Each person had their own opinion, especially the rising parties who seemed to almost separate the nation more. While the Acts had allowed the President this power, it also prohibited the slander of libel of the President or any other part of the government. It seems to almost be a coincidence. After this was passed, Federalist prosecutors arrested more than twenty Republican newspaper editors and politicians. The Federalists had accused them of sedition, and convicted and jailed a number of them. Many believed that this part of the Sedition Act was against the First Amendment that forbade the †abridging the freedom of speech, or of the press. † As a matter of fact, the Republicans actually tried to charge the Sedition Act as a violation of the First Amendment, although it did not appeal to the Supreme Court. This was because the Court was not sure how to review the case considering the board was made up of mostly Federalists. Jefferson sent a letter to Francis Hopkinson of Pennsylvania clearing up a rumor that he was a Federalist. He states that he â€Å"never submitted the whole system of (his) opinions to the creed of any party of men whatever in religion, in philosophy, in politics, or in anything else where I was capable of thinking for myself. † Last, but definitely not least, was the issue of whether or not the states had a right to judge the Constitution. After the Republicans tried to charge the Sedition Acts as a violation against the Constitution, Madison and Jefferson looked to the state legislature which led to their declaring the Alien and Sedition Acts to be â€Å"unauthoritative, void, and of no force. This resolution set forth a states’ rights interpretation of the Constitution, asserting that the states had a â€Å"right to judge† the legitimacy of national laws. Albert Gallatin, a Democratic-Republican congressman from Pennsylvania, made a speech in the House of Representatives on the proposed Sedition Act wherein he stated, â€Å"The only evidences brought by the supporters of this bill consist of writings expressing an opinion that certain measures of government have been dictated by an unwise policy, or by improper motives, and that some of them are unconstitutional. The Alien and Sedition Acts caused many controversies. The controversies led to many letters and arguments with the government. With this being said, the major problems seem to have been the topics of immigration, slander and libel of the government, and states’ rights. Although, after these controversies developed over the Acts, the Acts were then rethought. It is often wondered, even now, why the Alien and Sedition Acts were ever passed in the first place.

Wednesday, January 8, 2020

Understanding Delphi SET Type - Expert Guide

One of the Delphi language features not found in other modern languages is the notion of sets. Delphis set type is a collection of values of the same ordinal type. A set is defined using the set of keyword: Set types are usually defined with subranges. In the above example, the TMagicNumber is a custom subrange type allowing variables of the TMagicNumber type to receive values from 1 to 34. Simply put, a subrange type represents a subset of the values in another ordinal type. Possible values of the set type are all the subsets of the base type, including the empty set. A limitation on sets is that they can hold up to 255 elements. In the above example, the TMagicSet set type is a set of TMagicNumber elements - integer numbers from 1 to 34. The declaration TMagicSet set of TMagicNumber is equal to the following declaration: TMagicSet set of 1..34. Set Type Variables In the above example, the variables emptyMagicSet, oneMagicSet and anotherMagicSet are sets of TMagicNumber. To assign a value to a set type variable, use the square brackets and list all the elements of the set. As in: Note 1: every set type variable can hold the empty set, denoted by []. Note 2: the order of the elements in a set has no meaning, nor is it meaningful for an element (value) to be included twice in a set. The IN Keyword To test if an element is included in the set (variable) use the IN keyword: Set Operators The same way you can sum two numbers, you can have a set that is the sum of two sets. With sets your event has more operators: returns the union of two sets.- returns the difference of two sets.* returns the intersection of two sets. return true if two sets are equal - have the same element. returns true if the first set is a subset of the second set. returns true if the first set is a superset of the second set. returns true if two sets are non-identical.IN returns true if an element is included in the set. Heres an example: Will the ShowMessage procedure be executed? If so, what will be displayed? Heres the implementation of the DisplayElements function: Hint: yes. Displayed: 18 | 24 |. Integers, Characters, Booleans Of course, when creating set types you are not restricted to integer values. Delphi ordinal types include character and boolean values. To prevent users to type alpha keys, add this line in the OnKeyPress of an edit control: Sets with Enumerations A commonly used scenario in Delphi code is to mix both enumerated types and set types. Heres an example: Question: will the message be displayed? Answer: no :( Sets in Delphi Control Properties When you need to apply bold to the font used in TEdit controls, you either use the Object Inspector or the following code: The Fonts Style property is a set type property! Heres how it is defined: So, an enumerated type TFontStyle is used as the base type for the set type TFontStyles. The Style property of the TFont class is of type TFontStyles - therefore a set type property. Another example includes the result of the MessageDlg function. A MessageDlg function is used to bring up a message box and obtain the users response. One of the parameters of the function is the Buttons parameter of type TMsgDlgButtons. TMsgDlgButtons is defined as a set of (mbYes, mbNo, mbOK, mbCancel, mbAbort, mbRetry, mbIgnore, mbAll, mbNoToAll, mbYesToAll, mbHelp). If you display a message to the user containing Yes, OK and Cancel buttons and you want to execute some code if either the Yes or Ok buttons were clicked you can use the next code: Final word: sets are great. Sets might appear confusing to a Delphi beginner, but as soon as you start using set type variables you will find out they provide much more then it sounded in the beginning.