Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
help me!
#41
Well you see, my favourite songs/bands change monthly pretty much. Last month I didn't even know any A Perfect Circle or Audioslave songs besides Judith and Like A Stone. I find new music constantly, and I like some and I hate some. I just recently discovered Rage Against The Machine, and I don't like them all too much. And I am NOT A G0DDAMN WIGGER. Sorry. But I'm just not. I hate rap and I hate hiphop and I hate "ghetto" bullsh*t. :evil:
earn.
Reply
#42
Quote:Seph, with that band list, I'd call you a semi-wigger mallcore dork.

Just playing the devil's advocate here but: yours makes you not, how?
Reply
#43
I like LP (and it IS spelt LINKIN) because the words mean something to me that I can't explain to anyone else...

Anyway, the name is spelt bad, because they were called Hybrid theory (they mix rock and rap), but a band called Hybrid argued, so they picked a name that they'd hoped wouldn't mean anything, so as to not take away from the music they write.
Reply
#44
Ricky Martin? Anyone bold enough?

LOL
y smiley is 24 bit.
[Image: anya2.jpg]

Genso's Junkyard:
http://rel.betterwebber.com/
Reply
#45
Ricky Martin??????? :???:

That explains a lot :lol:
Reply
#46
Pthhh.... He suck BIG time!!!

Smashing Pumkins and Evanescence here.

Though I just listened to Mandy Moore's new songs and liked it. ;*)
y smiley is 24 bit.
[Image: anya2.jpg]

Genso's Junkyard:
http://rel.betterwebber.com/
Reply
#47
Code:
''
'' Here's a small lesson on how to use for loops
'' and your own data types.
''
''
defint a-z
const MAXALBUMS = 20

type ALBUMINFO
    name            as string * 128
    artist          as string * 128
    genre           as string * 32
    rdate           as string * 10
end type


dim i as integer
dim uchoice as integer
dim albumdata( MAXALBUMS-1 ) as ALBUMINFO



''
'' Load data
''


''
'' Print out albums
''
for  i = 0 to MAXALBUMS-1
    print str$( i+1 ) + ": [" + albumdata(i).name + "]     -[" + albumdata(i).artist + "]"
next i


''
'' Ask user for choice
''
input "Select an album": uchoice

''
'' View choice
''
if ( uchoice < 1 ) or ( uchoice > MAXALBUMS ) then
    print "Error: Invalid choice!"
else
    print "Artist: " + albumdata(uchoice-1).artist
    print "Title : " + albumdata(uchoice-1).name
    print "Genre : " + albumdata(uchoice-1).genre
    print "Date  : " + albumdata(uchoice-1).rdate
end if
oship me and i will give you lots of guurrls and beeea
Reply
#48
Janesh, in the future please dont post your message with a title: Help!!!, Help Me!!! and such stuff. Let it be related to your problem. Thanks.
Reply
#49
I hope you don't mind, but I've been working on a revised version of your program. I noticed that in one of your postings that you haven't really used arrays yet, well this version makes use of arrays and also helps with your various "let" mazes. I'm not completely done with it yet, but if you like I can send you what I have now, or finish it first. HOWEVER... You would only be cheating and hurting yourself, if you should choose to turn this in as your program. Especially if your instructor should ask you to explain how it works. If anyone else out there has an opinion as to if I should send this or not, please let me know. :roll: I certainly don't want to make matters worse. Please be nice in you comments though. Big Grin
adsherm
Reply
#50
You should atleast attempt understanding the arrays prog. If you understand it completely only then send it.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)