Displaying 20 results from an estimated 200 matches similar to: "[Bug 109035] New: amazon echo dot technical support phone number"
2017 Nov 18
2
family
Hi all,
I am reading a huge data set(12M rows) that contains family information,
Offspring, Parent1 and Parent2
Parent1 and parent2 should be in the first column as an offspring
before their offspring information. Their parent information (parent1
and parent2) should be set to zero, if unknown. Also the first
column should be unique.
Here is my sample data set and desired output.
fam
2002 Jul 19
1
long username - netlogon problem - access denied
I'm running samba 2.2.4 on rh 7.2. Everything's been working well
for months.
I use the domain logon feature to map drives when '98 users logon
to the domain.
Recently I've had a couple machines refuse to process the logon
script and I can't figure out why.
Here's the Windows output:
C:\WINDOWS> Access denied - Z:\ALEXA~03.BAT
C:\WINDOWS> Access denied -
2023 Jun 03
2
What could cause rsync to kill ssh?
Rsync 3.2.7 is running on the Gentoo computer, which doesn't have a version, other than it's "current". I'm running the script from this computer.
Rsync 3.1.2 is on the source computer, where the files come from, which is Ubuntu 18.0.4.6.
I'm copying to a CIFS share mounted on the Gentoo computer.
The rsync scripts are all similar to this one:
/usr/bin/rsync -v -a
2023 Jun 03
1
What could cause rsync to kill ssh?
Maurice R Volaski <maurice.volaski at einsteinmed.edu> wrote:
> Rsync 3.2.7 is running on the Gentoo computer, which doesn't have
> a version, other than it's "current". I'm running the script from
> this computer.
>
> Rsync 3.1.2 is on the source computer, where the files come from,
> which is Ubuntu 18.0.4.6.
>
> I'm copying to a CIFS
2004 Apr 20
1
Strange Fedora Booting problem: can not mount "LABEL=*"partitions
Hi, Theodore,
Thanks for your tests. But I got the problem and got it FIXED by
flushing out the contents of /etc/blkid.tab before cloned clients
reboot.
I'm using the e2fsprogs-1.34-1 comes with Fedora Core 1.
hello06.alexa.com root 135% rpm -qf /sbin/fsck
e2fsprogs-1.34-1
hello06.alexa.com root 136%
and the original contents in /etc/blkid.tab are attaching below, while
my
2004 Apr 02
2
Strange Fedora Booting problem: can not mount "LABEL=*" partitions
Hi,
Just got Fedora FC1 vanilla 2.4.25kernel+libata8patch booting problems, FC1 complains that it can not automatically find&found partitions specified with "LABEL=" in /etc/fstab, and then falls me into repair mode. In the repair mode I can mount it manually without any problems. More interesting are: 1) I have several partitions specified with "LABEL=*" in
2020 Feb 16
0
Possible CORS issue
Good morning
On Sat, 15 Feb 2020 at 14:30, Philipp Schafft <lion at lion.leolix.org> wrote:
>
> No, official Icecast does not support HEAD requests as they are largely
> useless in Icecast context.
>
> HEAD requests are meant for cache validation. So they only apply to
> static files basically. For Icecast, beside a few boring files in web/
> the answer to "is my
2018 Nov 29
0
Tracking Listeners with Key and other parameters
Good morning,
On Tue, 2018-11-27 at 12:00 -0500, Alex Hackney wrote:
> I do have control over the headers. The webapp is built in php.
Ok.
> So the ideal path would be.
>
> 1) Client hits my web app for the m3u file.
>
> http://webapp.com/station-aac/listen.m3u
>
> 2) I create a session id and send that back with the icecast server path(s)
>
>
2004 Sep 25
2
Strange behavior of is.na() on lists
Hello R-users,
I have observed that is.na() behaves strange on some lists. Here is a
simple example:
> a = list(list('asd'))
> a
[[1]]
[[1]][[1]]
[1] "asd"
> for(i in 1:5)
+ print(is.na(a))
[1] TRUE
[1] FALSE
[1] TRUE
[1] TRUE
[1] TRUE
>
> for(i in 1:10)
+ print(as.integer(is.na(a)))
[1] 0
[1] 10
[1] 1
[1] 0
[1] 140897024
[1] 134567568
[1] 1
[1] 1953720684
2020 Feb 13
3
Possible CORS issue
Hi
I'm clutching at straws here.
I have a user who requires access to a status-json.xsl to publish now
playing data for an Alexa skill and this can be accessed via a browser at:
- http://example.com:8000/status-json.xsl
He says that now his PHP script cannot access the file.
I know that Alexa requires *streams* to be served over https but this has
previously worked and his skill is
2004 Sep 20
2
installing on alpha
I am trying to install R-1.9.1 on an alpha (Tru64 unix) platform. I had no
problem previously installing R-1.4.0, but cannot get the new installation
to work. First I ran "configure" specifying an alternate installation
directory:
./configure --prefix=/appl/R-1.9.1
then ran "make" (note that this is NOT gmake, which may make the
difference). The error message I
2004 Sep 20
2
installing on alpha
I am trying to install R-1.9.1 on an alpha (Tru64 unix) platform. I had no
problem previously installing R-1.4.0, but cannot get the new installation
to work. First I ran "configure" specifying an alternate installation
directory:
./configure --prefix=/appl/R-1.9.1
then ran "make" (note that this is NOT gmake, which may make the
difference). The error message I
2016 Jul 26
3
Exportar datos en formato de Excel
Hola.
En mi caso, no he podido resolver los problemas con el Java para usar
XLConnect, que en los papeles me parece el mejor. Supongo que algo de la
arquitectura del sistema o bien de la relación entre el Java, el R y el
RStudio.
Así que utilizo
library(openxlsx)
write.xlsx(datos, file = "EDA1.xlsx") #donde datos es el objeto que quiero
guardar.
Requiere instalar el RTools, según tipo y
2006 Feb 23
1
partial mantel test
I would like to know how to run a partial mantel test controlling for spatial
autocorrelation and correlation with other environmental variables. It seems that
with function included in vegan for partial mantel test I can only test for the
relationship between two variables controlling for the effect of a third one.
Thanks a lot
Alexandra
---
Lic. Alexandra Sapoznikow
Centro Nacional
2004 Nov 19
2
accessing the attributes of a list inside lapply()
Hello R-users,
I have the following problem, that I want to solve efficiently:
I have a named list, for example:
> l <- list(a = 1, b = 3, c = 'asd')
> l
$a
[1] 1
$b
[1] 3
$c
[1] "asd"
I know that I can iterate through it using lapply() function, but I
would also like to able to get the list names or some attributes of l
in the lapply(). For example if I use
2003 Mar 20
1
Question about Error due to memory allocation issue
Hi,
I'm new to using R and I'm having problems in trying to do some quantile
regressions with the package quantreg. When I try to use rq [specifically, I
type in: rq(lnwagehr~lnmin1 + lncpi + ue03 + ue35 + ue57 + ue79, tau=.05,
data=mydata, weights=pworwgt, method="fn", na.omit) ] , the computer churns for
about 15 minutes and then spits out the following error message:
2018 Nov 26
2
Tracking Listeners with Key and other parameters
I have an app that I've built that leverages the auth functionality of
icecast2 to track when listeners are added to the stream and monitor
what they listen to.
I've ran in to an issue where if a listener disconnects for a few
seconds then reconnects, I track them as a new user.
I can't track by ip cause there may be a few people listening from the
same public ip.
In the docs I
2013 Jun 28
2
tinc for Satellite connections (benchmarking)
Hello.
I'm living in the country side where the communications are very very
poor. My only choice is Satellite connection throw the French company
Eurona which uses the network deployed by Skylogicnet.
In general the latency is very bad (~800ms) and the network is very
unstable. I have been investigating in the ISP routers which are in my
path and there are many hops which are done in a
2007 Apr 13
0
I put your link, r-project.org, on my site under Lead Generation > Mailing Lists
Hi it's Matt.
I saw your site, http://www.r-project.org/, on Google under:
Lead Generation > Mailing Lists
I see that your site has an Alexa ranking of 79275.
Not bad!
I have placed a link to your site in the Lead Generation > Mailing Lists section
of my site. You can check it out at:
http://www.topsafelistbiz.com/partners/lead-generation-mailing-lists10.html
It says:
R: Mailing
2007 Feb 16
0
displaying images from this controllers code
Hi,
Im pretty new to rails so please excuse me if this is a trivial question
to most of you :)
Im making use of the following code that I came accross which allows me
to go and feed amazons alexa service a url and it returns a thumbnaill.
class AmazonController < ApplicationController
layout ''default''
def index
require ''cgi''
require