status

Online Status Report of a FTP Server?

Hello Everyone, I want to make a status report of when my FTP server is on and when its off. HTML is the language which I prefer to use. I have never used HTML before, and I need it urgently due to a large request of when my ftp server is off and when its on. Can someone help me with this status report? Thanks, Kevin ...

Is there a memcache "catalog"?

Hi there we're using memcache in several of our Rails applications. Now I was wondering: Is there a way to get a list of all objects stored in memcache including the amount of data each value occupies? E.g.: key | memory(Bytes) | % ----------------------------------- foo_key | 15013 | 0.3 bar_key | 2201 ...

How do I make my delete query FULLY work?

My delete.php is sending the selected item to the db as dead as it should, but the blog is still staying on the page that its deleted from. What am I doing wrong? this is my query: on the delete.php: $MyBlog = $_GET['id']; $query = "UPDATE `Blogs` SET `status` = 'dead' WHERE `id` = '".$MyBlog."'"; Like I said, this is marking id dea...

Powershell status information

What is the prescribed method for display status or progress information to a user from a Powershell script? For example, "Connecting to database..." Normally I'd print to STDERR. Powershell has a Write-Progress cmdlet, but that's for a progress bar. ...

Programmatically change gmail status via OAuth or Authsub

I would like my application to programmatically update my user's gmail/google talk status on their behalf but I dont want to store their password because of the privacy risk Does anyone know if/how it is possible to use Oauth or some other form of authentication that does not require password storage. The Google data api docs I have s...

How do I list just the files that would be commited?

Hello, Is there any way to get a list of files that will be committed when I type the following? git commit -m "my changes" git status lists too much. I could strip out all the words, but I'd rather not. And I don't want to be told about untracked files. I've tried git ls-files -md but that doesn't show files that have been re...

phone call status in WebOS

how to know the phone call status or any event for handling end call in WebOS ...

Status "S" in Subversion

At some point all files in my working copy got marked with "S" symbol as shown below: $ svn st M S AclController.php S InstallationController.php S CustomerController.php S RedirController.php S IndexController.php S LoginController.php S OrderController.php S ProductController.php ...

Identifying the download status of a file in web application

Hi, I am developing a web application in .Net 2005 in C#. Here there is a provision that allows the user to download the file from our server which will be mostly .doc files. So I am using Response.TransmitFile and content-disposition header method to write the file to the client. My current requirement is to identify the status of the...

Android GPS status

Hi, how can i check the current status of the GPS receiver? I already checked the LocationListener onStatusChanged method but somehow it seems that is not working, or just the wrong possibility. So basically i just need to know if the gps icon at the top of the screen is blinking (no actual fix) or solid (fix is available) thx! ...

Updating facebook status with message from a Javascript variable

Hey all, quick question. Is there an easy way to let users update their status on Facebook with a message I have in a JavaScript variable? I know there's a URL you can use to share a link, which looks like: <a href="http://www.facebook.com/sharer.php?u=www.fthisclass.com/jshoregen.html&amp;t=title"&gt;testlink </a> That doesn't fill ...

Update facebook status with C#

Hi all, My desktop application should update my facebook status. Is there an API that allows to update the status with a login and pwd ? Thanks in advance for your answer ...

How to check web application status written in Flash/Flex?

I have a typical web application that communicates in the following way: SWF file makes service calls to Java services (Remote object, over BlazeDS on Tomcat), which in turn communicates to database. How do I implement a status check service (hosted on another domain) that will check if the ENTIRE app is up and running? Ideally, I'd m...

FileUpload Status Indicator ASP.Net C#

There are other similar posts, but they all want a progress bar. I don't care. I will probably end up buying Ajax Uploader, but I would like to know if there is a way to just let the user know if a file is in the process of being uploaded. I have tried an Ajax ProgressIndicator but it doesn't work...The file upload part works, but the ...

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

Hi, 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 feed that the assignment was created, with a short description, the date that it's...

On android system.I want to get the status of running apps,how to do?

On android system.I want to get the status of running apps,how to do? ex. foreground / background! ...

in zsh, how do I do a conditional on the exit status of a program?

I wnat to do something like: if [[ git status &> /dev/null ]]; then echo "is a git repo"; else echo "is not a git repo"; fi except I don't know how to do checking on the exit status. How do I fix this? Thanks ...

iphone facebook user's friends status updates

I want to retrieve the status data posted/published by friends of a user. I wrote the following code, but only get the user's own status updates. Could someone please help to tell me what's wrong with my code? Thanks! NSString *fql = [NSString stringWithFormat:@"select uid,message from status where uid in (select uid2 from friend where ...

PHP - Show status of a form that is processing

I have a form that performs 3 separate tasks when submitted. When the form is submitted, a lightbox/thickbox window appears to show the status. The page posts to itself, and as it completes a task, it writes to the database containing a 'status' field. All this is working fine. I need the current status to appear/refresh in the lightb...

using SMO.Agent to retrieve Sql Job execution status - security issue

So ive got a C# program that fires off Sql Agent jobs using the SMO interfaces. It looks something like: Server ssis_server = new Server( new ServerConnection(SERVER_NAME, SERVER_USERNAME, SERVER_PASSWORD) ); var agent = ssis_server.JobServer; var ssis_job = agent.Jobs[job_name]; var current_status = ssis_job.Curren...