Displaying 5 results from an estimated 5 matches for "heppen".
Did you mean:
happen
2004 Sep 01
1
Really Wierd softphone problem ... must read
...microphone
hooked up anywhere that is causing this. No microphone is needed to
duplicate this problem. It started with SJPHONE. I removed and Reinstalled
SJPHONE ... no luck. I install x-lite and it does it too. I removed XP
SP2, and also updated my sound drivers .. no luck. Any one ever had this
heppen to them ? Please Help.
I also tried other sip clinets on another pc with no problem so it doesn't
seem to be the server.
Thank you,
Steve Maroney
2006 Apr 13
1
Re: bcmxcp_usb "Can't open POWERWARE USB
Kjell Claesson wrote:
> Then i have a problem. My computer is down due to a
> faulty mainboard,
Youch. I hate it when that heppens. Hope it wasn't
because you got a power spike ;-)
Let me or Georg know if you want us to run any debug
code. Feels like a bcmxcp_usb driver bug to me since
the bcmcxp serial driver works fine and all my other
USB devices work fine (wifi adapter, memory card
reader, etc.)
ken
___________...
2006 Mar 15
3
samba server only accessiblie via ip address and notviadns name
...orangemail.nl@lists.samba.org
[mailto:samba-bounces+herwarth.heitmann=orangemail.nl@lists.samba.org]
On Behalf Of Louis van Belle
Sent: 15 March 2006 16:31
To: samba@lists.samba.org
Subject: RE: [Samba] samba server only accessiblie via ip address and
notviadns name
i've seen this to, but what heppens if you browse over the network.
for me for example, when i enter \\hostname\share i get access denied.
but when i browse over the network in can access \\hostname\share
Louis
>-----Oorspronkelijk bericht-----
>Van: samba-bounces+louis=van-belle.nl@lists.samba.org
>[mailto:samba-bou...
2006 Mar 15
2
samba server only accessiblie via ip address and not via dns name
hello,
from windows 2000/xp clients i can only connect to the samba server
using the ip address in the form:
\\<ipaddress>\share
\\<hostname>\share will give an authorization error
i have tried samba 3 and 2.2 with no difference
smb.conf:
# Global parameters
[global]
workgroup = CMS
netbios name = loki
server string = Samba Server %v
bind
2007 May 08
5
Weighted least squares
Dear all,
I'm struggling with weighted least squares, where something that I had
assumed to be true appears not to be the case. Take the following
data set as an example:
df <- data.frame(x = runif(100, 0, 100))
df$y <- df$x + 1 + rnorm(100, sd=15)
I had expected that:
summary(lm(y ~ x, data=df, weights=rep(2, 100)))
summary(lm(y ~ x, data=rbind(df,df)))
would be equivalent, but