similar to: Message subject rule to stick message to existing topic (some off-top) !

Displaying 20 results from an estimated 7000 matches similar to: "Message subject rule to stick message to existing topic (some off-top) !"

2015 Jan 12
2
Message subject rule to stick message to existing topic (some off-top) !
Many messages posted, are posted for anybody (to samba at lists.samba.org) which don' t send to me personally. As following I can not hit "Reply" . How can I put my post to correct topic ? I use web Gmail interface to send messages. By the way your message for this topic I didn' t receive at my e-mail.
2015 Jan 12
0
Message subject rule to stick message to existing topic (some off-top) !
Am 12.01.2015 um 12:44 schrieb CpServiceSPb .: > Many messages posted, are posted for anybody (to samba at lists.samba.org) > which don' t send to me personally. > As following I can not hit "Reply" hence a sane mail-client has a reply-list option which reads correctly the mail-headers and act properly > How can I put my post to correct topic ? > I use web Gmail
2015 Jan 12
1
Samba4 and 0.0.0.0:137 and 0.0.0.0:138 opened, why ? How do close it ?
Rowland, as I you mentioned firstly, I have 3 faces: lo, lan, wan. And you are right, 0.0.0.0 are all IPs. I need only either listen to lo and lan or lan only, but not wan also. But in my case and because of 0.0.0.0 are all faces, listening 0.0.0.0 doesn' t equal lo and lan (127.0.0.1 and 192.168.0.254) . Yes, there is no 95.95.95.14 in netstat list, but 0.0.0.0 should cover and 95.95.95.14
2015 Jan 12
2
What are principal diffiriencies between 4.1 and upcoming 4.2 versions ?
What are principal diffiriencies between 4.1 and upcoming 4.2 versions ? Is there any info, supposing and so on ?
2008 Feb 26
2
Kalman Filter
Hi My name is Vladimir Samaj. I am a student of Univerzity of Zilina. I am trying to implement Kalman Filter into my school work. I have some problems with understanding of R version of Kalman Filter in package stats( functions KalmanLike, KalmanRun, KalmanSmooth,KalmanForecast). 1) Can you tell me how are you seting the initial values of state vector in Kalman Filter? Are you using some method?
2018 Jan 04
2
format integer numbers with leading 0
Dear R-er, I would like format integer number as characters with leading 0 for a fixed width, for example: 1 shoud be "01" 2 shoud be "02" 20 should be "20" Now I use: x <- c(1, 2, 20) gsub(" ", "0", format(x, width=2)) But I suspect more elegant way could be done directly with format options, but I don't find. Thanks a lot Marc
2008 Nov 28
6
How to delay failed ssh auth
Hi! I need to delay failed ssh password authentication as an additional measure against brute force ssh attacks. I understand, that shoud be accomplished through pam, but googling gave me no example. I have CentOS 5.2. -- Veiko Kukk
2005 Nov 28
6
How define global Variable?
Hello, I try to define a global variable. My example: R> a <- "old" R> test <- function () { a <- "new" } R> test() R> a # shoud be "new" This doesn't work. I would like to modify the variable "a" in a procedure. How can I do that. Thank you for helping. Sven Kn侟ppel (Germany-Berlin)
2005 Jul 27
3
how to overlook the zero in the denominator
Dear R users: I have two set of data, as follow: x<-c(0,0,0.28,0.55,1.2,2,1.95,1.85, 1.6,0.86,0.78,0.6,0.21,0.18) y<-c(0,0,0,0.53,1.34,1.79,2.07,1.88, 1.52,0.92,0.71,0.55,0.32,0.19) i<-1:length(x) I want to sum each (x[i]-y[i])^2/x[i] together, like: >Sum <-sum((x[i]-y[i])^2/x[i]) >Sum [1] NaN Because the denominator shoud not be zero. So I want to overlook those
2016 Mar 14
1
Error 'getpwuid(3000007) failed' is again. (Rowland penny)
What do you want to say that Samba4 can not operate as standalone server, only intend for DC ? Or there is other way to use Samba4 simply as filserver. Btw, I was able to use Samba4 as standalone server of 434 version. 2016-03-14 22:40 GMT+03:00 CpServiceSPb . <cpservicespb at gmail.com>: > Sorry. > But my gmail account ... > > > > 2016-03-14 22:34 GMT+03:00
2013 Feb 04
2
Version 5.01 not passing kernel command line args to memtest86+as it can understand
Hello, I'm trying to pass the serial port options to memtest86+ using Syslinux 5.01 but is not working. Debugging the memtest86+, the check at main.cpp function static void parse_command_line(void) if (*OLD_CL_MAGIC_ADDR != OLD_CL_MAGIC) return; Is being evaluated to true. What should I do? There is a way to instruct memtest to use the "old way" to pass
2006 Jul 25
2
Cron not sending e-mails anymore
Hi, I have a cronjob that executes a script that has some echo statements in it and the commands in it also generate output (it copies files, reloads services, etc...). Recently, cron stopped sending its output by e-mail. I restarted cron, without success. Any ideas where I shoud start to debug this? Regards, Ugo
2003 Feb 19
5
Subpopulations in Complex Surveys
Hi, is there a way to analyze subpopulations (e.g. women over 50, those who answered "yes" to a particular question) in a survey using Survey package? Other packages (e.g. Stata, SUDAAN) do this with a subpopulation option to identify the subpopulation for which the analysis shoud be done. I did not see this option in the Survey package. Is there another way to do this?
2015 Jan 11
3
Samba4 and 0.0.0.0:137 and 0.0.0.0:138 opened, why ? How do close it ?
Thanks for this answer. As I understood, for example if parameter bind interfaces only = yes is and interfaces = lan0 (192.168.0.254) is and if broadcast packet goes from 95.95.95.14 such packet will be dropped (in other words) ? Am I right ? And other thing. Why is 192.168.0.255 (network broadcast) opened for ? May be exact such address (network broadcast) is inbtended for receiving broadcasts
2008 Sep 17
2
modifying patterns in a matrix
Dear R-users, I have some very simple data where 1's represent events and zeroes non-events, e.g. temp <- rbind(c(0,1,0,0,1,1,1,0), c(0,0,0,1,0,0,0,0)) For each row in the matrix, I would like to replace a singelton event by a 0. That is, any 1 surrounded by zeroes (010) should be replaced by a zero (000). Sequences of 1's should be left unchanged. So the modified matrix shoud look
2010 Sep 30
3
Kernel Panic When restarting the server
Hello, I'm getting a KErnel Pannic every time i restart the server, what could be happening? I just make: "shutdown -r now" and the server gets Kernel Panic. I'have to go on site and press the power button Here you have my sotware versions: Asterisk 1.4.24.1 DAHDI Tools Version - 2.1.0.2 DAHDI Version: 2.1.0.4 libpri version: 1.4.10.1 WANPIPE Release: 3.5.4 IS there
2019 Aug 11
2
doveadm / vsize
Hi, i want to keep track of user mailbox size, I'm using doveadm mailbox status -u <user> vsize INBOX for a given mailbox this is under reporting ( by a lot) is this recursive? what shoud i be using to get an accurate disk usage metric? thanks Paul. -- ------------------------- Paul Macdonald IFDNRG Ltd Web and video hosting ------------------------- t: 0131 5548070 m:
2008 Nov 09
2
Delete rows from matrix having at least one zero value
Hi, I have a further question about matrix manipulation. Imagine the following two matrices: > test [,1] [,2] [,3] [,4] [1,] 1 0 6 4 [2,] 2 5 7 5 [3,] 3 6 8 6 [4,] 4 0 0 0 > matrix(is.element(test,0), ncol=4) [,1] [,2] [,3] [,4] [1,] FALSE TRUE FALSE FALSE [2,] FALSE FALSE FALSE FALSE [3,] FALSE FALSE FALSE FALSE [4,] FALSE
2015 Dec 07
2
Fwd: Functionality of Nmbd at Active Directory mode of Samba4 !
If my messages seems somehow unreadable - I sent it from Gmail Web UI. mathias dufresne, read my 2 or 3 last messages. I wrote about mounting \\server\share as disk and risky fo viruses crypting files. Also read messages other, who does not work in AirBus. And more over, it' s your oppinion. But I see useless of more discussion at atll. If you want to combine your efforts to help with
2009 Mar 02
2
Changes in specs for routes in rspec 1.1.99.x
Trying the next release of rspec, I have had to make changes in the existing specs for routing. I have written an script with sed that makes this automatically (two files) spec/upgrade.sed ================ /route_for/s/id => 1/id => "1"/g /route_for.*create/s/== \(["''].*["'']\)/== {:path => \1, :method => :post}/ /route_for.*update/s/==