search for: flx

Displaying 6 results from an estimated 6 matches for "flx".

Did you mean: fix
2011 Nov 29
2
Extracting from zip, removing certain file extensions
Hi there, I'm running R on windows 7 with Rstudio. Everyday I receive a zip file where a bunch of half-hourly files are zipped together. I then use xx=unzip(ind) to get xx, which consists of : [1] "./2011/A20112961503.flx" "./2011/A20112961503.log" "./2011/A20113211730.slt" "./2011/A20113211800.slt" "./2011/A20113211830.slt" "./2011/A20113211900.slt" [7] "./2011/A20113211930.slt" "./2011/A20113212000.slt" "./2011/A20113212030.slt"...
2007 Feb 12
1
probably running puppet on red hat for the first time
...Guide says that you should use the vendor''s Ruby, but Red Hat''s current version of Ruby is 1.8.1-07 - is this new enough? I assumed that it would be and proceeded... When I try and start up puppetmasterd either with --mkusers or -- nonodes I get the following error: [root@flx-web-dev 1.8]# /usr/sbin/puppetmasterd --nonodes /usr/lib/site_ruby/1.8/puppet/config.rb:42:in `[]='': Unknown configuration parameter :lockdir (Puppet::Error) from /usr/lib/site_ruby/1.8/puppet/config.rb:39:in `synchronize'' from /usr/lib/site_ruby/1.8/puppet/c...
2003 Sep 22
2
Problems when outgoing source port is altered by router
...t of your requests, the udp connection to the tinc server will fail, again with the message "..unknown source.." in the target server log. changing to indirectdata / tcponly is not an option for us, because voice over ip traffic without udp is a nightmare :( any thoughts? thanks! ;) flx -- +++ GMX - die erste Adresse f?r Mail, Message, More! +++ Getestet von Stiftung Warentest: GMX FreeMail (GUT), GMX ProMail (GUT) (Heft 9/03 - 23 e-mail-Tarife: 6 gut, 12 befriedigend, 5 ausreichend) Jetzt selbst kostenlos testen: http://www.gmx.net Tinc: Discussion list about the tin...
2007 Mar 23
3
Semi-OT: Use T.38 ATAs to Extend fax lines
Greetings. I have a scenario I would like some advice on. I have a 100,000 square foot building that we will be moving some work crews into. It has offices on each end of the building and a fiber line between them. I currently have an asterisk 1.2 system in place and about 30 phones. My problem is they want a few fax machines out in the warehouse area where I currently have no wiring for
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...{uf*+8Ci?l|>@Cu}q?pJ8#F%vp#rdj!1g-2=I0)VCo%bQy>v-L#D-HX{V}q z5 at fsYsPOx_Tb0l@nFJIc)fMra+#qfxAT{St#77i90Zdpjq~t_yJj3TDF-IBG`!PR0 zm;7V9f&nNm3<UDE5--dz7Jf0x@&WR4Jj_7^WI at 7D`25QN96W1WqpgO`Zqk<3V<C*m z<9?yPO8{bs0tqr<RVDhZ2P_*|KE28=r%m1^({q{vEB)InV=^31T@=xoAEEc|X3DI3 zDpMflXu$L`i;$@9PaNLMwD>FG`$x=pn+!j~)pa?gIvR#nlh$8Oj#shQ#5mxt2Bm6! zv5EUwbCnFSn4$$}&A4;x0(647C}&hEAFXk5HNb3gvR1P{P4Qz|b_ErclO+I9P8f*% zdN^ULOhrYbuwr6y=Q;dN*Ka^5l6jNwg$pQ3KUehaZ=Q?pwn$9rE>lDkK*a*+_4RP~ zp|bY-gxo&2GXt4bj{}H60ZRdGOPYOfvv(=xJXbR6uQ<6pE}uPoizGvvvH-|39;l`r zfX?G~ILDhb8l_$vT...
2013 Apr 29
3
all.vars for nested expressions
Dear R fellows, Assume I define a <- expression(fn+tp) sen <- expression(tp/a) Now I'd like to know, which variables are necessary for calculating sen all.vars(sen) This results in a vector c(tp,a). But I'd like all.vars to evaluate the sen-object down to the ground level, which would result in a vector c(tp,fn) (because a was defined as fn+tp). In other words, I'd like