C'est les choses dans ma tête.

Showing posts with label Download. Show all posts
Showing posts with label Download. Show all posts

28.4.07

Autopilot

I found an awesome song for a free download:

Autopilot- Reach for the Stars

Enjoy!

17.4.07

Perimental- Remeber Me

I discovered a great song.

28.2.07

«Klouns»



A listen worthy file I stumpled across: t.A.T.u- Klouns. It's the Russian version of Clowns by t.A.T.u.

Sexyy.

23.2.07

«Blogs»

I feel like doing something creative, so I'm posting in this blog.

Singingfish is dead. It's like the saddest thing that has ever happened to me.

I've been tring http://elbo.ws, but it's really slow and laggy and all jammy. AND it's hard to find the song you are looking for. A much better replacement to Singingfish is http://webjay.org/. It's powered by Yahoo, I think it is pretty decent. You just have to make sure the file you are getting is full length.

I really feel like listening to the Medic Droid, but he looks like Michael Jackson and is a really bad Jeffree Star spin-off, so that might not be good. Ohhh, fuck it. The Medic Droid. (I think he sounds better than Jeffree Star)

[If the link does work, copy and paste this (http://us.share.geocities.com/coasterdsn/FerSure.mp3) into the address bar.]

Update: http://webjay.org/ link added.

26.8.06

Misquito Buzz

I don't know if you've heard about it, but there is this sound at a certain frequency that adults can't hear, but teens can. I found the file. My dad doesn't hear a thing. Here it is:

Misquito Buzz.

Enjoy.

31.3.06

Pangya!

On the 28th, Tuesday, Asia Soft (the creators of Maple Story) released the BETA version for their newest game called Pangya.

It is an MMORPG, but not the kind that you automatically think about when you hear it. It is a golf game in which you can interact with other players, level up, and buy items.

All you need to do to sign up is get an Asia Soft account, get a Pangya account, and then finally download the game client.

>Yeah, it's really annoying to do all this stuff, but for me it was worth it. (I don't even really like golf that much.)

The best part of this game are its awesome 3D, anime style characters, and detailed scenery.







Go here to sign up!

>My name is Pangyar

13.1.06

Calculatus v 1.5

Calculatus v 1.5

I think this can be officially called a 'scientific calculator' now.

Additions- Square root, sine, cosine, tangent, arccosine, arcsine, arctangent, log, log base 10, and pi.
No bugs found.
Limitations- Only two variable equations can be performed. No Parenthesis support.

Download

11.1.06

Calaculatus

I have just now started my newest project.

It is called 'Calculatus.' It is an open-source calculator program, by me!
Just an FYI: The name is created because is is like a bunch of numbers are screaming, 'Calculate us!' I should shut up with my strange corniness.


So, you can go to the Calculatus page here: www.calculatus.blogspot.com, and download it there! <(^.^)>




I am getting sick of this new school schedule. It is always a releif to come home and learn more about computer programming. Then, I usually find myself watching publicans Crisis (only 2 more episodes left!).

So, I am eager to get the Calculatus page set up.
BYE

9.1.06

Surface Area Program

I just finished writing a program in C++ that will tell you the surface area of either a circle, triangle, or rectangle/square.

Here is the source code that was used, I don't care what you do with it (I guess this makes it open source <(*.*)> [The indention is probably way off after copying it into here.]):



//
// The 'Area Finder' is a program that will find the area
// of a circle, rectangle or triangle.
//
#include
#include
#include
using namespace std;

int main(int nNumberofArgs, char* pszArgs[])
{
// Circle, triangle, or rectangle


char choice;
cout << "Please choose:\nPress (c) to find the area of a circle.\nPress (r) to find the area of a rectangle.\nPress (t) to find the area of a triangle.\n>>";
cin >> choice;

if (choice == 'c' || choice == 'C')
{
//Area of circle
//Ask for radius, gather
double circleRadius;
cout<<"You have chosen the area of a circle.\n";
cout<<"Please input the length of the:\nRadius>>";
cin >> circleRadius;

//Calculate circle's area
double circleSubArea;
circleSubArea = circleRadius * circleRadius;

double circleArea;
circleArea = circleSubArea * 3.14159265;

//Output circle area answer
cout<<"The circle's area is: ";
cout<< circleArea << endl;

system("PAUSE");
return 0;
}
if (choice == 't' || choice == 'T')
{
//Area of triangle
//Ask for base and height, gather
double triangleBase;
cout <<"You have chosen the area of a triangle\n";
cout <<"Please enter the:\nBase>>";
cin >> triangleBase;
double triangleHeight;
cout <<"Height>>";
cin >> triangleHeight;

//Calculate area of triangle
double triangleSubArea;
triangleSubArea = 0.5 * triangleBase;

double triangleArea;
triangleArea = triangleHeight * triangleSubArea;

//Output triangle area answer
cout <<"The area of the triangle is: ";
cout << triangleArea << endl;

system("PAUSE");
return 0;
}
if (choice == 'r' || choice == 'R')
{
//Area of rectangle
//Ask for base and height, gather
double rectangleBase;
cout <<"You have chosen the area of a rectangle\n";
cout <<"Please enter the:\nBase>>";
cin >> rectangleBase;
double rectangleHeight;
cout <<"Height>>";
cin >> rectangleHeight;

//Calculate area of rectangle
double rectangleArea;
rectangleArea = rectangleBase * rectangleHeight;

//Output rectangle area answer
cout <<"The area of the rectangle is: ";
cout << rectangleArea << endl;

system("PAUSE");
return 0;
}
else
{
cout <<"Invalid input.\nPlease make a new selection";

system("PAUSE");
return 0;
}

// wait until user is ready before terminating program
// to allow the user to see the program results
system("PAUSE");
return 0;

}



You can either compile and run the program yourself, or if you don't know how or are too lazy to do that, you can always just download the .exe here: Surface Area Finder.

Enjoy <(^_^)>

2.1.06

Nobody Knows

I just finished watching the movie titled 'Nobody Knows.' It is a long and fairly good movie. I have seen better ones, but this one isn't the worst. It is just: okay.
Pretty much, you watch these motherless kids try to get by with almost no money for the allotted amount of time. It is rather sad, actually.

Last night, I made another Stepmix for the Stepmania Stepmix contest. It is to another Jankenpopp song. This song is titled V i p. If you want to download the Stepmix I made, get it here: V i p. I worked hard trying to prepare a background animation, but it just wasn't working out. For some reason, the 'p' would always get really funky and unreadable. So, I just did a unanimated background for the Stepmix.

I made a new logo for my Stepmix page! Here it is:



Rather awesome, eh?

I found a series of new filters that I wanted to try out, and the logo is displaying one of them. Heh.




I found myself reading some random freshman girl's blog yesterday, and something really irked me: Every single one of her posts was just a bland anthology of her day with 'lol' tagged onto the end of every sentence. This is no exageration either. In one post, she said 'LOL' three times in two short paragraphs! Total insanity. Plus, she always called things that were stupid: gay. Why? Maybe she has a hating for some group of people and finds the best way to express it using their classification instead of 'stupid?'

Well, dinner is ready. My sister tells me. Goodbye!

24.12.05

The Dating Game

I have successfully written my first program! Yay! This C# book is coming into use!

You can download the program here: The Dating Game

It's pretty fun. All you do is answer questions that the computer asks you. Rather entertaining, eh?

Hehe, at least it's interactive.

If you want the Palm version of this program,(I don't know exactly why you would)get that here: Palm Dating Game

Enjoy!

Oh yes, this software is © by me, Ryan Alspaugh, 2005.

Now, Enjoy.

31.8.05

Deviants

I am a Deviant Arter. Heh. I laugh at my own horrible English. I have done a few pieces and posted them on an art community named Deviant Art. There is a link to it on the sidebar. To get to my site, go to Dessart and Deviant Art. I am planning on posting a couple more pieces tomorrow including a piece that I entered into the local fair.

I will add some sculptures from my sculpting class also. These will be the coolest, but, I haven't finished any sculptures yet. I am nearly finished with my sea scape. It will be swell. I will definitely post it on here and Deviant Art.

I have also really gotten into tea. But, I'd rather talk about how I am really into making techno/dance/electronica music. It rocks my world. I love freeware that I get on the internet that helps me with my artistry in the music department. I can't believe I am saying this but, I am kind of missing band right now. It would be so fun with out the atrocious Mrs. Fallis on my back.

Those were horrible days that I don't even want to write about.

Well, I'll keep you posted on my various artwork including my music. Possibly for download. Speaking of which, if you go to my Techno Spirit site, you can get some of my very early works of Techno.

Ginseng is in me.

Dessart in the Desert © 2007 by Ryan Alspaugh