search for: notamusica

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

2003 Jul 29
2
cbind/rbind inconsistency with NULL parameter (PR#3585)
R-Version: 1.7.1 (2003-06-16) OS: Debian/GNU Linux cbind and rbind handle NULL parameters inconsistently. Consider: > cbind() NULL > cbind(NULL) NULL And: > cbind(diag(x = 1, 1, 1)) [,1] [1,] 1 > cbind(NULL, diag(x = 1, 1, 1)) [,1] [1,] 1 These seem to indicate that NULL parameters will be ignored in any call to cbind and rbind. However: >
2003 Jul 30
0
cbind/rbind inconsistency with NULL parameter (PR#3595)
...Plate At Tuesday 04:31 PM 7/29/2003 +0100, Prof Brian Ripley wrote: >That's as documented, on the help page. (NULL is a zero-length argument.) >There's even a reason given. > >Exactly which part of the help page did you not understand? > >On Tue, 29 Jul 2003 jmartin2003@notamusica.com wrote: > > > R-Version: 1.7.1 (2003-06-16) > > OS: Debian/GNU Linux > > > > cbind and rbind handle NULL parameters inconsistently. > > > > Consider: > > > cbind() > > NULL > > > cbind(NULL) > > NULL > > > &gt...
2009 Aug 18
3
Rules based on ipmasq
...d-with-ntlm-auth-on-debian-etch. Next to last point is firewall configuration by ipmasq but I have installed shorewall. This is content of I89tproxy.rul file: #!/bin/sh # # redirect http requests to non-local hosts to the transparent proxy # GPL 2.0 or later (C) 2004 Johannes Martin <jmartin@notamusica.com> # 1. do not redirect http requests to localhost case $MASQMETHOD in ipfwadm) $IPFWADM -I -a accept -P tcp -D localhost 80 ;; ipchains) $IPCHAINS -A input -p tcp -d localhost 80 -j ACCEPT ;; netfilter) $IPTABLES -A INPUT -p tcp -d localhost --dport 80 -j ACCEPT ;; es...