The Best Pop Song Ever!

I found the top 50 words in all the #1 pop hits listed in Billboard magazine from 1965 to 2015.

Unfiltered (including prepositions, conjunctions, etc): [(‘you’, 8353), (‘i’, 7882), (‘the’, 7083), (‘me’, 4277), (‘and’, 4068), (‘a’, 3873), (‘to’, 3869), (‘it’, 3796), (‘my’, 3529), (‘in’, 2650), (‘im’, 2593), (‘that’, 2431), (‘on’, 2224), (‘your’, 2091), (‘up’, 2085), (‘like’, 2054), (‘oh’, 2013), (‘all’, 1759), (‘we’, 1726), (‘dont’, 1619), (‘love’, 1544), (‘be’, 1509), (‘of’, 1471), (‘know’, 1434), (‘for’, 1400), (‘so’, 1308), (‘but’, 1303), (‘is’, 1288), (‘got’, 1282), (‘with’, 1258), (‘just’, 1229), (‘this’, 1197), (‘baby’, 1113), (‘when’, 1073), (‘get’, 1059), (‘its’, 994), (‘no’, 989), (‘now’, 947), (‘yeah’, 944), (‘what’, 933), (‘youre’, 923), (‘can’, 916), (‘go’, 906), (‘if’, 885), (‘do’, 870), (‘wanna’, 858), (‘down’, 826), (’cause’, 769), (‘out’, 767), (‘make’, 746)]

Filtered:

im, like, oh, dont, love, know, got, baby, get, yeah, youre, go, wanna, cause, make, want, girl, never, one, let, see, gonna, aint, cant, la, come, ill, back, time, feel

Then I put them together into (semi-)meaningful lyrics.

I'm like, oh don't love know

I got a baby, yeah

You're gonna wanna want me

Cause you make me, girl,

Never be the one to let me see

I ain't the one

Can't be —la la la—

the one to come back.

I'll take time to feel it.

Semantics in the Old English Poetic Line

The case of Maldon

During an Independent Study on the Battle of Maldon this week, we noticed that in lines 109 and 110, the weapons of war were named in the third lift. The verbs were in the fourth:

grimme gegrundene garas fleogan

bogan wæran bysige bord ord onfeng.

A lift is another term for one of the four heavily weighted syllables in the OE poetic line. Whether some have more semantic force than others is a question raised by Professor Smirnitskaya of Moscow State University. Her student, Dr. Ilya Sverdlov of the Helsinki Institute of Advanced Study, gave a terrific paper on lifts and semantic force here at UMass many years ago.

I wrote a program to extract the third lift from every line. Recall that every OE poetic line has four major stresses, a caesura between the second and third stress, and alliteration across the caesura.

The program is in Python. For each line of the poem:

  • I remove OE stop-words
  • divide a line into half-lines (called the a-line and the b-line)
  • take the first letter of each word in the a-line in order to establish a pattern of alliteration in the b-line
  • return the third lift

At the moment, the third lift is unformatted. But I’d like to format it in color if it’s an alliterated lift. That’s for later. Also for later is adding some functionality so that this program can retrieve any lift from any poem along with the part of speech of that lift (e.g. “garas”, noun plural). First, the results. Then, the code. NB. Some of the results are inaccurate—I’ve marked those with a Kleene star.

And now the code.

First, the list of stop-words in Old English:

If you would like the formatted text of Maldon please write me.