Touch the Hand
"Touch the Hand" is a song co-written and recorded by American country music singer Conway Twitty. It was released in August 1975 as the first single from the album High Priest of Country Music. A ballad that became one of his 41 Billboard magazine No. 1 songs (all but one of them on the Hot Country Singles charts), the song represented one half of a double-sided hit for Twitty in 1975. The other side was "Don't Cry Joni." The song was written by Twitty and Ron Peterson.
"Touch the Hand" | ||||
---|---|---|---|---|
Single by Conway Twitty | ||||
from the album High Priest of Country Music | ||||
B-side | "Don't Cry Joni" | |||
Released | May 1975 | |||
Recorded | November 19, 1974 Bradley's Barn, Mt. Juliet, Tennessee | |||
Genre | Country | |||
Length | 3:22 | |||
Label | MCA 40407 | |||
Songwriter(s) | Ron Peterson, Conway Twitty | |||
Producer(s) | Owen Bradley | |||
Conway Twitty singles chronology | ||||
|
Personnel
- Conway Twitty — vocals
- Harold Bradley — 6-string electric bass guitar
- Ray Edenton — acoustic guitar
- Johnny Gimble — fiddle
- John Hughey — steel guitar
- Tommy Markham — drums
- Grady Martin — electric guitar
- Bob Moore — bass
- Hargus "Pig" Robbins — piano[1]
Chart performance
Chart (1975) | Peak position |
---|---|
U.S. Billboard Hot Country Singles[2] | 1 |
Canadian RPM Country Tracks | 8 |
gollark: ```pythonfrom transformers import GPT2LMHeadModel, GPT2Tokenizerimport discord.extfrom discord.ext import commandsTOKEN = 'NOT TELLING YOU'bot = commands.Bot(command_prefix='$')@bot.eventasync def on_ready(): print("done!")@bot.command()async def test(ctx, arg): inputs = arg # initialize tokenizer and model from pretrained GPT2 model tokenizer = GPT2Tokenizer.from_pretrained('gpt2') model = GPT2LMHeadModel.from_pretrained('gpt2') outputs = model.generate( inputs, max_length=200, do_sample=True, temperature=1, top_k=50 ) response = (tokenizer.decode(outputs[0], skip_special_tokens=True)) await ctx.send(response)client.run(TOKEN)```
gollark: Yes, you can just use `@bot.event` or something.
gollark: This is probably obvious but you're sending it in a channel the bot sees, right?
gollark: Do you need horrible amounts of computing power for this? I could use this for purposes.
gollark: Also that.
See also
References
- The Conway Twitty Collection (Media notes). Conway Twitty. Universal City, California: MCA Records. MCAD4-11095.CS1 maint: others (link)
- Whitburn, Joel (2004). The Billboard Book Of Top 40 Country Hits: 1944-2006, Second edition. Record Research. p. 361.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.