5 Unanswered Topics
Remove Filter Hi, I was recently toying around the ECJ toolkit, creating some function trees with GP. Now, if I'd like to derive a function that will predict a 5th number when given previous 4, I'd use an MSE (mean squared error) fitness function. Tried it and it works pretty well on … | |
Hello, got a WPF problem: I made a window with 3 textboxes (2x data inputs and 1x result), a combobox for operation choosing (+ - * /) and a button for calculating, like this: [CODE] a = double.Parse(textBox1.Text); b = double.Parse(textBox2.Text); switch (comboBox1.SelectedIndex) { case 0: textBox3.Text = (a + … | |
Hey, I've just got a Dell Vostro 1320, and I'd like to run winXP on it. The problem is, XP v32-bit won't install, it prompts a blue screen right after booting up from the CD (tried different CD's, different versions). On the other hand, XP v64-bit, which I installed succesfully, … | |
Hey, got a problem with connecting to some ldap's. [CODE]Hashtable data = new Hashtable(); data.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory"); data.put(Context.PROVIDER_URL, "ldap://" + host + ":" + port + "/"); data.put(Context.SECURITY_AUTHENTICATION, "simple"); data.put(Context.SECURITY_PRINCIPAL, "cn=" + username); dane.put(Context.SECURITY_CREDENTIALS, password); DirContext ctx = new InitialDirContext(data);[/CODE] I can connect to SUN's ldap using this, but there are … | |
Hey, I wanted to write a script that would act as a shell, meaning: would display prompt, read from keyboard and run system commands. My guess would be to use fork() and exec() and strtok(), so I wrote this: [CODE] #all includes <bla.h> main(int argc, char *argv){ int proces; char … |
The End.