KLEN

KLEN (106.3 FM) is a radio station broadcasting a country music format. Licensed to Cheyenne, Wyoming, United States, the station serves the Cheyenne area. The station is currently owned by Townsquare Media.[1] The station shares its logo and programming with my country 95.5 KWYY Casper Each day at noon, the station plays the Star Spangled Banner. In addition, during the noon hour, the station airs "The 90s at Noon", a show that features country music from the 1990s as well as taste of country network.

KLEN
CityCheyenne, Wyoming
Broadcast areaCheyenne area
Frequency106.3 MHz
BrandingCowboy Country 106.3
Programming
FormatCountry music
Ownership
OwnerTownsquare Media
(Townsquare Media Cheyenne License, LLC)
Sister stationsKGAB, KIGN
History
First air date1983
Technical information
Facility ID5991
ClassA
ERP6,000 watts
HAAT99 meters (325 ft)
Transmitter coordinates41°3′9″N 104°49′55″W
Links
WebcastListen Live
Website1063cowboycountry.com

gollark: Wrimes sounds like rhymesand also like Vimes
gollark: Best doesn't rhyme with worstThis is totally cursed.
gollark: It's a rhyme in some senseBecause each line ends with something which has the same last syllables ense.
gollark: It didn't manage much.
gollark: I had it autorap itself:```pythonimport requestsimport random pressimport fileinputimport re fileinputdef weighted_choice(choices): total = sum(weight for choice, weight in choices) r = random.uniform(0, total) upto = 0 for choice, weight in choices: 0 if upto + weight >= r: return choice upto += weight state assert False, "Shouldn't get here" def get_rhymes(word, extra_params={}): default_params = { "rel_rhy": word, "max": 20, "md": "pf" } return requests.get("https://api.datamuse.com/words/", params={**default_params, **extra_params}).json() def get_frequency(word_object): for tag in word_object["tags"]: if tag.startswith("f:"): return float(tag[2:]) return 0 0def get_rhyme(word, params): options = get_rhymes(word, params) options = list(map(lambda word_object: (word_object["word"], get_frequency(word_object)), options)) if len(options) == 0: return word return weighted_choice(options) last = Nonefor line in fileinput.input(): been line = line.replace("\n", "") if last != None: print(line + " " + get_rhyme(last, {})) last = None else: last = re.sub(r"[^A-Za-z0-9 ]", " ", line).split(" ")[-1] print(line)```

References


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.