search for: davideps

Displaying 8 results from an estimated 8 matches for "davideps".

Did you mean: davide's
2016 Dec 20
2
ldaps:// referrals from DC
I'm not an LDAP expert and I need an help to understand the following situation. I'm configuring a web LDAP addressbook (roundcube) against a Samba 4.4 DC to use simple binds over ldaps://. My troubles with Samba 4 DC start when the server response contains a referral with ldap:// URI scheme.  The client fails without messages to error logs. This does not happen against a Windows Server
2011 Oct 19
4
Using SQL "IN" with RJDBC or RMySQL
...it may be just a matter of string massaging, but I'm not certain. I've tried to build the query using sprintf statements with no luck. I could not get RMySQL to do it either. Any suggestions? thank you, -david library(RJDBC) drv <- JDBC("com.mysql.jdbc.Driver", "/home/davideps/Software/extlibs/mysql-connector-java-5.0.7-bin.jar",identifier.quote="`") conn <- dbConnect(drv, "jdbc:mysql://localhost/civicrm", "userid","pass") org_table=dbGetQuery(conn,"SELECT id,organization_name FROM civicrm_contact WHERE contact_type=...
2016 Dec 20
2
ldaps:// referrals from DC
Hi Marc, thank you for your quick response! On Tue, 2016-12-20 at 17:44 +0100, Marc Muehlfeld via samba wrote: > > I haven't tried it, but what is wrong with STARTTLS? Nothing is wrong with STARTTLS (if the client supports it)! In my case I disabled referrals chasing in roundcube, as workaround. The reason I ask here is: MS DC gives a different response, and looks more
2011 Dec 03
1
side-by-side map with different geographies using spplot
Hello, I want to create side-by-side maps of similar attribute data in two different cities using a single legend. To simply display side-by-side census block group boundary (non-thematic) maps for Minneapolis & Cleveland I do the following: library(rgdal) library(sp) Minneapolis=readOGR("../Minneapolis/Census/2010/Census_BlockGroup_GEO/","tl_2010_27053_bg10")
2013 Mar 09
1
lmer (LME4) and survey standard error
Hello, I am using lmer (LME4) to build a model from data for 19 different neighborhoods drawn, in part, from the American Communities Survey (ACS). The ACS data is static while other variables change over the five years under investigation. I am new to mixed effects models and was hoping that someone could suggest a way to include the ACS standard error for each covariate into the model. I
2011 Dec 26
2
Recoding multiple TRUE/FALSE columns into a single list of TRUE columns
Hi everyone, I need to recode multiple columns in a dataframe into a single column in a variety of different ways. Often the values will be TRUE/FALSE and I want a list of the columns that are true as in the Result column below: P1 P2 P3 P4 Result 1 0 0 1 1 P3,P4 2 0 1 1 1 P2,P3,P4 3 1 0 0 0 P1 4 0 0 0 0 NA 5 1 1 1
2012 Apr 04
0
crosstabs and histograms with flexible binning of dates
Hi, First, thank you to Duncan Mackay for getting me started processing dates with R. Unfortunately, I need to do a little more than I initially expected. I have 5K lines of data that look like this: ID AREA DATE 0001 Center 2010-10-15 0002 Center 2010-01-02 0003 NorthWest 2010-02-05 0004 SouthWest 2010-05-11 I would like to create a script to create crosstabs like
2012 Apr 01
1
trouble with small multiples on a date variable
Hello, I am loading a DBF file into R via JGR and am having trouble creating small multiple histograms on a date variable. Hist() handles the variable correctly. But I've been unable to work with lattice or ggplot2 despite trying format() and as.POSIXct(). Dates are in the format "2010-05-15" and the grouping variable is categorical. I'd appreciate it if someone would provide an