search for: dubuisson

Displaying 8 results from an estimated 8 matches for "dubuisson".

Did you mean: buisson
2003 Dec 04
2
Compact SSH?
...ion. This implementation would have to be small enough to run on microprocessors. e.g. systems with <512KB memory and ~20Mhz 8bit processors - like a Rabbit or a PIC. I have looked around but have not found anything suitable. Does anyone have a recommendataion? Thanks in advance. Thomas DuBuisson
2006 May 23
3
ez-where headscratch
Hi there, I''m puzzled by this apparently simple query I can''t manage to reassemble using ez_where plugin. cond = Caboose::EZ::Condition.new :my_table do start_on < Time.now any {end_on > Time.now; end_on.nil?} end I keep getting the following result : >> cond.to_sql => ["my_table.start_on < ? AND (my_table.end_on > ?)", Tue May 23
2003 Jan 10
1
Cipher Text per Packet
...ing or is it with the current architecture one is unable to get at an entire packets worth of cipher text from the incoming stream? Any help would be greatly appriciated. I hope I don't get too many RTFM's... but if I do, then could someone please reference me to a good manual :-) Thomas DuBuisson
2003 Jan 24
0
Question on Architecture
..._read_seqnr and packet_write_poll. Is there a section in the code specifically made to handle the sending of the password that I am not accounting for? Can anyone think of another area data is send or recieved that I will need to had my cipher scheme to? Thanks to all help in advance. Thomas M. DuBuisson Assistant Researcher Center for Secure and Dependable Systems
2009 Jun 01
2
GUK (enhanced MiniOS) released
I am pleased to announce the release of GUK (Project Guest VM Microkernel), which is an enhanced version of Mini-OS that underpins the Guest VM virtual machine. Guest VM is an implementation of the Java platform, written almost completely in Java, running directly on Xen. Although GUK was developed specifically for Guest VM, it can be used stand-alone in a similar way to Mini-OS. The main
2009 Jun 01
2
GUK (enhanced MiniOS) released
I am pleased to announce the release of GUK (Project Guest VM Microkernel), which is an enhanced version of Mini-OS that underpins the Guest VM virtual machine. Guest VM is an implementation of the Java platform, written almost completely in Java, running directly on Xen. Although GUK was developed specifically for Guest VM, it can be used stand-alone in a similar way to Mini-OS. The main
2006 Apr 01
3
acts_as_list with scope : position update problem?
Hello, I''ve tried to set up a class with acts_as_list with a scope argument that restricts a list to records with the same foreign key. For example : database : CREATE TABLE `families` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL default '''', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; INSERT INTO
2007 Jul 02
0
Problem with the function plot and multipage
Hello, I want to print graphs after running a gam function (gam needs the package mgcv) I want to print the results of the function in a .jpg or in a .png. I would like to print it in many files (because in one file the graphs is too small and can't be read) For the moment, I run this script : mymodel<-gam(species~var...) jpeg(file="my_file.jpeg") plot(mymodel,pages=2) dev.off()