Questions tagged [status]

A status is a summary of the current state of a process, an application, a function or an object, or a response code about the execution of a request or a function (e.g., return code or error code). For status bar, use the tag 'statusbar'. For http-status, use tag 'http-status-codes'

A status is a summary of the current state of a process, an application, a function or an object. It can also be a response code related to the execution of a request or a function, typically a return code, or an error code.

Disambiguation:

  • Do not use for question related status bars, but use instead.
  • For HTTP requests, prefer or the tag http-status-code-xxx where xxx is a numeric response code.

External references:

  • Exit status on Wikipedia for status of a process execution
1447 questions
24
votes
2 answers

wait(null) and wait(&status) C language and Status

What is the difference between wait(null) and wait(&status) in c system programming? And what is the content of the pointer status ?
user3260388
  • 313
  • 1
  • 4
  • 10
24
votes
9 answers

iOS7 UIScrollView show offset content below status bar

I'm developing my app to work with iOS7. I have a UINavigationController I'm pushing a UIViewController that has a ScrollView inside it. Inside the scrollView I have a tableView. Is it possible to achieve that when I scroll the tableView inside…
user958880
  • 487
  • 1
  • 7
  • 18
23
votes
6 answers

How to find whether MySQL is installed in Red Hat?

I am currently using Red Hat linux. I just want to find out whether MySQL is installed in that system. If yes where is it located? can anyone help please...
satheesh.droid
  • 29,947
  • 10
  • 34
  • 34
23
votes
6 answers

Mandrill "reject_reason": "invalid-sender"

I'm trying to send emails using mandrill email service but I get the following error Full Response [ { "email": "someemail@somedomain.com", "status": "rejected", "_id": "b814c2974594466cba9c904c54dca6c6", …
S M Azam
  • 343
  • 1
  • 2
  • 5
22
votes
12 answers

How to know MySQL replication status using a select query?

Is it possible to get replication status from any system database table? Using which I can identify whether the replication is up or down. I need to to know whether the SLAVE_IO_RUNNING and SLAVE_SQL_RUNNING = YES from a system table.
MySQL DBA
  • 5,692
  • 21
  • 54
  • 71
22
votes
5 answers

Magento: Filter products by Status

I'm having some serious Magento issues here. As expected the following: $products = Mage::getModel('catalog/category')->load($category_id) ->getProductCollection() ->addAttributeToSelect('*') ->addAttributeToFilter('status', array('eq' => 1)); Will…
Tristar Web Design
  • 765
  • 1
  • 5
  • 11
20
votes
4 answers

How can you tell if a trigger is enabled in PostgreSQL?

My googling-fu is failing me. How to know if a PostgreSQL trigger is disabled or not?
Hao
  • 8,047
  • 18
  • 63
  • 92
20
votes
4 answers

c# check printer status

in my application (Windows 7, VS2010) i have to decrement a credit counter after successfully printing an image. Anyway, before starting the entire process, i'd like to know about printer status in order to alert the user on paper out, paper jam and…
lorenzoff
  • 1,120
  • 3
  • 15
  • 32
20
votes
2 answers

How to get notification authorization status in swift 3?

How can I check UNUserNotificationCenter for current authorization status in iOS 11? I've been looking for a while and found some code but it's not in swift 3 and some of functions were deprecated in iOS 10. Can anyone help?
andre
  • 773
  • 1
  • 6
  • 16
20
votes
2 answers

Redmine, can't see new Issue Status

I added a new status to Redmine, but I can't see it in the dropdown list, even when manager is logged in. What can be wrong? Thanks
Alex
  • 715
  • 1
  • 6
  • 10
20
votes
4 answers

Django-way for building a "News Feed" / "Status update" / "Activity Stream"

I'd like to create a reusable Django app that handles status updates of the Users. Much like facebook's "news feed". Use cases includes, for example: A Professor can create an Assignment due to an specific date and every student can see on the news…
Tiago
  • 9,457
  • 5
  • 39
  • 35
20
votes
3 answers

See exact divergence/commits between local and remote Git repo

Setup: 3 git repos - on github, local and on staging server. I develop locally, push it to github and staging server pulls. I don't work nor commit changes on staging server, but I must have done so long time ago. Because now I get the following…
Uzbekjon
  • 11,655
  • 3
  • 37
  • 54
20
votes
5 answers

HTTP status code for "client software update required" - what to use?

Which HTTP status code I need to return to indicate "client software update required"? For example, the server changed the format of the data it used to serve, and older clients won't be able to work with this, so the client must upgrade to use the…
antonio
  • 401
  • 3
  • 10
18
votes
3 answers

res.status() vs. res.statusCode

I would like to know if these two different approach is it identical in expressjs? res.statusCode = 500; return res.json({ status: "error" }); or return res.status(500).json({ status: "error" });
Code Worm
  • 313
  • 1
  • 4
  • 16
17
votes
2 answers

ruby at_exit exit status

Can i determine selves process exit status in at_exit block? at_exit do if this_process_status.success? print 'Success' else print 'Failure' end end
tig
  • 25,841
  • 10
  • 64
  • 96
1 2
3
96 97