Displaying 20 results from an estimated 132 matches for "pepe".
Did you mean:
pdpe
2009 Dec 11
2
Data
Hi all,
Imagine I have a matrix and the first colum is a list that repeats the same
names, I want to sum the second column on each unique name on first column.
Imagine this:
Pepe 2
Pepe 3
Pepe 4
Jose 2
Jose 5
Manuel 4
Manuel 2
I want to make a new matrix that calculates and recognizes that there are 3
different names ans sum second column. But a priori I don´t know the list of
the different names:
In my example
Pepe 9
Jose 7
Manuel 6
I´m trying to use something like sap...
2010 Mar 05
2
"\." vs "\\."
Hola a tod@s,
¿alguien me podría clarificar la diferencia entre "\." y "\\." en el siguiente caso? (He mirado ?regex, ?cat, ?Quotes y FAQ 7.37 y no lo acabo de ver)
> a<-"hola.me.llamo.pepe"
> a
[1] "hola.me.llamo.pepe"
> strsplit(a,"\.")
[[1]]
[1] "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" ""...
2009 Feb 18
1
multidimensional scaling with long form data
I have a dissimilarity dataset with the form:
1 1 dissimilarity value
1 2 ...
1 3
1 4
2 2
2 3
2 4
...
I would like to do nonmetric multidimensional scaling with this data, but I
am having trouble using this format. I would like to either find a function
that accepts this format or find a way to easily convert this format to a
matrix for use with existing functions.
Thanks!
2005 Aug 02
1
Default_mail_env..
...'m new to Dovecot and we are trying to do some tests in a
production environment. We use mysql to authenticate and dovecot imap
only. But our structure directory is something special.
All of ours accounts are stored in maildir and the path is the
following:
For example the account pepe at inter.net
/export/maildir/inter.net/p/e/pepe and into pepe we have cur, tmp, new.
This is a problem because we cannot modify the database adding home
for all users, so in the other side I played with the default_mail_env
default_mail_env =
maildir:/export/maildir/%d/%1u/%2u/%n:INBO...
2016 Nov 17
4
BUG: nopassword doesn't work with CRAM-MD5
...ecot.org/PasswordDatabase/ExtraFields) with CRAM-MD5
> > dovecot doesn't allow any password (while it should) and returns
> >
> > " Authentication failed"
> >
> > while in logs:
> >
> > Nov 17 08:22:34 auth-worker(1551): Info:
> > sql(pepe,127.0.0.1,<Y8amDXpBptV/AAAB>): Requested CRAM-MD5 scheme, but we
> > have a NULL password
> >
> > NULL is there because our sql query returns empty password just like wiki
> > says "nopassword: you want to allow all passwords, use an empty
> > password and...
2006 Jul 24
9
RadRails with Eclipse
Hi all,
who is using RadRails with Eclipse to create RoR applications?
jsn
--
Posted via http://www.ruby-forum.com/.
2013 Jun 26
0
NTLM authentication with dovecot.
...9;m using version 2.0.9 because the latest 64-bit gives errors.
But first I wanted to test whether user validation works with telnet.
When I try to try "telnet prueba-mail imap" and try to "a1 LOGIN MyUsername
MyPassword", I get the following error:prueba-mail dovecot: auth:
pam(pepe,190.108.101.120): unknown user.
I show my setup and I appreciate even the minimal support.
----------------( dovecot --version )------------------------
dovecot --version
----------------( dovecot -n )------------------------------
# 2.0.9: /etc/dovecot/dovecot.conf
# OS: Linux 2.6.32-358.6.2....
2008 Dec 20
5
Calendar icon for date selection functionality
Hello.
I would like to add date selection functionality using a calendar
icon. Is there a tutorial anywhere I could use?
Thanks in advance.
Pepe
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send e...
2016 Nov 17
2
BUG: nopassword doesn't work with CRAM-MD5
...llo.
dovecot 2.2.26.0
When testing nopassword extra field
(http://wiki2.dovecot.org/PasswordDatabase/ExtraFields) with CRAM-MD5 dovecot
doesn't allow any password (while it should) and returns
" Authentication failed"
while in logs:
Nov 17 08:22:34 auth-worker(1551): Info:
sql(pepe,127.0.0.1,<Y8amDXpBptV/AAAB>): Requested CRAM-MD5 scheme, but we have
a NULL password
NULL is there because our sql query returns empty password just like wiki says
"nopassword: you want to allow all passwords, use an empty password and this
field. "
If password is returned...
2009 Apr 26
4
Weird auto-complete production problem in Rails 2.3.2
...een different auto-complete fields
and everything is identical except for the field names. Controller
code does not seem to be a problem either. Checked logs and I can''t
see anything obviously wrong either. Searched the web but found
nothing.
Any help would be appreciated.
Thanks a lot.
Pepe
2009 Dec 24
2
Two Easy questions
Sorry all for these two easy questions:
First, I have a matrix with trhee columns:
A=
Name Eight Puntuation
Pepe 1,85 10
Paco 1,7 7
Pablo 1,82 6
I want to scatter the two columns (I could use pairs or other functions...)
but the only doubt is that I cannot find the way to add in the associated
intersection (the point scattered) the label "Pepe" "Paco" and so on...So
next to point...
2004 Sep 14
5
SAMBA & ISAM Databases
...ersa.
Any solution for this?
I have "played" with options in Samba (level2 oplocks, veto oplocks,
locking,
kernel oplocks, etc.) without any improvements. One thing that I have
clear is oplocks = no.
Other parameters we have tried:
To be more specific:
Network name for Linux machine: pepe
Name of Samba share (as seen by Win clients) : testdata
Directory where data is on linux machine : /u/testdata
Thus data can be accessed by: //pepe/testdata
Mount point for Samba share in Linux: /
Comand given to mount Samba share:
mount -t smbfs -o username=whatever,password=key //pepe/testdat...
2009 Sep 13
1
belongs_to + create_* = rails vs. console behavior difference = confused Pepe
Hi,
I have been battling something for a good hour and a half and finally
realized how to ''solve'' the issue but I am very confused as of why I
should do what I just did.
I have 2 classes:
class User
has_many :audits
...
end
class Audit
belongs_to :user
...
end
The way things need to work is to first create an audit and after the
audit is created a user that has
2009 Mar 22
3
undefined method 'define_a_column' for class 'OCI8::Cursor'
...)
- Oracle adapter (1.0.0.9250)
- ruby-oci8 (2.0.1)
- Oracle 10g Express Edition
database.yml:
development:
adapter: oracle
etc...
When I start Mongrel (ruby script/server) I get the error above. I''ve
looked everywhere I can think of. Any ideas what might be happening?
Thanks a lot.
Pepe
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send e...
2008 Jan 02
1
Trying to build the maildir path
I use ldap because is where are store the users and his make place
the authentication .
In my LDAP I have a attribute mail.
like this = mail: pepe at casa.com
I Have more that one domain
This atribute return to me something like : pepe at casa.com where i use
tu build the path to maildir, using %d and %n variables .
/var/spool/vmail/%d/%n = /var/spool/vmail/casa.com/pepe
this work in 0.99.11 but no in the latest version of dovecot....
2020 Sep 20
2
expresiones regulares
...-> 1.3 ptd
1.3ptdm -> 1.3 ptdm
4.4ptdm23j -> 4.4 ptdm 23j
7.716s -> 7.7 16s
1.4hola -> 1.4 hola
1.4hola.hola -> 1.4 hola.hola
5.5v6 -> 5.5 v6
5.5v6sdp -> 5.5 v6 sdp
5.5v10sdp -> 5.5 v10 sdp
de forma que esta frase
"hola 1.3ptd 1.3ptdm 4.4ptdm23j 7.716s 1.4hola pepe 1.4hola.hola 5.5v6 5.5v6sdp 5.5v10sdp"
quedara as?
"hola 1.3 ptd 1.3 ptdm 4.4 ptdm 23j 7.7 16s 1.4 hola pepe 1.4 hola.hola 5.5 v6 5.5 v6 sdp 5.5 v10 sdp"
estoy probando con gsub y no doy con la tecla.
Lo mismo hay una forma mas simple de cambiarlo y no usando las expresiones reg...
2010 Nov 17
1
Error: package 'pcvsuite' was built before R 2.10.0: please re-install it
R-helpers,
I have had difficulty installing the "pcvsuite" package on R version 2.12.0 (2010-10-15). The pcvsuite package is not available on CRAN, but is located for download at the following website at the University of Washington:
Windows version
http://labs.fhcrc.org/pepe/dabs/pcvsuite_1.0.zip
Mac version
http://labs.fhcrc.org/pepe/dabs/pcvsuite_1.0_R_i386-apple-darwin8.11.1.tar.gz
I am using a MacBook Pro and have both Windows 7 and Mac OS X snow leopard installed on their respective partitions. When I install the windows pcvsuite zip file on the Windows partit...
2009 Feb 16
24
como consultar en oracle
holaa todos ante todo un cordial saludo alguien que me pueda ayudar.
se plantea lo siguiente necesito mostrar 2 campos de una tabla los
cuales son mtin_mtin,mtin_descri de una tabla llamada re_tmtinv de esos
dos campos se necesita obtener el codigo y la descripcion,y luego ser
mostrado para despues ser agregados a un formulario.
el problema que tengo es que ya tengo la vista pero esta en blanco
2003 Jul 21
2
SAMBA, NIS and NFS
...ndows machine as a share...enter SAMBA
I installed SAMBA on the Solaris E450. (because I have complete
control on the Solaris machine but I can only make requests regarding
the SGI)
Now the problem: When I try to mount the share in windows from the
command prompt using: "net use h: \\mar-pepe\lrathbone", I get the
error :
System error 1240 has occurred.
The account is not authorized to log in from this station.
When I try to log in from any UNIX box (Solaris/Linux) using:
"smbclient //mar-pepe/lrathbone -U lrathbone" ,I have no problem
getting in.
I was wondering if...
2008 Jul 10
6
Uppercase all row columns
Hi.
I have to convert the contents of all columns to uppercase before
creating a row. Is there an easy way to accomplish this so I don''t
have to go one column at a time and upcase! it?
Thanks.
Pepe
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send e...