search for: rasmus

Displaying 20 results from an estimated 73 matches for "rasmus".

Did you mean: erasmus
2001 Mar 27
2
How do I change the editor in R command window?
...nd delete gives "^H". I have a Norwegian keyboard, but that doesn't cause any problems for editors like emacs. Could you advice me on how I can set the editor for R right? I have tried option(editor="emacs") and setenv R_EDITOR=emacs, but without any effect. Yours sincerely Rasmus Benestad -- ______________________________________________________________________________ Rasmus E. Benestad, D.Phil, GradInstP, The Norwegian Meteorological Institute rasmus.benestad at dnmi.no http://home.enitel.no/benestad/rasmus.html phone: (+47) 22 96 31 70 mobile: (+47) 99 45...
2002 Aug 13
1
RES: Simple and Stupid Share...
for your information, it didn't work... it needs a password... but i don't want to send any password... any ideasd? -----Mensagem original----- De: Rasmus Reinholdt Nielsen [mailto:rasmus@narani.dk] Enviada em: segunda-feira, 12 de agosto de 2002 17:34 Para: Demerson Zounar; samba@lists.samba.org Assunto: Re: [Samba] Simple and Stupid Share... # Global parameters [global] workgroup = workgroup netbios name = Server securi...
2013 Feb 28
3
Hidden information in an object
...this? If I write the code like library(MASS)cats$ratio <- cats$Hwt/cats$Bwtmale <- cats$ratio[cats$Sex == "M"]... it also works, which I suppose is because there is a correspondence between the "Sex" variable and the "ratio" variable in the cats dataset. Regards,Rasmus Hedegaard. [[alternative HTML version deleted]]
2006 Mar 02
7
The no-framework PHP MVC framework
"The no-framework PHP MVC framework" http://toys.lerdorf.com/index.php?url=archives/38-The-no-framework-PHP-MVC-framework.html Yuck! What spaghetti code. I can''t ever imagine preferring that to Rails. Joe -- Posted via http://www.ruby-forum.com/.
2002 Aug 13
0
Samba/Linux - Password synchronization problem - solved!!!
ok! i did everything as John said and it works! " %o " is not necessary. so there must be a mistake in the book "using samba". thanks for helping slawek ----- Original Message ----- From: "John Benedetto" <jbenedet@unm.edu> To: "Rasmus Reinholdt Nielsen" <rasmus@narani.dk>; "Slawek W" <to-slawek@wp.pl>; <samba@lists.samba.org> Sent: Tuesday, August 13, 2002 4:24 PM Subject: Re: [SAMBA] Samba/Linux - Password synchronization problem -On Tuesday, August 13, 2002 10:06 AM +0200 Rasmus Reinholdt N...
2002 Aug 12
4
Simple and Stupid Share...
Hullo, All... I have HPUX 10.20 with SaMBa 2.2.3a installed... All I want to do is make a single share with read only access for everybody, no matter the user people are using, in other words, they don't need to have the user on the server side. I tried to setup, with no success. Anybody knows something? Thanks...
2002 May 03
1
On creating an R package..
Dear R-help, I'm trying to create a simple R package that contains 3 string functions, but I have run into some problems: what are the correct permission for the files in the package directory? Yours faitfully, Rasmus * checking for file `stringfun/DESCRIPTION' ... OK * checking package directory ... OK * checking for sufficient/correct file permissions ... WARNING * Found the following text files with incorrect permissions: * ./lower.case.R * ./upper.case.R * ./strip.R * ./man/stringfun....
2002 Aug 13
0
AW: Simple and Stupid Share...
...your clients, and you had better restrict them with hosts allow! I don't know if this one works for win 98, too. Regards, Torsten > -----Urspr?ngliche Nachricht----- > Von: Info - Demerson [mailto:demerson@zaffari.com.br] > Gesendet am: Dienstag, 13. August 2002 15:32 > An: 'Rasmus Reinholdt Nielsen'; Info - Demerson; samba@lists.samba.org > Betreff: RES: [Samba] Simple and Stupid Share... > > for your information, it didn't work... it needs a > password... but i don't > want to send any password... any ideasd? > > -----Mensagem original---...
2013 Feb 15
2
Making the plot window wider and using the predict function
...Data <- data.frame(Bwt = 3.5) predict(linreg0,newData,interval="p") This doesn't work - my guess is that to R, "Bwt" is not a variable in maleData, but maleData$Bwt is. I could use an attach command, but is it possible to get this to work without doing so? Kind regards, Rasmus Hedegaard. [[alternative HTML version deleted]]
2002 Apr 17
0
using the netCDF.zip package in Windows (XP).
...here are problems when I try to read a netCDF file: Error in .C("open_netcdf", filename, id=as.integer(verbose)): C/Fortran function name not in load table Do I need to install a netCDF library for Windows and if so, do you know where the library ought to be located? Yours sinvcerely Rasmus -- ______________________________________________________________________________ Rasmus E. Benestad, D.Phil, AMINSTP, The Norwegian Meteorological Institute rasmus.benestad at met.no phone: (+47) 22 96 33 77 mobile: (+47) 99 45 04 16 fax: (+47) 22 96 30 50 ___________________...
2006 Feb 02
2
limit number of connections per ip
Hello! I''ve read a lot of mail archives, but can''t find solutions for my problem. I have router with about 700 users. I''m using HTB with SFQ leaf qdiscs for every user (client ip). So, different IP can have its own rate limit. This scheme ir working fine for a long time. But how can I limit number of connections (sessions) from one host? I see from ip_conntrack
2007 Mar 29
2
EXT3 fs error on RAID1 device
...mdamd complains that super-minor should only be declared once and then there's a message that File descriptor 21 is open. On shutdown there are messages that md0 and md1 are in immediate safe mode and that md1 is till in use. Is my system totally hosed or can I ignore these warnings? Thanks, Rasmus
2000 Dec 22
2
REading the netCDF format into R
...the local directory? There were some clashes between definitions in R.h and Rinternals.h, so I did not include R.h. Also, is ther any way of returning more than one object from the C-call (ie. the data field, longitude vector, latitude vector, time vector, and the missing value) Yours sincerely Rasmus Benestad ----------------------------------------------------------------------- The main part of the code looks like: SEXP nc2r(char **fname, char **vname){ int ncread(); int status,i,j,k,nx,ny,nt; long int ptrs[5]; /* array of pointers holding locations */...
2016 Jul 08
1
[PATCH v2 1/7] lib: string: add functions to case-convert strings
...if (!len) return; for (i = 0; i < len && src[i]; ++i) dst[i] = toupper(src[i]); dst[i < len ? i : i-1] = '\0'; (I think you must do i < len before testing src[i], since the len parameter should be an upper bound on the number of bytes to access in both src and dst). Rasmus
2002 Oct 03
1
File corruption with write cache enabled - patch included
...uld also be added at some time. The patch is against version 2.2.5. Perhaps you should warn users of current versions against using write caching. I believe that this bug is the same as bug no. 24502 submitted by Henrik Qwinto <qwinto@tut.by>. Best regards, and thank you for making Samba, Rasmus -- Rasmus Borup Hansen, system adm. Email: rbh@math.ku.dk Institute for Mathematical Sciences Phone: +45 353 20759 Universitetsparken 5 Cell phone: +45 20829308 DK-2100 ?, Denmark Office: E208 --- samba-2.2.5/source/smbd/fileio.c.orig Thu Oct 3 10:41:36 2...
2016 Jul 01
1
[PATCH 1/6] lib: string: add function strtolower()
...it. Quick grepping didn't find any use for the copy-while-lowercasing, but copy-while-uppercasing can at least be used in drivers/acpi/acpica/nsrepair2.c, drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk104.c, drivers/power/power_supply_sysfs.c along with a bunch of inplace uppercasing. Rasmus
2023 Mar 16
3
Trying to learn how to write an "advanced" function
...1:10 x <- y+rnorm(10) z <- c(rep(1,5),rep(2,5)) # Show what x, y and z look like rbind(x,y,z) # run formula y~x JD <- doit(y~x) JD # run formula y~x+z JD2 <- doit(y~x+z) JD2 ________________________________________ From: R-help <r-help-bounces at r-project.org> on behalf of Rasmus Liland <jral at posteo.no> Sent: Thursday, March 16, 2023 8:42 AM To: r-help Subject: Re: [R] Trying to learn how to write an "advanced" function On 2023-03-16 12:11 +0000, Sorkin, John wrote: > (1) can someone point me to an > explanation of match.call or match > that can...
2009 Sep 03
1
Sweavelistingutil: Encoding problems
...},% | keywordstyle={\bf\color{black}},% | commentstyle={\color{Rcommentcolor}\ttfamily\itshape},% | literate={<-}{<-}2{<<-}{<<-}2} `---- I use TexLive 2008, R 2.9.1 and I have updated all packages. I use Arch Linux, 32 bit. Thanks, Rasmus
2007 Apr 17
1
VS: Potential bug in winbindd
...t;), and some groups that contain other groups (that are empty), only contain the users added plainly. The server is connecting to an AD in ADS mode, Samba version is Version 3.0.23c-2.el5.2, as part of CentOS 5 (RHEL5). Attached is an winbindd log at level 4 and the smb.conf file used. Regards, Rasmus Larsen E&R
2008 Apr 28
2
The name/id of the select tag generated by rails
...ot; and a "method". For example: <%= collection_select ''test'', ''boing'', @users, ''id'', ''name'' %> Outputs: <select id="test_boing" name="test[boing]"> <option value="1">Rasmus</option> <option value="2">Dennis</option> </select> This just doesn''t make any sense to. How come I can''t set the name of the select tag to for example ''user_id'' so that the path when search will be ''/tasks?user_id=1...