search for: e8fc

Displaying 3 results from an estimated 3 matches for "e8fc".

Did you mean: e8ac
2009 Dec 02
0
[Fwd: Re: Adding and Multiplying two Unevaluated Expressions]
...hricht -------- Betreff: Re: [R] Adding and Multiplying two Unevaluated Expressions Datum: Tue, 01 Dec 2009 23:49:39 +0100 Von: Benjamin M?ller <ben_mueller.bm at web.de> An: Rolf Turner <r.turner at auckland.ac.nz> Referenzen: <20091201144125.316310 at gmx.net> <8E40E49F-E8FC-4FBD-8CC5-93789FFB0E53 at auckland.ac.nz> This works fine for your example, but doesn't work as simple if there's more than these expressions. In my example this would be in line 11: newexp=as.expression(substitute(a+con1/con2*b^con3,list(a=newexp[[1]],b=expression(dx)[[1]],con1=ev...
2003 Apr 13
2
Problem in getting tftp transfer to succeed
...&.G2.j..7 0x01d0 19be 00a4 e834 1926 8b47 36e8 4d19 e827 .....4.&.G6.M..' 0x01e0 1966 31f6 2666 8b47 2a26 663b 4732 770b .f1.&f.G*&f;G2w. 0x01f0 2666 8b47 3226 8b77 36eb 0426 8b77 2e66 &f.G2&.w6..&.w.f 0x0200 01f0 66c1 e80a a3b8 5bbe 1ba3 e8fc 18a1 ..f.....[....... 0x0210 268f e816 19b0 3ae8 8910 a124 8fe8 0b19 &.....:....$.... 10:18:12.190664 192.168.1.10.2070 > 192.168.1.1.49189: udp 17 0x0000 4500 002d 0003 0000 1411 2362 c0a8 010a E..-......#b.... 0x0010 c0a8 0101 0816 c025 0019 b0ff 0005 0000...
2013 Oct 25
6
Migrate postgresql database to uuid
Hi all, I am using rails 3.1 and ruby 1.9.3,Now i want to use uuid concept in rails 3 for existing data so i did like :- create_table :posts, :id => false do |t| t.string :uuid, :limit => 36, :primary => true end ActiveRecord::Base.class_eval do # old rails versions set_primary_key ''uuid'' before_create :generate_uuid def generate_uuid self.id =