Jump to content

kaizen_0

Active Members
  • Posts

    40
  • Joined

  • Last visited

Everything posted by kaizen_0

  1. try javabat.com it has good simple problems to work at, and then get harder as you go. its a good place to start learning it. also you can use the API and Sun's wesite to learn more, like said already from Sparda's post.
  2. well at least your are trying to get it going again, i might do it, cause im bored as hell, and it sounds like fun. maybe... if i remember and have time... XD
  3. hmm, we need a new challenge.
  4. i think a new thread would be good too, i think i suggested that a long time ago. the game sounds, ok, but needs more detail, and the idea of making extra challenges like certain about of lines, or a limit of size and stuff would be fun.
  5. i wish people would start doing this again, it would be fun.
  6. hmm, things tend to move very slowly on these challenges, especially more lately. hmm i have a quick thought. maybe we should request a subforum here so that we can post different challenges, and keep them organized and so we can have more then one challenge going on at one time, and people can choose what they thing is cool. this would also keep things more organized and allow a greater variety of things to do for people of all levels of experience. a greater variety might help keep things going, allowing people to do more then one challenge at once. idk, just a thought, seemed good at the time.
  7. i have to disagree with u there, u use the css programming language to design web pages, just as u use say java to design software. ur still having to write the script that the computer reads to do a set of instruction. so it is programming.
  8. well looks like after a year, this challenge dies, hmmm, unless someone can come up with a good challenge, and keep it simple, i think it died cause no one has time to do the hard challenges. i know i dont. to much other stuff to do.
  9. looks to me like no one did the challenge and that the whole thing just died.
  10. well i did get a new tv, a sony bravia 40" lcd. its awesome. and we got it cheap to, on sale for $899 usually $1099 and it wasnt a black friday sale.
  11. thats about the same thing i said to my mom. im am trying to get her to get a new tv tomorrow during the sales. and i just wanted to get some feed back to show her that LCD is better. thx guys.
  12. i am thinking of buying a new tv. i have gotten different opinions on the different types. just wondering what u guys would recommend. LCD or Plasma.
  13. cool i won, thx. uhh well i dont want to come up with a challenge cause its more fun to do them then come up with them, so someone else make a new challenge, plz.
  14. Ok, well this is my text game. What you have to do is choose a path, if you are correct then you go to the next path, once you get to the end (if you can get to the end) you win. Enjoy. Link to jar file: [link] // // KazesTextGame.java // KazesTextGame // // Created by Kaz on 10/29/08. // Copyright (c) 2008 __k4z0.com__. All rights reserved. // import java.util.*; public class KazesTextGame { public static void main(String[] args){ // Vars int guess; int paths = 0; Random gen = new Random(); String go; String option; System.out.println("******************************\n" + "* Welcome to Kazes pathways. *\n" + "******************************\n"); // Play input System.out.println("Do you want to play? Y or N"); Scanner inGo = new Scanner(System.in); go = inGo.next(); // Yes to play if(go.equalsIgnoreCase("Y")){ System.out.println("******************************\n" + "Ok, so first to get you started. \n" + "Well, here you will have to choose carefully. \n" + "If you choose wrong, well it wont be pretty. \n" + "There are two paths infront of you, \n" + "you much choose wisely, \n" + "one will lead on and continue to the end, \n" + "and the other to doom."); while(paths < 4){ // left or right input System.out.println("******************************\n" + "Choose your path. Left (L) or Right (R)"); Scanner leftRight = new Scanner(System.in); option = leftRight.next(); // chooses right if(option.equalsIgnoreCase("R")){ guess = gen.nextInt(2); if(guess == 0){ System.out.println("******************************\n" + "Correct, continue forward"); paths++; } else if(guess == 1){ System.out.println("******************************\n" + "Worng, you fail"); break; } // chooses left } else if(option.equalsIgnoreCase("L")){ guess = gen.nextInt(2); if(guess == 0){ System.out.println("******************************\n" + "Correct, continue forward"); paths++; } else if(guess == 1){ System.out.println("******************************\n" + "Worng, you fail"); break; } } } while(paths == 4){ System.out.println("******************************\n" + "Congratulations, you won!"); break; } // No to play } else if(go.equalsIgnoreCase("N")){ System.out.println("******************************\n" + "Ok, well bye. I understand so just leave it you realy want to."); } System.out.println("******************************\n" + "Thanks for playing"); } }
  15. so im guessing no one is doing that one, well anyways we need a new challenge i guess someone else should make a new challenge, keep it interesting and simple, so more people can manage it. and remember make it interesting. im not coming up with one cause i can think of one and i want to be able to do the challenge, and me not come up with the challenge. ok well if anyone has any good ideas i really would like it, and i think others would to, if i could get a small challenge to help me practice more.
  16. well im taking a class at my school right now (AP Computer Science) and we are learning java. well there is a website http://javabat.com/ where u can practice coding simple codes. just wanted to tell u guys incase someone is learning and need some extra practice. Also im not the best but im still getting better, and can try and help anyone who is learning java. just pm me and ill get back to u.
  17. just wanted to say cause i just saw that this is still here, that i found one better, its called Dr.Java. its works and is simple, not setup needed at all, just download, open the program (u dont even need to install it so u can put it on a flash drive and take it with u) and program.
  18. so im guessing no one won, since its been way more then 3 days and no one has posted a single thing. why not make a new challenge someone. try to make a easy challenge so more people can try it.
  19. well here is my dA logo contest entry just wanted to show some people. http://kaizen0.deviantart.com/art/dA-Logo-...-sub-1-99736165 hope u guys like it.
  20. wow, i havent been on in a while, but seriously we need a new challenge, and i dont think anyone wants to do that challenge i made in feb, so someone think of a good one, but make it more simple so more people can do it.
  21. no as in a webcam effects program like camtwist. http://www.allocinit.com/index.php?title=CamTwist
  22. well as the topic suggests this is about webcam software and the forum suggests i have a question and that is does anyone know and good "free" webcam programs for windows, i dont usually use windows and i use camtwist on my mac but im having to use windows right now and am to lazy to look for some software. if anyone has some please tell me, and if u say manycams i will shoot u, ok thx.
  23. thanx but netbean works good on it so it will do for now.
  24. thx, i wouldnt consider notepad cause it doesnt compile, but i did find netbeans just now with JDK, im having to install all this stuff for a class on this laptop i almost never use, its a pain. they want us to use dr.java but it sux.
  25. Does anyone know of any good free java compile/editor programs for windows, im just to lazy right now to search for some cause im too busy. damn i hate windows, there needs to be one like xcode for windows and maybe id use it more often, im just to used to my mac i guess. thx.
×
×
  • Create New...