Jump to content
xisto Community

MotU2510

Members
  • Content Count

    29
  • Joined

  • Last visited

Posts posted by MotU2510


  1. I enjoy writing music on my computer. Its definitely a hobby of mine.

    One of my friends is filming a short film, and asked me to do the soundtrack for it.

    I spent a month on this song for his movie, and i really enjoyed how it came out.

     

    This link is to the mp3 file that i created using FL Studio.

    http://www.yourfilelink.com/get.php?fid=410546

    It will take you to YourFileLink, where you can download the mp3 if you want.

    On the page the link takes you too, there will be a link near the right that says Proceed to File Download Page... sometimes its a little hard to see.

     

    Please let me know if you like it or have any suggestions!

    Its always exciting to get feedback. Thanks :P

    I'm impressed. I thought that was bloomin' brilliant. I really do like the techno-ish guitar part. It really works well with the rest. I do have to agree with the person above me, a bit of guitar or something at the start would have spiced up the intro nicely and really made it something special.


  2. Making it a .txt file only would make it a LOT safer. Other than that it seems fine to me.If you did add a member login then perhaps you could add the abilty to open and edit already existing files. That would be very useful for someone who needs the ability to store and edit files on the web. I'd recommend adding a maximum file length as well, you wouldn't want someone to make a ridiculously long file which uses up all your webhost space.


  3. Um, I personally wouldn't advise your registry JUST to do something as unessential as this. If you edit the registry incorrectly you WILL majorly screw up your computer. Windows will probably never load properly, and chances are you will lose all your documents. The registry is what makes Windows run, it tells it everythign it needs to know, allows programs to run and is basically something you shouldn't edit for anything too unimportant, like this.


  4. Hi kab012345 I cant help you but the best programing language is C++ but I have some problems too B)
    Here is a little background for my questions...
    I'm not that old but when I was a kid I used to own a TK85 that loaded programs using k7 tapes. Basic was pretty much all this computer had and I used it to modify some simple games. I had major fun doing this but unfortunately one day the computer died right in the middle of the most exciting programing moment. Much later I learned linux shell scripting and learned a little bit of C. My C knowledge was only enough to fix minor things when I compiled linux from scratch. More recently I have been using PHP for web projects.

    I like to start working on games as a hobby. I have been looking at the great wiki but I don't know where to start.
    I have been thinking about starting with c++ and OpenGL Is that a good idea?. How about also using a game engine? Or maybe something like Game Blender? I already have a tiny bit of experience with blender. Maybe I could play with the code of a game already made. Can anyone recommend any simple game I could get the source code? I have an idea for a short, funny and simple side scroller that eventually I like to try making. It would be also fun to make a funny version of pong.

    I'm running windows XP but it would be nice to make things cross platform.
    My goal is to have fun doing this so I'm looking for the shorter and most documented route :P
    Should I use visual c++ express?

    thanks for all the help in advance B))


    If you want to have fun, then try Game Maker XP. It's free (although the paid for version has a few more features) and has an easy to use language called GML, or Game Maker Language.

  5. Although I couldn't see myself in particular marrying a robot, I can understand that in thirty plus years people might. If robot's become as sophisticated as humans with developed personalities and characteristics, the differences between human and robots which would impeed such a thing from happening now, would become defunct. Sure, some people will object to others marrying a piece of metal, silicon and hydrolic fluids, but others will welcome it, fully embracing the hance to marry someone who knows exactly how to care for them, what to do when they get ill and will (probably) never cheat on them.


  6. My favourite of those is definately the timed messages. I've wished many a time that I could set a message to be sent at a certain if, if I have to go somewhere, for instance.My next favourite is the second one, the business or contact cards sender, if you need to send somebody, for instance a colleague, someone else's details then that would be fantastic, especially if it offered the reciever an option to add to contacts.


  7. That's pretty cool. It would be easier if you didn't use a GUI, but it's still pretty simple. Personally I'd have done something more like:

    def fib_nums_1() #defining the function	count = 0 #We set the count variable to 0 as we have not yet done any production of the numbers	a = 0 #Sets the first variable we require	b = 1 #Sets the second necessary variable	print b #We print the first of our numbers	count = count + 1 #We add one to the count variable as we have processed and printed one fibonacci number	c = a + b #We set the second number to be printed as the sum of the first two	print c #Now we print it	count = count + 1 #We add another one to the count variabledef fib_nums_2() #Now we are defining the second function of our program	a = c + b	print a	count = count + 1	b = a + c	print b	count = count + 1	c =  b + a	count = count + 1fib_nums_1()while count != 100: #This obviously means that we will keep running the following code until the count variable is at 100, at which point we will have calculated and printed 100 fibonacci numbers	fib_nums_2()


  8. I've been looking for a way to do this in XP for a long time now without having to install software. So far I haven't found a way. It is possible to make a user accounts folders private, so no other users can see their files, but I don't think you can password protect a sub-folder of a users documents. Although I'm sure there is a way, it's not being obvious to me, if I find a way, I'll post it in here, if I remember XP.


  9. I agree with MiniK; py2exe is one of the easiest Python compilers out there. It's really simple but very powerful.Oh, and I like the way the coding was done. I'm intrigued by your use of Tkinter, did it really need a GUI. I suppose it does look pretty good like that, although it's not something I myself would have done, mainly because I'm not very good with Tkinter.

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.