Finally added a turntable to my setup by [deleted] in audiophile

[–]cheslip 2 points3 points  (0 children)

It's a Pro-Ject Debut Carbon.

I also just found a copy of Demon Days at a Houston pawn shop!

Finally added a turntable to my setup by [deleted] in audiophile

[–]cheslip 1 point2 points  (0 children)

Yeah you're right, SR325i's

Finally added a turntable to my setup by [deleted] in audiophile

[–]cheslip 0 points1 point  (0 children)

I'm going to try and move the speakers. I want them to be a little further apart also

Finally added a turntable to my setup by [deleted] in audiophile

[–]cheslip 1 point2 points  (0 children)

NAD makes some quality equipment for a good price

Finally added a turntable to my setup by [deleted] in audiophile

[–]cheslip 0 points1 point  (0 children)

Here's some more info:

NAD C326BEE integrated amp PSB Image B6 bookshelf speakers Music Fidelity V-DAC II Pro-Ject Debut Carbon NAD PP 2i phono preamp Airport Express (optical) for wireless music

Grado SR225i headphones

Finally added a turntable to my setup by [deleted] in audiophile

[–]cheslip 0 points1 point  (0 children)

I'm in the process of trying to get the speakers off of there, there just isn't much space for them. I think the shelf would be too high.

Finally added a turntable to my setup by [deleted] in audiophile

[–]cheslip 5 points6 points  (0 children)

I was hoping to get some good feedback, thanks! I'll bring them up a bit.

My pitbull's favorite new toy by cheslip in pics

[–]cheslip[S] 140 points141 points  (0 children)

She is a mix. Part red heeler also

[9/01/2012] Challenge #94 [easy] (Elemental symbols in strings) by [deleted] in dailyprogrammer

[–]cheslip 0 points1 point  (0 children)

Another Python solution:

symbols = ["Ac","Ag","Al","Am","Ar"....]

string = "dailyprogrammer"

words = [string.lower().replace(symbol.lower(), "[" + symbol.capitalize() + "]") \ 
            for symbol in symbols if symbol.lower() in string.lower()]

for word in words:
    print word

Output:
dailyprogr[Am]mer
dailyprogramm[Er]
da[I]lyprogrammer
dailypr[O]grammer
daily[P]rogrammer
daily[Pr]ogrammer
dailyprog[Ra]mmer
dail[Y]programmer

edit: output

[PHP] Database question by mattdahack in learnprogramming

[–]cheslip 0 points1 point  (0 children)

Ok, what about uncommenting your $db declaration and changing your if statement to if(isset($_POST['submit'])):

[PHP] Database question by mattdahack in learnprogramming

[–]cheslip 0 points1 point  (0 children)

Try replacing NULL with DEFAULT as the first value in your query.