Harry Van Dyke

Harry Van Dyke, also known as Harry'O The Vandizzle (born September 29, 1972) is an American actor and music producer, most known for his role as Douby in the movie Split Decisions.[1] His music credits are the album The Camp[2] from Lay'em Down Productions, and various other songs that he produced.

Harry Van Dyke
Also known asHarry'O The Vandizzle
Harry Vandyke
Born (1972-09-29) September 29, 1972
Detroit, MI
OriginLos Angeles, CA
GenresRap
Occupation(s)Rapper, record producer, minor actor
Years active1986–present
LabelsLay'em Down Studios [n 1]

Discography

Albums

Year Album Title Notes
2009 The Camp Various songs Recorded in all but three songs, also produced

Singles

Filmography

Year Title Role Notes
1988 Split Decisions Douby[1] minor character
gollark: ```python#!/bin/env python3chars = [chr(n) for n in range(126)]firstchar = chars[0]lastchar = chars[len(chars) - 1]def increment_char(character): return chr(ord(character) + 1)def old_increment_string(string_to_increment): reversed_string = list(reversed(string_to_increment)) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed(reversed_string)))def increment_string(to_increment): reversed_string = list(to_increment) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed_string))def string_generator(): length = 0 while 1: length += 1 string = chars[0] * length while True: try: string = increment_string(string) except IndexError: # Incrementing has gone out of the char array, move onto next length break yield string```
gollark: Except it enumerates all possible ASCII strings instead.
gollark: I made that!
gollark: no.
gollark: Check out my cool project!http://localhost:3030

References

  1. "Split Decisions Cast List". The New York Times Company. Retrieved January 12, 2014.
  2. "The Camp Album". Ivave.com. Archived from the original on March 3, 2016. Retrieved January 12, 2014.

Notes

  1. Van Dyke is now an independent artist who owns his own recording studio.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.