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 - cooliojazz

Pages: 1 [2] 3 4 ... 41
16
Music Showcase / Re: "Time at Last" + "Mhmm, and?"
« on: February 11, 2013, 10:55:08 am »
You really think it's that slow? I barely even notice a difference =P
Thanks though! :D

17
Other Calculators / Re: Calculator tunning !
« on: February 10, 2013, 05:37:02 pm »
Hate to derail this thread, but I have no idea how tuning is being taken to mean skinning or such. Anyone care to explain?

18
Music Showcase / "Time at Last" + "Mhmm, and?"
« on: February 10, 2013, 04:43:23 pm »
Just a couple new songs i've been working on, both unfinished, in a bit more of a chill style.

Time at Last - https://soundcloud.com/cooliojazz/time-at-last
Mhmm, and? - https://soundcloud.com/cooliojazz/mhmm-and

19
Minecraft Discussion / Re: Lua minecraft IRC server. (computercraft mod)
« on: January 25, 2013, 11:22:20 am »
look under %appdata%/.minecraft/saves/*WORLD*/computer/*COMP #*/ all the files on the computer are stored there

20
Computer Programming / Re: i need help
« on: January 23, 2013, 04:53:49 pm »
Packages are literally folders, accessed with a dot instead of a slash. You need to import them to get any code files stored inside those folders, and certain parts of the access permissions are defined by things being in similar or dissimilar packages.

Fields typically refers to everything defined inside of a class, for example any class variables.

21
Computer Programming / Re: Ah! Help!
« on: January 18, 2013, 06:33:38 pm »
Are you looking for someone to debug it for you?  Finish it?  Are you just posting it to show off the final code?  What are you looking for here? :P

22
Computer Programming / Re: Ah! Help!
« on: January 17, 2013, 08:33:42 pm »
how about just run a String.replaceAll(",\\.\\?\"!:;", "") (Plus any other punctuation you want to get rid of) on the string before you parse it?
Edit:  Note that that is a regex pattern, hence having to escape the . and ?

23
Computer Programming / Re: passing a type?
« on: January 15, 2013, 10:51:36 pm »
I can't tell you about practice, cause ive never taken a programming class in my life, and just randomly pick up things from places, but it is probably possible, at least depending on what you mean by "type".  Assuming you mean class, you could always just do:
Code: [Select]
static public void main(String[] s) {
  printType(String.class);
  printType("Hello".getClass());
  printType(Integer.class);
}

static public void printType(Class c) {
  System.out.println(c.getName());
  if (c.equals(String.class)) {
    System.out.println("Strings are cool!");
  }
}


//Prints:
java.lang.String
Strings are cool!
java.lang.String
Strings are cool!
java.lang.Integer

If you mean something else... then i'm not entirely sure what you mean :P

24
Music Showcase / Re: Juju's Music Tabs
« on: January 14, 2013, 04:22:22 am »
Too easy!  Obviously Magic Hardcore =P Now just transcribe the rest of the song... haha  Great song though.
EDIT: I disagree with your tempo though, it should be about 172bpm actually

25
Computer Projects and Ideas / Re: My irc bot
« on: January 03, 2013, 03:14:01 pm »
CAUSE YOU SPELLED NUMBAR WRONG! haha
* cooliojazz uses this correctly and steals sorunome's hand and smacks him around with it

Anyways, back to talking about the bot...

26
Computer Projects and Ideas / Re: My irc bot
« on: January 03, 2013, 03:09:58 pm »
Gotta spell it right sorunome! /me runs

27
Minecraft Discussion / Re: Lua minecraft IRC server. (computercraft mod)
« on: January 01, 2013, 05:52:24 pm »
Are you actually trying to make it implement real IRC protocol? Have you read through an IRC RFC eg. http://tools.ietf.org/html/rfc2812 ?

28
OmnomIRC Development / Omnom Bug?
« on: December 27, 2012, 11:57:31 am »
Ever since this morning, all OmnomIRC does is spam "[Invalid Date]   *   " with a blank message.  Is this a new bug, or is my browser somehow freaking out?

29
Minecraft Discussion / Re: CitiesMod
« on: December 26, 2012, 03:31:39 pm »
That would be the better option, but because of how much harder that would be to implement in a client (would have to add additional generation options and whatnot to specify whether a world should be generated like that or not, and im not entirely sure if that's within the scope of things like mcp, so i would probably have to do a direct client mod, which i have absolutely no idea how to do) for right now, the best option is just a server plugin.  If you want to use it locally, it's really not that hard to run a local craftbukkit =P  What do you mean it should be universal though?

30
Minecraft Discussion / Re: CitiesMod
« on: December 25, 2012, 07:32:13 pm »
Quick update:  Fixed a major part of buildings glitching into each other, so that should happen less often, and completely fixed buildings glitching into the streets.  Also made some buildings be a light grey instead, and made it spawn a lot more chunks in the test single player world.  Also installed optifine so i could make prettier looking screenshots with anti-aliasing and whatnot =P  Download of the files is still in the first post, updated to the new versions.




Edit: Thanks AOC, maybe this will make you want to now =P

Pages: 1 [2] 3 4 ... 41