The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
39 views

PHP: Send email reliably and handle errors robustly

I'm making my first site for a learning exercise as I've been a java back-end developer. I am setting up a user registration form and since this is going to be my user's first glimpse at my site, I ...
0
votes
0answers
154 views

MATLAB - robust regression iteration limit reached?

I have a linear model that I am using robust regression to estimate parameters for, but I get the following message (in orange) in MATLAB: Warning: Iteration limit reached. > In ...
1
vote
1answer
375 views

Using ggplot2 to plot predicted values with robust standard errors

I am trying to use ggplot2 to plot the predicted values of negative binomial regression, one with a binary variable turned on, and another with it turned off. So there will be two two plots that can ...
3
votes
0answers
221 views

Which function/package for robust linear regression works with glmulti (i.e., behaves like glm)?

Background: Multi-model inference with glmulti glmulti is a R function/package for automated model selection for general linear models that constructs all possible general linear models given a ...
0
votes
1answer
93 views

Simple quick robust image comparison

I have an image find- and "blur-compare"-task. I could not figure out which methods I should use. The setup is this: A, say, 100x100 box either is mostly filled by an object or not. To the human eye ...
2
votes
1answer
608 views

Panel data regression: Robust standard errors

my problem is this: I get NA where I should get some values in the computation of robust standard errors. I am trying to do a fixed effect panel regression with cluster-robust standard errors. For ...
0
votes
0answers
71 views

Opensim robust tutorials

I am looking at setting up an opensim region or better yet a few of them and i want them to be visible to each other so you can travel to any of the others simply by walking or flying there, ...
2
votes
3answers
262 views

C# - try and catch statement uses

Is this good practice to wrap every function with try and catch? I'm building a server in c#, and I'm trying to understand if one of the ways to make it more robust and protected from crashes is to ...
1
vote
3answers
314 views

Some problems about the mexLasso function

I am a student who is envolving in a research about robust visual tracking. And these days ,I had met a problem in my study. The teacher gave me a project of matlab code about the research, when I ...
1
vote
2answers
1k views

Java - Robustness and Code Reuse

I have a few doubts on java concepts: Is code reuse in java is similar to using functions as defined in other programming languages like C? Is Java robust by nature or does it provides a way to ...
2
votes
2answers
153 views

Robust algorithm to assign chaperones to students

Here's the problem: Given 4 groups of students of sizes A, B, C and D, and a total of k chaperones, devise an algorithm for assigning chaperones to students in near-equal proportions. You can't just ...
0
votes
2answers
189 views

How to (properly) use robust pthreads for process synchronization?

We have a bug in a production system, where a process segfaults while holding a shared memory mutex. We'd like it to release the lock when dying. We use sem_wait()/sem_post(), but doing my homework, ...
1
vote
0answers
19 views

What is a plugin frameworks resposibility to prevent unwanted execution? [closed]

If one were to create, or use a pre-made, plugin framework, what would prevent a plugin author from executing malicious code or even a seperate program? Isn't this kind of what happened with dll ...
9
votes
7answers
531 views

Python for a hobbyist programmer ( a few questions)

I'm a hobbyist programmer (only in TI-Basic before now), and after much, much, much debating with myself, I've decided to learn Python. I don't have a ton of free time to teach myself a hundred ...
0
votes
2answers
358 views

Making this httpHandler more robust?

I have the following HttpHandler; I'm using it to push updates to the browser (where jQuery and GrowlUI are implemented) without the need for the browser to poll. I think all I've accomplished is ...
0
votes
12answers
611 views

Super Robust as chrome c++ and portable - tips - help - comments

We are producing a portable code (win+macOs) and we are looking at how to make the code more rubust as it crashes every so often... (overflows or bad initializations usually) :-( I was reading that ...