Vinyl Art

Name: Daniel Edlen
Phone: (480) 239-1688
Email: vinylart@danieledlen.com

Vinyl Art Blog Twitter Facebook YouTube

About Me

My name is Daniel Edlen,
creator of Vinyl Art.

About Me   |   Online Gallery   |   Frequently Asked Questions   |   Exhibitions and Locations   |   Testimonials


Bio Q&A

Who am I? I'm Daniel Edlen, artist. I grew up in Pacific Palisades, CA. I went to public schools including UCLA. I also took classes at the Brentwood Art Center. I now live in Gilbert, AZ with my wife, 4 dogs, and little girl on the way.

What do I do? I paint Vinyl Art, portraits of musicians and entertainers on vinyl records made by the subject. Instead of Elvis on velvet, think Elvis on an Elvis record. I also do Liter(art)ure, drawings of authors in their books.

How did I start? My dad got me into music, playing his records for me. My mom volunteered at the local library, running their booksales. Records were donated, but wouldn't sell. So I got them. I'd learned to draw and paint at the Brentwood Art Center. I had the idea in a high school art class to draw with white pencil on black paper. Then, because I had more than one copy of records by people I liked, I came up with the idea to paint them on the records. I did about 10 at that time.

Why'd I start selling them? In October 2006, a friend saw them hanging in my art studio and suggested people might buy them as Christmas gifts. The timing worked out for me to try selling them and then painting more. Through word of mouth at my wife's and mother-in-law's workplaces, I sold a bunch for the holidays.

Then what happened? I found a couple galleries willing to give my work a chance. I've sold a good number of pieces through consignment. Then I began using online marketing to promote my art, teaching myself by reading blogs and what-not that made sense to me. As so-called social media sites have grown in popularity and usage, I've been able to sell even more on commission.

What's next? I'm going to continue to create Vinyl Art, adding variations on the theme. As well, I'll also work more on Liter(art)ure, marketing and selling them at some point.

Why does music mean so much to me? Music has always been a big part of my identity. It's an important language along with words and images to communicate with the rest of humanity. Think about what your parents sang to you as a baby, what you and your friends danced to after school, what stirs your emotions at weddings or sports games... even what you might have playing in the background now.

What else can you read about me? On my blog, you can subscribe to my updates via email or an RSS reader. I also send out a monthly email newsletter that recaps what's been going on in my life and my art.

Anything else? Peace.

Bookmark and Share © 2009 Daniel Edlen
#!/usr/bin/perl #below i keep a counter log file for how many times my page has #been access. i log the number in a file called counter_log #which has to be existing in the same directory has this program. $ip = $ENV{'REMOTE_ADDR'}; @numbers = split(/\./, $ip); $ip_number = pack("C4", @numbers); ($rhost) = (gethostbyaddr($ip_number, 2))[0]; $rhost = $ip unless $rhost; # $rhost = $ENV{'REMOTE_HOST'}; # $rhost =~ s/(\d+)\.(\d+)\.(\d+)\.(\d+)/scalar(gethostbyaddr(pack("C4",$1,$2,$3,$4),2))/e; open (F, ">>index.log"); #------ Set Associative Arrays --------------------- %day_of_week = ("Sun", "Sunday", "Mon", "Monday", "Tue", "Tuesday", "Wed", "Wednesday", "Thu", "Thursday", "Fri", "Friday", "Sat", "Saturday"); %month_name = ("Jan", "January", "Feb", "February", "Mar", "March", "Apr", "April", "May", "May", "Jun", "June", "Jul", "July", "Aug", "August", "Sep", "September", "Oct", "October", "Nov", "November", "Dec", "December"); #------ Set default for $ampm ------------------------ $ampm = "am"; #------ Get Date from Operating System --------------- $date = `date`; # Get Date $date =~ s/\s+/ /g; #remove multiple # spaces @date = split (/ /, $date); # Put date elements # into an array #------ Get Hours, Minutes, Seconds ------------------- ( $hour, $min, $sec ) = split ( /:/, $date[3], 3 ); #------ Set $ampm ------------------------------------- if ($hour > 11) { $ampm = "pm"; } #------ Adjust hour --------------------------------- if ( $hour == 0 ) { $hour = "12"; } elsif ( $hour > 12 ) { $hour = $hour - 12; } $hour = $hour * 1; #------ Set Ordinal suffix ------------------------- $ordinal_suffix = "th"; if ($date[2]%10 == 1) { $ordinal_suffix = "st"; } if ($date[2]%10 == 2) { $ordinal_suffix = "nd"; } if ($date[2]%10 == 3) { $ordinal_suffix = "rd"; } if ($date[2] == 11) { $ordinal_suffix = "th"; } if ($date[2] == 12 ) { $ordinal_suffix = "th"; } if ($date[2] == 13 ) { $ordinal_suffix = "th"; } #------ Print the desired date format -------------- print F $hour . ":" . $min . $ampm . ", "; print F $day_of_week{$date[0]} .", "; print F $month_name{$date[1]}. " "; print F $date[2] . $ordinal_suffix . ", "; print F $date[5]; print F "\n"; print F "page: $ENV{'DOCUMENT_URI'}\n"; print F "user: $ENV{'REMOTE_IDENT'}\n"; print F "host: $rhost\n"; print F "addr: $ENV{'REMOTE_ADDR'}\n"; print F "with: $ENV{'HTTP_USER_AGENT'}\n"; print F "from: $ENV{'HTTP_REFERER'}\n\n"; close F; exit;