similar to: R group on LinkedIn.com

Displaying 20 results from an estimated 700 matches similar to: "R group on LinkedIn.com"

2009 May 19
0
R group on Linkedin
Greetings: I have formed a group on the LinkedIn.com professional networking site. There are jobs listings and discussions there. Not exactly code discussions but some professional topics including favorite GUIs and trainings. http://www.linkedin.com/groups?about=&gid=77616&trk=anet_ug_grppro Regards, Ajit -- _________________________________ Ajit Gemunu de Silva Oakland CA 94619
2007 Jun 08
0
Climber.com - RoR employment Website
We have launched our Ruby on Rails and Ajax employment website and we''d like to share it with you all. Online employment match service written in Ruby on Rails and Ajax, Climber.com helps busy professionals land the position of their dreams without the time and hassle of the job search process. The company offers a cutting edge work values assessment process, personalized employment
2013 Aug 27
0
[LLVMdev] Adding diversity for security (and testing)
On Aug 26, 2013, at 2:39 PM, Stephen Crane <sjcrane at uci.edu> wrote: > We have been working on adding randomness into code generation > to create a diverse population of binaries. This diversity prevents > code-reuse attacks such as return-oriented-programming (ROP) by > denying the attacker information about the exact code layout. Putting on my security hat (as opposed to
2010 Apr 19
1
permission denied, no logs
Hi, We have a sendmail/dovecot/squirrelmail installation that was working ok except for deleted files showing in the list with a [d] beside it. In trying to fix that issue, I apparently made a new error appear in the left navigation area: ERROR: Could not complete request. Query: CREATE "mail/Sent" Reason Given: [NOPERM] Permission denied There are no errors in dovecot, but from what
2005 Oct 25
1
Writing point pattern to a file
Hi, I am trying to use the R package 'spatstat' for generating spatial poisson point process graphs. I can create a point pattern using the following commands: pp <- rpoispp(.01, win=owin(c(0,100),c(0,100))) and also view the resulting graph by: plot(pp) But how can I export the generated point pattern to an external file so that I could use it as input for some network
2002 Mar 14
0
ADVERTISING: JobConnect - where people find jobs
Good News for Job Seekers! As you may have heard, there is a real service that is designed for and dedicated to servicing you, the Job Seeker. That service isJobConnect. Currently we have thousands of openings with Real Companies for everyone from entry-level candidates to the most experienced professionals. Come towww.jobconnect.biz and take advantage of our special offer. Remember,
2005 Oct 27
0
where is Jim Lemon? (PR#8259)
This concerns the contributed package "concord". Sorry to bother you with it, but my attempt to contact the author/maintainer failed (see below). Perhaps you can forward it, or let me know where to send it. Regards, Rob Kushler ------------------------------------------------------ This is the Postfix program at host tak.itd.uts.edu.au. I'm sorry to have to inform you that
2018 Feb 12
0
FAST 18 Conference at Oakland, CA (USA)
Hi all, Some of us, gluster developers would be in Bay area (Oakland, CA) for FAST18 (https://www.usenix.org/conference/fast18), Feb 12th - Feb 15th. If you are nearby, or attending the conference, it would be a great opportunity to meetup and discuss about Gluster 4.0 and beyond, or any other topics related to Gluster. Regards, Amar -------------- next part -------------- An HTML attachment was
2000 Mar 01
2
Help please..
Hello R-world, I am facing a peculiar problem and hope someone out there can comment on it. In goodness-of-fit tests for evaluation of distributions, there are three well-known methods: 1. Chi-square 2. Anderson-Darling 3. Kolmogorov-Sminrov I am trying to use the second test. Many researchers have reported results using this test. I wrote programs in C and now in R to do this. I run into
2007 Oct 11
3
Please Help.
Hi, I want to use USDT in my java applications. Please tell me how to achieve this. I am comfortable with SDT in C application. I am using Solaris Sparc10 with Generic_120011-14 version. Do I need to update my machine for this? Thanks, Ajit -- This message posted from opensolaris.org
2004 Oct 04
1
SENDMAIL
Subject: SENDMAIL For us to provide a SENDMAIL SERVICE, we need help to configure our mail server, using open source resources (no linux) with the capability to send up to one million messages daily. Our server must be remotely automated to function flawlessly 24/7. If our requirements are within the realm of your ability, kindly advise us of the options and your fee (contract) to
2008 Mar 15
2
Asterisk VOIP Jobs version 2 Launched!
Greetings VOIP Job Seekers, We wanted to let you know that we've completed the revamp of Asterisk-Jobs.com. There's not much there now after scrapping version 1.0 of the site, but we expect many postings to come soon. Keep an eye on the site for the latest in Asterisk and related VOIP employment. http://www.asterisk-jobs.com Thanks, Asterisk Jobs Staff -------------- next part
2003 Feb 06
1
No struct cmsghdr - what to do ?
Hi all, If any perticular OS does not have 'struct cmsghdr' in sys/socket.h and also it does not have access rights in 'struct msghdr', then how the compilation should be done ? Does anybody had similar problem earlier ? Regards, Ajit
2012 Aug 01
2
'redirect_to' taking infinite loop.
Hi, The following controller method taking me into infinite loop. Once the update action completes I want to reload the ''index'' page. May I know why it is going into infinite loop? def update Device.find_by_id( params[:device_id] ).driver = ( params[:driver_id] == 0 ) ? nil : Driver.find_by_id( params[:driver_id] ) redirect_to :action => :index, :tab =>
1999 Nov 24
1
Need help..
Dear All, I am trying to generate some Pareto random variates using the inverse method. This is really straightfoward and my R function looks as below : pareto <- function(c, a, cnt=1000) { u <- runif(cnt) x <- (c / ((u ^ (1 / a)))) mean.theo <- ((c * a) / (a - 1)) mean.gen <- mean(x) cat('Pareto mean : theoritical', mean.theo, 'generated', mean.gen,
2009 Mar 11
1
Is this a documentation bug? Spss dates import
Hello R-user bug seekers are needed! In order to perform these simple tasks you have to use a copy of SPSS and obviously R. The problem is that date conversion of data coming from SPSS gives wrong results, if we follow ?as.POSIXct ## SPSS dates (R-help 2006-02-17) z <- c(10485849600, 10477641600, 10561104000, 10562745600) as.Date(as.POSIXct(z, origin="1582-10-14",
2002 Nov 14
1
OpenSSL in OpenSSH
Hi, Can somebody provide me information of what portion from OpenSSL is used in OpenSSH ? I am just trying to figure if some portion of OpenSSL is not working then still can I use it for OpenSSH. thanks, Ajit
2009 May 15
13
How to calculate java method timestamp?
Hi, I need help in calculating Java method time-stamp in following fashion. Consider following method example. long method3(long stop) { try { Thread.sleep(1500); } catch (Exception e) { } //////////////////// real CPU intensive operation /////////////////////////// for (int i = 1; i < stop; i++) { stop = stop * stop * i; };
2012 May 03
6
Hosting application on private network.
Hi, I have a Ruby on Rails application. I am able to run it in my local system using Apache2 server. I would like to host my application so that all the systems in the private network 192.168.3.0/24 should be able to access the web-application. My system private-ip is 192.168.3.57. Please help me what all configurations do I need to do. Thank you Ajit -- Posted via
2011 Oct 20
2
How to remove multiple outliers
Hi All, I am working on the dataset in which some of the variables have more than one observations with outliers . I am using below mentioned sample script library(outliers) x1 <- c(10, 10, 11, 12, 13, 14, 14, 10, 11, 13, 12, 13, 10, 19, 18, 17, 10099, 10099, 10098) outlier_tf1 = outlier(x1,logical=TRUE) find_outlier1 = which(outlier_tf1==TRUE, arr.ind=TRUE) beh_input_ro1 =