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

Pages: 1 ... 43 44 [45] 46 47 ... 165
661
Other / Re: Commercial software
« on: March 14, 2011, 06:21:39 am »
This is hilarious.  I thought you were going to be serious at first, but then realized.  Very funny!

662
News / Re: Ultimatum
« on: March 13, 2011, 11:16:41 pm »
The thing is, how can we say something is wrong if there isn't something against it.
For those scholars of the American Constitution, I feel a "Necessary and Proper" clause is in order. ;)
LOL, maybe.  Although, fun fact.  The Declaration of Independence is 1337 words long.

663
News / Re: Ultimatum
« on: March 13, 2011, 11:10:19 pm »
In your case, I agree it was maybe a bit too much, however, the main problem is that lately we received several new members that joined the IRC chat only to troll/start fights. I don't think we should start being more lax on trolling when being strict on it was what made Omnimaga successful in the first place. A lot of ppl joined this site because of this.
I like the rules, and think that they aren't an issue.  Rules give order.  Granted not excessive rules, but this isn't really a democracy.  More of an oligarchy I suppose, but that's beside the point.

The thing is, how can we say something is wrong if there isn't something against it.

664
News / Re: Ultimatum
« on: March 13, 2011, 10:19:22 pm »
Yeah his e-mail showed his true colors. I will post the entire e-mail convo in public here soon, so people sees by themselves. In his replies he made it clear that he's not the kind of user that we want on Omnimaga. The problem, though, is that we seem to get more and more of these in the past 2 weeks, which worries me about the community future. (remember the 2008 lull due to these incidents?)
Yeah, hopefully when it gets into the contest and summer, it will be calmer.

665
News / Re: Ultimatum
« on: March 13, 2011, 10:15:45 pm »
Yeah but we already tried that, to no avail. People don,t bother to ident and stuff.
I would ident if I know my netbot45 password...

666
News / Re: Ultimatum
« on: March 13, 2011, 10:07:57 pm »
right, but I'm saying if someone didn't want to constantly voice, there should be a bot who handles voicing known users.

EDIT: Way to ninja.

667
News / Re: Ultimatum
« on: March 13, 2011, 09:35:03 pm »
I like the two channel idea.  My question is, how do you join a channel that has +m?  Would there be a bot to auto-voice people like me who have been here a while?

668
Site Feedback and Questions / Re: Omniurl.tk Rules
« on: March 13, 2011, 04:58:39 pm »
maybe, but omniurl.tk doesn't support that, does it?  It only works for <omniurl.tk>/thread/message, right?

That's wrong:

We have omniurl.tk/en for logs :)
So it would seem.  Well, I guess I'm for it.  bit.ly is still smaller, though.

669
Site Feedback and Questions / Re: Omniurl.tk Rules
« on: March 13, 2011, 04:57:36 pm »
maybe, but omniurl.tk doesn't support that, does it?  It only works for <omniurl.tk>/thread/message, right?

670
KnightOS / Re: KnightOS Filesystem Specification 2.x
« on: March 13, 2011, 04:18:30 pm »
Fine, and it's pretty much done.  I just want to get it implemented in KnightOS before releasing it.
MMK, that's actually even better.  I can't wait!  Well, I guess I could wait since I'll have to wait, but... You get the idea.

671
KnightOS / Re: KnightOS Filesystem Specification 2.x
« on: March 13, 2011, 04:12:31 pm »
Virtual pages do sound interesting. How's 2.2 going?

672
Humour and Jokes / Re: Funny #omnimaga quotes (NSFW)
« on: March 13, 2011, 03:54:50 pm »
definitely should add context....

673
I won't even tell you that.  I will tell you to look at the javadoc for JPanel, which is a subclass of Component, so look at that javadoc here.  I would also look at the addMouseListener method which takes a MouseListener object.  The javadoc of which can be found here

674
Change it to this and run it:
Code: [Select]
import java.awt.*;
import javax.swing.*;
import java.util.Random;
 
public class MainClass extends JFrame{
 
        private NPanel[][] panels = new NPanel[8][8];
 
        public MainClass(String s){
                super(s);
                setSize(8 * 64 + 8, 8 * 64 + 34);
                setDefaultCloseOperation(3);
                Random rand = new Random();
                GridLayout layout = new GridLayout(8, 8);
                getContentPane().setLayout(layout);
                for(int row = 0; row < 8; row++)
                        for(int col = 0; col < 8; col++){
                                panels[row][col] = new NPanel(
                        new Color(rand.nextInt(256), rand.nextInt(256), rand.nextInt(256)));
                        getContentPane().add(panels[row][col]);
                        }
                this.setVisible(true);
        }
        public static void main(String[] args){
                new MainClass("Test");
        }
}
class NPanel extends JPanel{
        public NPanel(Color c){
                setBackground(c);
        }
        public void paintComponent(Graphics g){
                super.paintComponent(g);
        }
}

675
It just draws a grid on a single JPanel.

Yes, what I need to do is much harder, I have to draw 64 panels :S
In which case, I could give you code, but because of the JPanel having a border, it won't be 640x640.  What exactly are you trying to do?

Pages: 1 ... 43 44 [45] 46 47 ... 165