Area code 708

Telephone area code 708 covers most of Chicago's southern suburbs. It currently serves most of western and southern Cook County and eastern and southern Will County in the state of Illinois, USA.

Area code 708, in lavender.

Area code 708 was split off from area code 312 on November 11, 1989, and once covered almost all of Chicago's suburbs on the Illinois side. In 1996, it was reduced to its current size in a three-way split. The northern suburbs became area code 847, while the western suburbs became area code 630. Area code 464 is being reserved as an overlay area code for 708 to provide additional numbering options for this area.

Area code 708 was Illinois' first new area code since 309 was created in 1957 and the second new code for the state since the NANP went online in 1947.

Communities included

gollark: ```pythonimport thesaurusimport randomimport concurrent.futures as futureswords_to_synonyms = {}synonyms_to_words = {}def add_to_key(d, k, v): d[k] = d.get(k, set()).union(set(v))def add_synonyms(syns, word): for syn in syns: add_to_key(synonyms_to_words, syn, [word]) add_to_key(words_to_synonyms, word, syns)def concat(list_of_lists): return sum(list_of_lists, [])def fetch_word(word): results = concat(thesaurus.Word(word).synonyms("all")) return resultsdef add_words(words): with futures.ThreadPoolExecutor(max_workers=50) as executor: word_futures = {executor.submit(fetch_word, word): word for word in words} for future in futures.as_completed(word_futures): word = word_futures[future] try: data = future.result() except Exception as exc: print(f"Error fetching {word}: {exc}") else: add_synonyms(data, word)def getattr_hook(obj, key): results = list(synonyms_to_words.get(key, set()).union(words_to_synonyms.get(key, set()))) if len(results) > 0: return obj.__getattribute__(random.choice(results)) else: raise AttributeError(f"Attribute {key} not found.")def wrap(obj): add_words(dir(obj)) obj.__getattr__ = lambda key: getattr_hook(obj, key)wrap(__builtins__)__builtins__.engrave("Hi!")```
gollark: Ah yes. Global Interpreter Lock. Right. This may be hard.
gollark: On the plus side, you should be able to use `zilch` in place of `None` now.
gollark: The python thesaurus-izer may need some parallelization to be effective.
gollark: We could use this; it seems a cool idea.

See also

Illinois area codes: 217, 224/847, 309, 312, 331/630, 618, 708, 773, 779/815, 872
North: 847/224, 773
West: 815/779, 630/331 area codes 708 East: 219, 773/872
South: 815/779
Indiana area codes: 219, 260, 317/463, 574, 765, 812/930

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