Different Things
Different Things is the ninth studio album by American country music artist Tracy Byrd. It was released in 2006 on Byrd's own Blind Mule label. The songs "Cheapest Motel" and "Better Places Than This" were released as singles. The former reached a peak of #55 on the Hot Country Songs charts in 2006.
Different Things | ||||
---|---|---|---|---|
Studio album by | ||||
Released | September 26, 2006 | |||
Genre | Country | |||
Label | Blind Mule | |||
Producer | Tracy Byrd Mike Geiger | |||
Tracy Byrd chronology | ||||
| ||||
Singles from Different Things | ||||
|
Track listing
- "Different Things" (Brice Long, Bobby Taylor, John Ramey) – 3:32
- "The More I Feel Like Rockin'" (Mark Nesler, Tony Martin, Jim Collins) – 3:11
- "She Was Smart" (Tracy Byrd, Martin, Nesler) – 3:01
- "A Cowboy and a Dancer" (Kevin Denney, John Edwards) – 3:45
- "The Biggest Thing in Texas" (Phyllis Austin, Mike Geiger, Woody Mullis) – 2:40
- "Just One Woman" (Ramey) – 4:19
- "Saltwater Cowboy" (J.R. Shelby, Phil O'Donnell, Cyril Rawson) – 3:48
- "Cheapest Motel" (Cole Deggs, Geiger, Trey Matthews) – 3:48
- "Better Places Than This" (Geiger, Mullis, Mike Huffman) – 3:51
- "Before I Die" (Matthews, Mullis) – 4:58
- "Hot Night in the Country" (Byrd, Nesler, Martin) – 3:40
Personnel
- Tracy Byrd - lead vocals
- Joe Lee Carter - background vocals
- J.T. Corenflos - electric guitar
- Mike Geiger - harmonica
- Kevin "Swine" Grantt - bass guitar
- Tommy Harden - drums
- Aubrey Haynie - fiddle
- Mike Johnson - steel guitar
- Gordon Mote - keyboards
- Gary Prim - keyboards
- John Wesley Ryles - background vocals
- Marty Slayton - background vocals
- Mike Taliaferro - background vocals
- Biff Watson - acoustic guitar
- Glenn Worf - bass guitar
Chart performance
Chart (2006) | Peak position |
---|---|
U.S. Billboard Top Country Albums | 36 |
U.S. Billboard 200 | 165 |
U.S. Billboard Independent Albums | 15 |
gollark: It's 00:00 now.
gollark: oh dear.
gollark: Well, the outsourced `parsedatetime` stuff can probably do it.
gollark: Good luck.
gollark: Fine.```python# from here: https://github.com/Rapptz/RoboDanny/blob/18b92ae2f53927aedebc25fb5eca02c8f6d7a874/cogs/utils/time.pyshort_timedelta_regex = re.compile("""(?:(?P<years>[0-9]{1,8})(?:years?|y))? # e.g. 2y(?:(?P<months>[0-9]{1,8})(?:months?|mo))? # e.g. 2months(?:(?P<weeks>[0-9]{1,8})(?:weeks?|w))? # e.g. 10w(?:(?P<days>[0-9]{1,8})(?:days?|d))? # e.g. 14d(?:(?P<hours>[0-9]{1,8})(?:hours?|h))? # e.g. 12h(?:(?P<minutes>[0-9]{1,8})(?:minutes?|m))? # e.g. 10m(?:(?P<seconds>[0-9]{1,8})(?:seconds?|s))? # e.g. 15s """, re.VERBOSE)def parse_short_timedelta(text): match = short_timedelta_regex.fullmatch(text) if match is None or not match.group(0): raise ValueError("parse failed") data = { k: int(v) for k, v in match.groupdict(default=0).items() } return datetime.datetime.utcnow() + relativedelta(**data)cal = parsedatetime.Calendar()def parse_humantime(text): time_struct, parse_status = cal.parse(text) if parse_status == 1: return datetime.datetime(*time_struct[:6]) else: raise ValueError("parse failed")def parse_time(text): try: return datetime.datetime.strptime(text, "%d/%m/%Y") except: pass try: return parse_short_timedelta(text) except: pass try: return parse_humantime(text) except: pass raise ValueError("could not parse time")```
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.