Displaying 20 results from an estimated 100000 matches similar to: "whoson support"
2012 Nov 16
1
whoson plugin for 2.0
I have found a plugin at
ftp://ftp.ufanet.ru/pub/boco/dovecot/whoson-plugin/
I was able to make it function on a dovecot 1.2.8 server, by changing
__attr_unused__ to ATTR_UNUSED and strlcpy to i_strocpy (since glibc
doesn't HAVE strlcpy, on purpose).
However, it doesn't work with 2.1
this is, of course, because getenv() no longer functions lie it used to
in plugins.
so i need a
2019 May 01
0
[External] Re: Background R session on Unix and SIGINT
Gabor,
I think you're talking about two independent things. You can interrupt the computation, no question about that. It's just that if you send an interrupt while you're *not* doing any computations, it will be signaled but not raised until the interrupts are checked since there is no one to check it. This goes back to my original response - the interactive REPL calls
2019 Apr 30
2
[External] Re: Background R session on Unix and SIGINT
Unfortunately --interactive also makes the session interactive(),
which is bad for me, as it is a background session.
In general, I don't want the interactive behavior, but was wondering
if I could send as SIGINT to try to interrupt the computation of the
background process, and if that does not work, then I would send a
SIGKILL and start up another process. It all works nicely, except for
2019 Apr 30
0
[External] Re: Background R session on Unix and SIGINT
A Simon pointed out the interrupt is recorded but not processed until
a safe point.
When reading from a fifo or pipe R runs non-interactive, which means
is sits in a read() system call and the interrupt isn't seen until
sometime during evaluation when a safe checkpoint is reached.
When reading from a terminal R will use select() to wait for input and
periodically wake and check for
1997 Oct 09
0
ADMIN$, C$, and D$ shares
The shares named C$, D$, and so on are shares that only become available
on a Windows 95 system when you are using the "Remote Administration"
feature -- i.e., accessing the ADMIN$ share. As soon as you connect to
this share, Windows activates a <letter>$ share for each permanently
mounted partition on your computer (CDROM drives and the like don't
qualify).
The bottom
2004 Sep 12
0
:)) to excercise your heart
For me it is hard to c^ontr_'ol my weight cause I always thi~n.k l~i,ve near
Pizzahut or Domin-.os could be such a blessing.
Dy http://u.q.goodbetterrx.com
usa m'~ed-s & nextday s_hi.p,pi.ng
lull, broken by Hannah, who stalked in, laid two h_o`t turn-`overs on the
table, and stalked out again. These turn_`overs were an institution, and the
g_i-rlsc~a,ll^ed them `muffs', for they
2023 Apr 03
1
Simple Stacking of Two Columns
Hi,
You were on the right track using stack(), but you just pass the entire data frame as a single object, not the separate columns:
> stack(NamesWide)
? values ? ind
1 ? ?Tom Name1
2 ? Dick Name1
3 ?Larry Name2
4 ?Curly Name2
Note that stack also returns the index (second column of 'ind' values), which tells you which column in the source data frame the stacked values originated
2023 Apr 04
1
Simple Stacking of Two Columns
Just to repeat:
you have
NamesWide<-data.frame(Name1=c("Tom","Dick"),Name2=c("Larry","Curly"))
and you want
NamesLong<-data.frame(Names=c("Tom","Dick","Larry","Curly"))
There must be something I am missing, because
NamesLong <- data.frame(Names = c(NamesWide$Name1, NamesWide$Name2))
appears to
2011 Aug 30
1
New UPS for Support List
Hi All,
I have got the Belkin F6S600auUSB UPS working with the blazer_usb driver.
I pulled the power to the ups last night and it sent a message to the server saying it was on battery then ran for another 10 minutes and then sent a message to the server telling it to shut down, which it did.
upswr did not return anything.
[root at verity ~]# upsc ups
battery.voltage: 13.50
2011 Aug 30
1
New UPS for Support List
Hi All,
I have got the Belkin F6S600auUSB UPS working with the blazer_usb driver.
I pulled the power to the ups last night and it sent a message to the server saying it was on battery then ran for another 10 minutes and then sent a message to the server telling it to shut down, which it did.
upswr did not return anything.
[root at verity ~]# upsc ups
battery.voltage: 13.50
2009 Jun 16
0
ANNOUNCEMENT: 20% discount on the most recent R books from Chapman & Hall/CRC!
Take advantage of a 20% discount on the most recent R books from Chapman & Hall/CRC!
We are pleased to offer our latest books on R at a 20% discount through our new website. To take advantage of this offer, simply visit http://www.crcpress.com/, choose your titles and insert code 281DW in the 'Promotion Code' field at checkout. Standard shipping is also free on all orders from
2016 Nov 11
3
azure AD Connect | passwords not syncing
For my script :
https://github.com/sfonteneau/script_modify_password_googleapps_and_office365
Azure AD:
https://github.com/sfonteneau/script_modify_password_googleapps_and_office365/blob/master/script/office/officepassword.py
Another idea:
AD refuses to change a password on a clear connection.
It may be the same for the consultation of the hash?
Have you set up lts or ldaps with ad ?
The
2001 Feb 14
1
Kerberos/GSSAPI support
Hi,
Just wondering if anyone was looking at implementing
draft-ietf-secsh-gsskeyex-00 in OpenSSH?
My patches for SSH version 1 Kerberos 5 support (heavily based upon
work done by Dan Kouril) are now available from
http://www.sxw.org.uk/computing/patches/
Is there any interest in integrating these into the distribution? If so, I'd
be happy to update them to the development version.
Cheers,
2023 Apr 03
4
Simple Stacking of Two Columns
Hi R-Helpers,
Sorry to bother you, but I have a simple task that I can't figure out how to do.
For example, I have some names in two columns
NamesWide<-data.frame(Name1=c("Tom","Dick"),Name2=c("Larry","Curly"))
and I simply want to get a single column
2023 Apr 04
1
Simple Stacking of Two Columns
I may be missing something but using the plain old c() combine function
seems to work fine:
df <- data.frame(left = 1:5, right = 6:10)
df.combined <- data.frame(comb = c(df$left, df$right))
df
left right
1 1 6
2 2 7
3 3 8
4 4 9
5 5 10
df.combined
comb
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10
-----Original
2023 Jan 12
1
Upgrading system from non-RAID to RAID1
> On 01/11/2023 02:09 AM, Simon Matter wrote:
>> What I usually do is this: "cut" the large disk into several pieces of
>> equal size and create individual RAID1 arrays. Then add them as LVM PVs
>> to
>> one large VG. The advantage is that with one error on one disk, you wont
>> lose redundancy on the whole RAID mirror but only on a partial segment.
2006 Oct 27
6
Table naming conventions
Folks,
I am new to rails. I have tried Google searches, checked the tips and
doco and can''t find the answer to a simple question.
I have a table called "Activity" that I want to rename so I can use
RubyOnRails but I don''t know whether the plural form should be
"Activitys" or "Activities".
Can someone illuminate me on what to do?
regards
Simon
2003 Jan 27
1
Samba as PDC for WinXP, Win9
Simon,
What version of Windows XP are you using? If your client has purchased
computers from Best Buy or a similar electronics "mega-store" they likely
received WinXP Home Edition. (Which is what it sounds like based upon the
use of Win9x machines you mentioned.)
If that is the case, then you will be unable to get the WinXP machines
to see the Samba Server (or a Windows
2004 Aug 10
1
Your mail to Firewalls-Book-Info
This pre-recorded message is being sent in response to your recent
email to Firewalls-Book-Info.
Building Internet Firewalls, Second Edition
===========================================
by Elizabeth D. Zwicky, Simon Cooper, and D. Brent Chapman
Published by O'Reilly & Associates
2nd Edition June 2000
894 Pages
ISBN 1-56592-871-7
List price $49.95
Available through the Internet at a
2001 May 17
0
kerberos 5 support
Hi
I'd also like to express interest in Simon's kerb 5 patches being
integrated into the openssh distribution. Are there currently any
plans for this to happen and if so, what's the expected time frame?
Ben.
Simon Wilkinson <sxw at dcs.ed.ac.uk> wrote:
> My patches for SSH version 1 Kerberos 5 support (heavily based upon
> work done by Dan Kouril) are now available from