Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - BlakPilar

Pages: 1 ... 28 29 [30] 31 32 ... 49
436
Woot! Thanks DJ, this is my genre! :D lol

Spoiler For There are 5 of them O.O:
By the way, "screamo" is not a genre -__-
Cover of Lil' Wayne's "6 Foot 7 Foot"

This one isn't really that metally, but whatever.
Cover of Akon's "Right Now (Na Na Na)"

Cover of Katy Perry's "E.T."

Cover of Britney Spears' "Baby One More Time"

Cover of [someone]'s "Still Fly"

I'll probably find more...

EDIT: I did! I forgot about the entire Homefront sountrack! (I'll only post my favorites :P)
Spoiler For 3 more!:
Cover of Slayer's "War Ensemble"

Cover of Edwin Starr's "War"

Cover of Bob Dylan's "Master of War"


437
Other / Re: Soragora
« on: October 09, 2011, 08:57:31 pm »
I've queued it for download (my phone's off right now) and I'll test it out on Tuesday! My bus goes by a museum (more of a historical society, but it has the flag that Abraham Lincoln's head rested on when he was shot and has some of his blood on it), so I'll see if it registers that ;)

438
Miscellaneous / Re: Audiosurf!
« on: October 09, 2011, 06:44:20 pm »
It's a genre lol

439
Computer Programming / Re: Is it my fault, or the computer's?
« on: October 09, 2011, 10:53:19 am »
I had the method names switched (I also had a degrees to radians one), and I did "MyFunction(Math.Tan())" instead of "Math.Tan(MyFunction())."

440
Computer Programming / Re: Is it my fault, or the computer's?
« on: October 08, 2011, 06:31:19 pm »
Yeah, I realized it after some talk in IRC lol. 'Tis all good now :)

441
Computer Programming / Re: Is it my fault, or the computer's?
« on: October 08, 2011, 06:23:04 pm »
@parser, check the category :P this is computer languages help.
yeah but you said that your answer on calc differed from your comp.
Like Deep said lol. I did tan(30(degree symbol)) to be sure :P

But I got it now.

442
Computer Programming / Re: Is it my fault, or the computer's?
« on: October 08, 2011, 06:11:56 pm »
@parser, check the category :P this is computer languages help.

@Deep, no, I want radians to degrees, but the result is over 1000 when I do it the right way.

443
Computer Programming / Re: Is it my fault, or the computer's?
« on: October 08, 2011, 06:07:16 pm »
Yeah, but when I do that I get 1718.873385... ???

444
Computer Programming / Re: Is it my fault, or the computer's?
« on: October 08, 2011, 06:04:32 pm »
Doubles are more precise floating-point numbers (doubles = 15 sig digs, floats = 7 sig digs), so not sure if that would help.

Edit: Nope, doesn't change it.

445
Computer Programming / Re: Is it my fault, or the computer's?
« on: October 08, 2011, 06:00:48 pm »
C#

446
Computer Programming / Is it my fault, or the computer's?
« on: October 08, 2011, 05:42:13 pm »
First off, I wasn't sure whether to put this in Math and Science or here, but I'm putting it here.

In .NET, Math.Tan returns the tangent of some number in radians. However, I need the tangent of that number in degrees. I wrote myself a little method, but for some reason, it's not producing the correct number. I take the degrees in radians, multiply them by pi, then divide by 180.

When I put in 30.0, I should get 0.577350269... (according to the calculator) but I'm getting 0.523598775... Am I doing something wrong, or is it an error by the computer?

Full method:
Code: [Select]
public double RadToDeg(double rad) {
    double deg = ((rad * Math.PI) / (double)180);
    return deg;
}

EDIT: I also tried moving around the parenthesis so it was "rad * (Math.PI / (double)180)," but there was no change.

447
News / Re: OmnomIRC Downtime
« on: October 08, 2011, 03:59:02 pm »
X Chat 2 works for me, ben_g, and I'm running Win7 64-bit.

448
TI-BASIC / Re: Homescreen Invaders Bug!!! Matrix rendering system broken
« on: October 06, 2011, 06:10:02 pm »
Quick Wabbit test shows that
Code: [Select]
5
For(A,1,Ans
2
Disp Ans
End
Displays "2" five times. So maybe? :D

449
TI-BASIC / Re: Homescreen Invaders Bug!!! Matrix rendering system broken
« on: October 06, 2011, 05:00:29 pm »
I know that (if that was meant for me), but my question was if the calculator remembers that as Ans for the for loop instead of something inside of the loop.

450
TI-BASIC / Re: Homescreen Invaders Bug!!! Matrix rendering system broken
« on: October 06, 2011, 04:51:03 pm »
Basically, yeah. Like, if I do
Code: [Select]
5
For(A,1,Ans
2
End
will it use 5 as the max instead of 2?

Pages: 1 ... 28 29 [30] 31 32 ... 49