Introduction To Digital Music With Python Programming Learning Music With Code 1st Edition Horn download
Introduction To Digital Music With Python Programming Learning Music With Code 1st Edition Horn download
https://ebookbell.com/product/introduction-to-digital-music-with-
python-programming-learning-music-with-code-1st-edition-
horn-37322724
https://ebookbell.com/product/introduction-to-digital-control-of-
linear-time-invariant-systems-ayachi-errachdi-47290706
https://ebookbell.com/product/introduction-to-digital-media-design-
transferable-hacks-skills-and-tricks-david-leicester-hardy-50675518
https://ebookbell.com/product/introduction-to-digital-communications-
ali-grami-50885846
https://ebookbell.com/product/introduction-to-digital-systems-
modeling-synthesis-and-simulation-using-vhdl-1st-edition-mohammed-
ferdjallah-55139888
Introduction To Digital Navigation Including Fundamentals Of
Navigation Alexander Arnfinn Olsen
https://ebookbell.com/product/introduction-to-digital-navigation-
including-fundamentals-of-navigation-alexander-arnfinn-olsen-55839132
https://ebookbell.com/product/introduction-to-digital-signal-
processing-computer-musically-speaking-park-th-2046588
https://ebookbell.com/product/introduction-to-digital-signal-
processing-and-filter-design-shenoi-ba-2047578
https://ebookbell.com/product/introduction-to-digital-speech-
processing-foundations-and-trends-in-signal-processing-lawrence-r-
rabiner-2089294
https://ebookbell.com/product/introduction-to-digital-communication-
systems-krzysztof-wesolowski-2336578
Introduction to Digital Music
with Python Programming
DOI: 10.4324/9781003033240
Typeset in Bembo
by codeMantra
Melanie dedicates her contribution of the book to the
memory of her friend, Bernie Worrell, who taught her
how to listen.
Mike dedicates his contribution to his wife, Diana Reed,
and his children, Madeleine and Lucas.
Contents
List of fgures ix
Photo and illustration credits xiii
Foreword xiv
Acknowledgments xvi
Michael Horn
Chicago, Illinois ( July 2021)
Note
1 I was also fortunate to have grown up in a time and place where these ac-
tivities were seen as socially acceptable for a person of my background and
identity.
Acknowledgments
We are grateful to the many people who have helped make this book possi-
ble. We especially want to thank Dr. Amartya Banerjee who has anchored
the TunePad development team. The TunePad project grew out of a col-
laboration with the EarSketch team at Georgia Tech that was initiated by
Dr. Brian Magerko and Dr. Jason Freeman. We thank Dr. Nichole Pinkard,
Dr. Amy Pratt, and the Northwestern Ofce of Community Education
Partnerships. We thank the TIDAL Lab team at Northwestern University
including Mmachi Obiorah, Wade Berger, Izaiah Wallace, Brian Andrus,
Jamie Gorrson, Matthew Brucker, Lexie Zhao, Ayse Hunt, Kallayah
Henderson, Cortez Watson Jr., Sachin Srivastava, and many, many oth-
ers. We thank our community partners including the Evanston Public
Library, the NAACP of DuPage County, the James R. Jordan Foun-
dation, the Meta Media program at the McGaw YMCA, the Hip-Hop
FIRM, EvanSTEM, the Center for Creative Entrepreneurship, Studio
2112, the James R. Jordan Boys and Girls Club, Lake View High School
and Marshaun Brooks, Lane Tech High School and Amy Wozniak, Gary
Comer Youth Centers, and Chicago Youth Centers, Project Exploration,
BBF Family Services, and the Museum of Science and Industry. Shout-
outs to Marcus Prince and Sam Carroll who gave us insightful curriculum
ideas, to Tom Knapp who contributed to TunePad’s graphical design, and
to the amazing interns we’ve worried with over the years.
Special thanks go to the people who gave input into the ideas and text
of this manuscript including George Papajohn and Diana Reed. We also
thank Joseph Mahanes, Abbie Reeves, and others who put up with us
while we worked on this book.
TunePad was created by the Tangible Interaction Design and Learn-
ing (TIDAL) Lab at Northwestern University in collaboration with the
EarSketch team at the Georgia Institute of Technology and with fund-
ing from the National Science Foundation (grants DRL-1612619, DRL-
1451762, and DRL-1837661) and the Verizon Foundation. Any opinions,
fndings, and/or recommendations expressed in the material are those of
the authors and do not necessarily refect the views of the funders.
1 Why music and coding?
These eight lines of Python code tell TunePad to play a pattern of kick
drums, snare drums, and high-hats. Most of the lines are playNote in-
structions, and, as you might have guessed, those instructions tell TunePad
to play musical sounds indicated by the numbers inside of the parentheses.
This example also includes something called a loop on line 6. Don’t worry
too much about the details yet, but the loop is an easy way to repeat a set
of actions over and over again. In this case, the loop tells Python to repeat
lines 7 and 8 four times in a row. The screenshot (Figure 1.1) shows what
this looks like in TunePad. You can try out the example for yourself with
this link: https://tunepad.com/examples/roses.
connection, and a small budget. The reasons behind the shift to digital
production tools are obvious. Computers have gotten to a point where
they are cheap enough, fast enough, and capacious enough to do real-time
audio editing. We can convert sound waves into editable digital informa-
tion with microsecond precision and then hear the efects of our changes
in real time. These DAWs didn’t just appear out of nowhere. They were
constructed by huge teams of software engineers writing code—millions
of lines of it. As an example, TunePad was created with over 1.5 million
lines of code written in over a dozen computer languages such as Python,
HTML, JavaScript, CSS, and Dart. Regardless of how you feel about the
digital nature of modern music, it’s not going away. Learning to code will
6 Why music and coding?
help you understand a little more about how all of this works under the
hood. More to the point, it’s increasingly common for producers to write
their own code to manipulate sound. For example, in Logic, you can write
JavaScript code to process incoming MIDI (Musical Instrument Digital
Interface) data to do things like create custom arpeggiators. Learning to
code can give you more control and help expand your creative potential
(Figure 1.2).
1 for _ in range(16):
2 if randint(6) > 1: # roll the die for a random number
3 playNote(4, beats=0.5) # play an eighth note
4 else:
5 playNote(4, beats=0.25) # or play 16th notes
6 playNote(4, beats=0.25)
What’s cool about these efects is that they’re parameterized. Because the
code describes the algorithms to generate music, and not the music itself, it
means we can create infnite variation by adjusting the numbers involved.
For example, in the trap hi-hat code, we can easily play around with how
frequently stuttered hats are inserted into the pattern by increasing or de-
creasing one number. You can think of code as something like a power drill;
you can swap out diferent bits to make holes of diferent sizes. The drill bits
are like parameters that change what the tool does in each specifc instance.
In the same way, algorithms are vastly more general-purpose tools that can
accomplish myriad tasks by changing the input parameters.
Creating a snare drum riser with code is obviously a very diferent kind
of thing than picking up two drumsticks and banging out a pattern on
a real drum. And, to be clear, we’re not advocating for code to replace
learning how to perform with live musical instruments. But, code can be
another tool in your musical repertoire for generating repetitive patterns,
exploring mathematical ideas, or playing sequences that are too fast or
intricate to play by hand.
1.6.3 REASON 3: Code lets you build your own musical toolkit
Becoming a professional in any feld is about developing expertise with
tools—acquiring equipment and knowing how to use it. Clearly, this
is true in the music industry, but it’s also true in software. Professional
software engineers acquire specialized equipment and software packages.
They develop expertise in a range of programming languages and techni-
cal frameworks. But, they also build their own specialized tools that they
use across projects. In this book, we’ll show you how to build up your own
8 Why music and coding?
library of Python functions. You can think of functions as specialized tools
that you create to perform diferent musical tasks. In addition to the exam-
ples we described above, you might write a function to generate a chord
progression or play an arpeggio, and you can use functions again and again
across many musical projects.
1.6.4 REASON 4: Code is useful for a thousand and one other things
As we mentioned earlier in this chapter, Python is one of the most power-
ful, multi-purpose languages in the world. It’s used to create web servers
and social media platforms as much as video games, animation, and music.
It’s used for research and data science, politics and journalism. Knowing a
little Python gives you access to powerful machine learning and artifcial
intelligence (AI/ML) techniques that are poised to transform most aspects
of human work, including in creative domains such as music. Python is
both a scripting language and a software engineering platform—equal
parts duct tape and table saw—and it’s capable of everything from quick
fxes to durable software applications. Learning a little Python won’t make
you a software engineer, just like learning a few guitar chords won’t make
you a performance musician. But it’s a start down a path. An open door
that was previously closed, and a new way of using your mind and a new
way of thinking about music.
Sometimes we’ll write code in a table with line numbers so that we can re-
fer to specifc lines. When we introduce new terms, we’ll bold the word.
If you get confused by any of the programming or music terminology,
check out the appendices, which contain quick overviews of all of the
important concepts. We’ll often invite you to follow along with online
examples. The best way to learn is by doing it yourself, so we strongly
Why music and coding? 11
encourage you to try coding in Python online as you go through the
chapters.
Notes
1 It’s said that fans were so infatuated with Liszt’s piano “rockstar” status that
they fought over his silk handkerchiefs and velvet gloves at his performances.
2 We recommend https://www.w3schools.com/python/.
Interlude 1
BASIC POP BEAT
In this interlude we’re going to get familiar with the TunePad interface by
creating a basic rock beat in the style of songs like Roses by SAINt JHN.
You can follow along online by visiting
https://tunepad.com/interlude/pop-beat
DOI: 10.4324/9781003033240-2
Basic pop beat 13
When you’re done, your project should look something like Figure 1.5.
Go ahead and press the Play button at the top left to hear how this
sounds. Congratulations! You’ve just written a Python program.
Syntax errors
Occasionally your code won’t work right and you’ll get a red error mes-
sage box that looks something like Figure 1.6. This kind of error message
is called a “syntax” error. In this case, the code was written as playnote
with a lowercase “n” instead of an uppercase “N”. You can fx this error
by changing the code to read playNote (with an uppercase “N”) on line
2 (Figure 1.6).
Basic pop beat 15
You might start to notice the text that comes after the hashtag symbol (#)
is a special part of your program. This text is called a comment, and it’s for
human coders to help organize and document their code. Anything that
comes after the hashtag on a line is ignored by Python. Try playing this
snare drum cell to hear how it sounds. You can also play the kick drum
cell at the same time to see how they sound together.
STEP 5: Hi-hats
Click on the ADD CELL button again to add a third drum cell. Change
the title of this cell to be “Hats” and add the following code:
Note
1 We recommend using the free Google Chrome browser for the best overall
experience.
2 Rhythm and tempo
Rock 100–140
R&B 60–80
Pop 100–132
Reggae 60–92
Hip-hop 60–110
Dubstep 130–144
Techno 120–140
Salsa 140–250
Bachata 120–140
You can adjust the tempo of your metronome with the bpm indicator
(Figure 2.1). As this example illustrates, computers excel at keeping a per-
fectly steady tempo. This is great if you want precision, but there’s also a
risk that the resulting music will sound too rigid and machine-like. When
real people play music they often speed up or slow down, either for dra-
matic efect or just as a result of being a human. Depending on the genre,
performers might add slight variations in rhythm called swing or shufe,
Figure 2.1 TunePad project information bar. You can click on the tempo, time
signature, or key to change the settings for your project.
20 Rhythm and tempo
that’s a kind of back and forth rocking of the beat that you can feel almost
more than you can hear. We’ll show you how to add a more human feel to
computer generated music later in the book.
Figure 2.5 Common note symbols starting with a whole note (four beats) on the
top down to 16th notes on the bottom. The notes on each new row are
half the length of the row above.
Standard notation also includes dotted notes, where a small dot follows the
note symbol. With a dotted note, you take the original note’s duration
and add half of its value to it. So, a dotted quarter note is 1.5 beats long, a
dotted half note is 3 beats long, and so on.
There are also symbols representing diferent durations of silence or
“rests”.
Three-Four Time
There are 3 beats in each measure, and the quarter
note gets the beat.
Three-Eight Time
There are 3 beats in each measure, and the eighth
note gets the beat.
The most common time signature is 4/4. It’s so common, in fact, that
it’s referred to as common time. It’s often denoted by a C symbol shown
in the table above. In common time, there are four beats to each measure,
and the quarter note “gets the beat” meaning that one beat is the same as
one quarter note.
Vertical lines separate the measures in standard notation. In the example
below, there are two measures in 4/4 time (four beats in each measure, and
each beat is a quarter note).
If you have a time signature of 3/4, then there are three beats per measure,
and each beat’s duration is a quarter note. Some examples of songs in 3/4
time are My Favorite Things from The Sound of Music, My 1st Song by Jay Z,
Manic Depression by Jimi Hendrix, and Kiss from a Rose by Seal.
26 Rhythm and tempo
If those notes were eighth notes, it would look like this:
Other common time signatures include 2/4 time (with two quarter note
beats per measure) and 2/2 time (with two half note beats in each measure).
With 2/2 there are actually four quarter notes in each measure because
one half note has the same duration as two quarter notes. For this reason,
2/2 time is performed similarly to common time, but is generally faster.
It is referred to as cut time and is denoted by a C symbol with a line
through it (see table above).
You can adjust the time signature of your TunePad project by clicking
on the time indicator in the top bar (see Figure 2.1).
Kick or bass The kick drum (or bass drum) makes a loud, low 0 and 1
drum thumping sound. Kicks are commonly placed on
beats 1 and 3 in rock, pop, house, and electronic
dance music. In other genres like hip-hop and funk,
kick drums are very prominent, but their placement
is more varied.
Snare Snare drums make a recognizable sharp staccato 2 and 3
sound that cuts across the frequency spectrum. They
are built with special wires called snares that give
the drum its unique snapping sound. Snare drums
are commonly used on beats 2 and 4.
Hi-hat The hi-hat is a combination of two cymbals 4 (closed)
sandwiched together on a metal rod. A foot pedal 5 (open)
opens or closes the cymbals together. In the closed
position the hi-hat makes a bright tapping sound. In
the open position the cymbal is allowed to ring out.
Hi-hats have become an integral part of rhythm
across almost all genres of popular music.
Low, mid, Tom drums (tom-toms) are cylindrical drums that 6, 7, 8
high tom have a less snappy sound than the snare drum. Drum
kits typically have multiple tom drums with slightly
different pitches (such as low, mid, and high).
Crash A large cymbal that makes a loud crash sound, often 9
cymbal used as a percussion accent.
Claps and Different TunePad drum kits include a range of 10 and 11
shakers other percussion sounds common in popular music
including various claps, shakers, and other sounds.
you can choose from several diferent drum kits including an 808 and rock
kits. You can change the instrument by clicking on the selector shown
below (Figure 2.8).
Figure 2.9 Example of a Python syntax error in TunePad. This line of code was
missing a parenthesis symbol.
30 Rhythm and tempo
2.7 Calling functions
Almost everything you do in Python involves calling functions. A func-
tion (sometimes called a command or an instruction) tells Python to do
something or to compute a value. For example, the playNote function tells
TunePad to make a sound. There are three things you have to do to call a
function:
First, you have to write the name of the function. Functions have one-
word names (with no spaces) that can consist of letters, numbers, and the
underscore _ character. Multi-word functions will either use the under-
score character between words as in:
my_multi_word_function()
Figure 2.10 Calling the playNote function in TunePad with two parameters in-
side the parentheses.
Rhythm and tempo 31
2.8 The playNote function
The playNote function tells TunePad to play a percussion sound or a
musical note. The playNote function accepts up to four parameters con-
tained within the parentheses.
Name Description
Here’s how we would code this in TunePad with a kick drum and snare:
playNote(1, beats = 0.5) # play a kick drum (1) for half a beat
playNote(1, beats = 0.5)
playNote(2, beats = 1) # play snare (2) for one beat
playNote(1, beats = 0.5) # play kick (1) for half a beat
playNote(1, beats = 0.5)
playNote(2, beats = 1) # play snare (2) for one beat
Here’s a third example that plays eight notes in a row, each an eight note
(beats = 0.5). See if you can write the code to make this pattern.
I think that there are few points upon the whole terrestrial globe,
which are of greater importance for our historical researches than
the oases of Central Asia. These in the primitive times were
inexhaustible floodgates for those warlike hordes, who often
inundated and conquered the most beautiful spots of Asia, streaming
towards the west in wild torrents, and even occasioning alarm
among Europeans. No people can be so interesting for us upon the
subject of Ethnography as the Turko-Tartars, who, under such
various names and forms, have appeared on the scene of the events
of the world, and have had such powerful influence over our own
circumstances. Is it not surprising that of all nations we are the least
acquainted with these? Huns, Avars, Utigurs, Kutrigurs, Khazars, and
so many others, float before our sight only in the mist of fable. The
clash of arms which sounded through them from the Yaxartes to the
heart of Gaul and Rome has long since ceased. In vain should we
inquire even into their origin, did we not find in the scanty dates of
the Western chronicles of that period some points of reliance. These
dates show us that between the Tartar tribes of that age and the
present inhabitants of Central Asia there did exist an analogy of an
unmistakeable character. We detect this in descriptions of them—in
the accounts of their manner of living—all evincing much
resemblance to the customs and physical condition of the present
inhabitants of Turkestan. A similar life to what Priscus describes in
the Court of the King of the Huns is met with to-day in the tent of a
nomadic chief. Attila is more original than Djingis or Taimur, but as
historical personages they resemble each other. Energy and good
fortune could now almost produce upon the borders of the Oxus and
Yaxartes one of those heroes, whose soldiers, like an avalanche,
carrying everything before them, would increase to hundreds of
thousands, and would appear as a new example of God's scourge, if
the powerful barriers of our civilisation, which has a great influence
in the East, did not stop the way. The people of Central Asia,
particularly the nomadic tribes, are, in the internal relations of their
existence, the same as they were two thousand years ago. In these
physiognomical signs we find already changes from a mixture of
Iranian and Semitic blood (chiefly after the Arabian occupation). The
features of the Mongolian-Kalmuck type here and there approach the
Caucasian race. The Tartar in Central Asia is no longer what we see
him represented by the Greek-Gothic writers, for even in the times of
Djingis he was no longer the same. It is, therefore, of great interest
to mark how this change in physiognomical type continually
decreases from the east to the west—how this Deturkism, if I may
so express myself, is perceptible among the various races of Central
Asia, and in what degree their various gradations through social
circumstances came, more or less, in contact with foreign elements.
This will especially be seen by a cursory view of the Turkish nations
of Central Asia from Inner China to the Caspian Sea; but those Turks
who stretch hence up to the Adriatic, or to the banks of the Danube,
are West Turks, and cannot be included in the unity of race so much
by physiognomical type as by analogy of speech, characters, and
customs.
With the former, whose masses have retained compactly together
the unity of the race, in spite of all those ways in which the Central
Asiatics differ remarkably from one another—in spite of our
ethnographical names,—the distinction shows itself clearly in their
features and common physical type. Whatever views we may
entertain of the origin of the Turks, so much is certain, that they are
closely related to the Mongols; the relation being much closer than
those which subsist between the Indians and Persians in Iran. Much,
very much indeed, is to be done before we have investigated the
mutual relations of the whole Turko-Tartaric race, which stretches
from the Hindu Kush to the Polar Sea, from the interior of China to
the shores of the Danube. Our present sketch is only a weak attempt
at a small portion—general views upon all that personal experience
has presented to our observation; and it may here and there exhibit
somewhat of novelty. Through the extent known to us from East to
West, we divide the Turks into the following classes:—
1. Buruts, black or pure Kirghese. 2. Kirghis, properly Kazaks. 3.
Karakalpaks. 4. Turkomans. 5. Œzbegs.
Buruts.
The Kirghis.
3. Karakalpaks.
These form the third division in the race, and are essentially different
from the Kirghis in physiognomical expression, although allied in
language and customs. The Karakalpaks are distinguished by a tall,
vigorous growth and a more powerful frame than all the tribes of
Central Asia. They have a large head with flat full face, large eyes,
flat nose, slightly projecting cheek-bones, a coarse and slightly
pointed chin, remarkably long arms and broad hands. Taken as a
whole, their coarse features are in good harmony with their not less
clumsy forms, and the nickname of the neighbouring people
Karakalpak.
Yüze yalpak.
Üzi yalpak.
Karakalpak, (has a flat face, and is himself totally flat). This
sobriquet has not been uttered without reason. The complexion
approaches that of the Œzbegs, particularly that of the women, who
long retain their white complexion, and with their large eyes, full
face, and black hair, do not make an unpleasant impression. In
Central Asia they are highly renowned for their beauty. The men
have pretty thick, but never long beards. The Karakalpaks, who are
sometimes falsely ranked with the Kirghis, are at present only to be
met with in the Khanat of Khiva, to which they moved at the
beginning of this century. A man of this tribe relates to me that they
lived earlier on the banks of the Yaxartes, and certainly near its
mouth, whilst another portion abides in the neighbourhood of the
Kalmucks, probably in the government of the Semipalatinsk.
The first part of this report does not seem to me to be a mere
invention, for Lewschine (in the above-cited work, p. 114), reports,
speaking of the ruins of Djemkend, that even in the last century
Karakalpaks had lived there. According to all probability they have
separated for a long time from the Kirghis, to whom they approach
nearest, and now they form, with respect to their physiognomy, the
transit point from the latter to the Œzbegs. In their dress they draw
nearer to the Œzbegs than the Kirghis. The men wear large telpek
(fur caps) which fit low in the neck and cover ears and brow; the
women have a cape like a cloak round the throat, and are delighted
with red and green boots. The tent of the Karakalpaks is much
larger, and of stronger construction than that of the rest of the
nomadic tribes, and is guarded by a species of large dog, only to be
met with among this tribe. In their dwellings in general they are
distinct from the other nomadic tribes in dirt and uncleanliness; they
evince also in their food and clothing a carelessness, which makes
them abundantly ridiculed and disliked by their neighbours. To their
national dishes belongs the torama, which consists of finely chopped
meat, and is cooked with a large quantity of onions (which vegetable
is much liked there) and mixed meal. Kazan djappay, meal baked in
a pan in fat, which is considered a dainty. Lastly, baursak, a meal
which consists of a four-cornered piece of pasty filled with meat.
A favourite game is kumalak, resembling the game in Europe. It is
played with dried excrements of sheep. Many of them devote
themselves to games of chance.
4. The Turkomans.
Œzbegs.
Character.
However great the extent over which the diverse branches of Turkish
tribes may be found, however variously the influence of strange
elements may have acted upon their social relations, still the
features of a common type of character cannot be denied;—a picture
in which more traces of analogy are to be found than in the
physiognomy and other physical signs respectively. The Turk is
everywhere heavy and lethargic in his mental and corporeal
emotions, therefore firm and stedfast in his resolves; not, perhaps,
from any principle of life philosophy, but from apathy, and sincere
aversion to everything which would alter his adopted position. This
lends him an earnest and solemn aspect, which is so often extolled
by European travellers. As upon the shores of the Bosphorus the
Osmanli, in his keïf, can gaze for hours on the clear sky, while he
only makes as much movement as will blow the blue wreaths of
smoke from his pipe towards the yet bluer firmament; so the Œzbeg
or the Kirghis can sit for hours, motionless, in the narrow tent, or in
the immeasurably wide desert; for, while the former turns his gaze
upon the colours of the felt coverlet or carpet, already seen
thousands of times,—the latter looks on the waving, curling
quicksands, which are to amuse him. As those who go about briskly
and nimbly, or even gesticulate, are only compassionated by the
Osmanlis as living proofs of partial insanity and misfortune; so each
quick movement of the feet and hands is considered by the Œzbegs
as highly unseemly. Indeed, when I called out to one of my Tartar
fellow-travellers to save himself from some falling bales of goods by
a side-spring, he exclaimed, indignantly: "Am I, then, a woman, that
I should disgrace myself by springing and dancing!" With this
profound seriousness and marble-cold expression of countenance,
we find everywhere among the Turks a great inclination to pomp and
magnificence; but this does not degenerate into frivolity or
fanfaronades, as is the case with the Persians. In Constantinople one
often hears the proverb: "Intellect is peculiar to Europe, riches to
India, and splendour to the Ottoman." The solemn processions
(alay) of the sultan and of the great nobles are alike celebrated in
the East and the West, and the imposing exterior which is exhibited
on such occasions is nowhere to be found so faithfully reflected as
among their fellow tribes in Central Asia. An Œzbeg or Turkoman,
when upon his horse, or seated in his tent at the head of his family,
has the same proud bearing, the same self-consciousness of
greatness and power. He is quite convinced that he is born to rule,
and the foreign nations which surround him to obey,—just in the
same way as the Osmanli thinks with regard to Bulgarians,
Armenians, Kurds, and Arabians. His love for independence is
boundless, and is also the chief cause why he cannot long remain
under the chieftain whom he loves in many respects; and he would
rather command ten or twelve miserable highwaymen or
adventurers than stand at the head of a well-equipped, elegant
troop, who might, in common with himself, own a greater master.
Coinciding with these traits of character, is also the predilection of
the Turks for repose and inactivity; for, although diligence and
activity, according to our European notions, are not to be met with
anywhere in Asia, still, work is not so much abhorred, either by the
Iranian or Semitic nations, as by the Turks, who consider hunting
and war alone worthy of man. Upon them husbandry is only forcibly
imposed, and is considered ignominious. A wondrous prosperity has
never befallen Turkey. The peasant was always idle and careless; the
number of craftsmen limited. Officials had only wealth when the
Janitchars came back from their pillaging excursions, laden with
treasures.
In Central Asia, agriculture is exclusively in the hands of the Persian
slaves; commerce and business with the Tadjiks, Hindoos, and Jews;
for even the Œzbegs, settled there for centuries, meditate robbery
and war, and if they can procure no foreign enemy they attack each
other mutually in bloody brother strife.
As concerns intellectual capacity, I have found that the Turk is
everywhere far inferior to other Asiatic nations, namely, the Iranian
and Semitic; and that, through narrowness of mind, he loses those
prerogatives which his superiority in other respects would acquire for
him. This weakness is denoted by the word Türklük (Turkdom), of
which Kabalik (coarseness), and Yogunluk (thickness), are
synonyms. By Türklük, one understands also rudeness and
roughness in manners; and if here and there this defect is palliated
by the appellation, Sadelik (simplicity), still, for the most part, they
are subjoined to the Turkish name as insulting epithets. As the
Osmanli is over-reached by the Armenian, Greek, and Arab; so is the
Œzbeg baffled by the subtle and yielding Tadjik, and the no less
crafty and avaricious Hindoo. Whether this is to be ascribed to a
national defect or to an extreme nonchalance, it were hard to
determine; still, it is highly remarkable that the Turk in the far east,
as well as in the immediate vicinity of the civilised western country,
shuns meditation, and that nowhere are his attempts at wit
particularly brilliant. This disadvantage is partially the reason that
among the Turks more honesty, frankness and confidence, is to be
met with than among the remaining nations of Asia.
Türklük, by which strangers understand the above-named fault, is
often used by the Turks themselves as a mark of plainness,
simplicity, and uprightness. The lights and shades of Türklük have
been at all times observable and discoursed on, whenever parallels
are drawn between the character of the Turks and of other nations,
especially the Persians. People praise the acuteness, the refined
manners of the latter; but still, he who wants to find a faithful
servant, an attached soldier, or an upright man, will always give the
preference to the Turks. Therefore, we find in earliest times that
foreign princes liked to use Turkish troops; they call them into their
country, and invest their officers with the highest dignities; and as
bravery, perseverance, and love of governing, is more innate in them
than in any other Asiatic people, it is very easy to explain how they
rise from simple mercenaries to governors; and how they subjugated
Iranian and Semitic peoples, from their home up to the Adriatic,
many of whom are still ruled by them. In my opinion, it is not only
superiority of physical powers which has sustained the Turkish
dynasties upon foreign thrones, and still does so: this is also greatly
ascribable to their superiority of character. They are unpolished, and
by nature wild, uncultivated, but seldom cruel out of malice. They
enrich themselves at the cost of their subjects, but again divide
generously the collected treasures. They are severe towards their
subordinates, but seldom forget the duties that they have to fulfil
towards the latter, as patriarchal heads. In a word, in all deeds and
works of the Turks a sort of kindness is perceptible, which is,
perhaps, more to be ascribed to indolence and laisser-aller, than to a
fixed purpose to do good; but still it works as a virtue, whatever may
be its origin.
Finally will we mention hospitality, in which the Turks are better
versed than the Iranian and Semitic nations, and certainly for very
simple causes. As acknowledged, hospitality is observed in
proportion to the degree in which a nation advances from a nomadic
condition to a settled manner of living, and as Asia is generally far
more prominent in this virtue than Europe, so are the Turks, the
majority of whom are incarnate nomads, to be distinguished from
Welcome to our website – the perfect destination for book lovers and
knowledge seekers. We believe that every book holds a new world,
offering opportunities for learning, discovery, and personal growth.
That’s why we are dedicated to bringing you a diverse collection of
books, ranging from classic literature and specialized publications to
self-development guides and children's books.
ebookbell.com