Questions tagged [stability]

152 questions
2
votes
0 answers

Quadcopter stability pid code

I'm building a quad-copter using an accelerometer and gyro. The form looks like this one: My pitch is controlled by the front and back motors. My roll is controlled by the left and right motors. I used PID and servo libraries. Here's my pitch…
Goor Lavi
  • 412
  • 3
  • 16
2
votes
1 answer

Monitoring application health and what users do with javascript

I am a Java developer doing my first steps with JavaScript. In the next couple of months my Javascript code is going to be pushed to production and had a question about code and application monitoring. With java (or any major programming language…
special0ne
  • 6,063
  • 17
  • 67
  • 107
2
votes
4 answers

How stable is VS2010 beta 2?

Would you use it to build a project? (C++, in particular) Is it at all legal?
sold
  • 2,041
  • 5
  • 25
  • 32
2
votes
1 answer

Creating forum software - looking for the best way to go about 1 thing

Alright, so I enjoy making forum software with PHP and MySQL, though there's one thing that has always troubled me, and one thing only; The main page of the forums, where you view the list of the forums. Each forum shows the forum name, the number…
Tynarus
  • 141
  • 7
2
votes
1 answer

Matlab's fsolve converges *but* seems to give wrong solution

I am trying to solve a system of non linear equations using fsolve; lets say F(x;lambda) = 0, where lambda is a vector of parameters, and x the vector I want to solve for. I am using Matlab's fsolve. I have 2 values of the parameter lambda, that I…
George
  • 21
  • 1
  • 2
2
votes
2 answers

What happened to dead java thread in linux?

I got a NullPointerException in my project and I would like to evaluate what is the sevirity of this issue. The exception is thrown just before the thread finished its task and going to die anyway. My code failed to catch this excepition, so the…
nahsh
  • 729
  • 1
  • 6
  • 15
2
votes
2 answers

Is the June 2009 WPF Toolkit Safe to Use in Applications that will be Shipped Out to Customers?

Is the June 2009 WPF Toolkit safe to use in applications that will be shipped out to customers? I'm seriously concerned that my application will crash three days prior to release. This concern stems from the fact that that the WPF Toolkit does not…
Giffyguy
  • 20,378
  • 34
  • 97
  • 168
1
vote
1 answer

Why is my Android phone more stable than my Windows desktop?

My Android phone has never crashed as far as I know in the two years I have had it. My Windows desktop crashes at last once a month. Why is the Android phone more stable than the Windows desktop?
user128807
  • 10,447
  • 17
  • 53
  • 72
1
vote
3 answers

What Selenium version is currently the most stable?

My project's tests were written when Selenium 2.0a_ (Alpha versions) were available, and I want to upgrade Selenium to a more recent version. One good reason for this is that the old version does not work with recent Chrome versions. Other reasons…
Oren Shalev
  • 952
  • 2
  • 9
  • 19
1
vote
3 answers

What is a good standard metric for stability in a web application?

We currently facing some stability issues with our develop web application product. This product was built in part by our partner contractor, and we want to have a good standard metric for stability. The issues we have been facing is constant…
Geo
  • 8,663
  • 13
  • 63
  • 93
1
vote
0 answers

KMeans / ValueError: Found input variables with inconsistent numbers of samples:

My initial data is : data_init = pd.read_csv('data_merged.csv') Total periode to cover 25 months initial_period_data = data_init[(data_init['order_purchase_timestamp'] >= earliest_timestamp) & (data_init['order_purchase_timestamp'] <…
1
vote
1 answer

How can I fix the 'invalid mime type' error when sending an image as a binary string to Stability AI in Express?

I am trying to use the image-to-image API from stabilityAI. I need to send an image as binary string in my express server to the stability AI API, when I send the POST request to the API I get this error: return invalid mime type for init_image:…
1
vote
1 answer

How do you assess stability in saturated network models that have used model search algorithms?

Background and question There are multiple functions for assessing the stability and accuracy of psychological network model parameteres in the bootnet package, such as bootstraps for edge weight confidence intervals, case-drop boostraps for…
André
  • 101
  • 4
1
vote
1 answer

What is senior PHP developer duty about tackling network(physically) related issue's?

What are my duty in a open university (as a senior PHP developer) to tackling network crashing for increasing accessibility of our web based services? I need big picture.
Mohammad
  • 33
  • 9
1
vote
0 answers

Is counting sort considered stable when integers are appended?

Say I have the unsorted array = [(3,a), (1,p), (3,c), (7,f), (5,g), (3,b), (7,d), (8,w)]. My count array will be = [1,0,3,0,1,0,2,1]. For example, count[1] means that the frequency of element 1 is 1. (Assume index starts at 1 and not 0). So, if we…
Fried_Mind
  • 11
  • 4