| slapaho | a conditional... what are the technical terms for the parts of it liek clause, condition, etc you know, if then statements |
| manveru | ? |
| snockered | hey there! |
| pstickne | uhm, uhh, when-to-do-it and what-to-do? ;) |
| slapaho | this channel used to be helpful. |
| manveru | lol sorry, but terms and conditions are not my way of thinking... if/elsif/else each tests for being not nil and not false (else doesn't test, it runs when nothing else matches) the first one to match wins why would someone need to know the technical terms to use it? |
| slapaho | who cares why |
| manveru | who cares |
| mksm | who |
| manveru | heh, kazekahase is cool |
| tiglionabbit | hi so um, I'm using yoshi's ruby-opengl, and I'm giving glut an idle function.. and well, it seems to run my animation for a while until suddenly there's a big long pause of inactivity where it's eating up my cpu after a while it recovers Why would that happen? how can I debug something like that? |
| motion | mmm anyone here happen to use svn over https:// with groups |
| blink | hrm, you can make a public method private, right? |
| flori | with "private :methodname" |
| manveru | drbrain: around? |
| blink | in reference to inherited methods, in particular .new inherited from Class. |
| manveru | uhm ::new is public... |
| flori | private_class_method :new |
| manveru | class A; class << self; private :new; end; end aye, faster :) |
| blink | flori: is this rails? |
| manveru | A.new NoMethodError: private method `new' called for A:Class |
| flori | no, ruby |
| blink | manveru: yeah, i wwas just wondering if annyone knew if ruby would freak ouut at that. |
| flori | it's short for: class A ; class << self; private :new; end; end |
| blink | holy crap, i've never seen that methtod before. |
| manveru | blink: why should it? |