The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
5answers
154 views

Checking to make sure argv[1] is an integer c++

for my program I have to make sure the user only inputs a positive INTEGER. for example if the user inputted 12hi it should not run the program and print to std error. I am not quite sure how to ...
2
votes
5answers
60 views

Compare object type

I don't know how to perform type checking on newEntry, I want to make sure that it is of type MyTable (without creating an object of MyTable). public static boolean add(String table, Object newEntry) ...
-2
votes
2answers
36 views

Checking multiple values for a variable

original = raw_input('Enter a word:') if len(original) > 0 and original.isalpha(): word = original.lower() first = str(word)[0] print first if str(first) == "a" or "e" or "i" or ...
0
votes
0answers
26 views

Hibernate - How to recover a clean session after using session.save()

Why is my session still dirty if I use evict after saving a new object? session.isDirty(); // = false session.save(newObject); session.evict(newObject); session.isDirty(); // = true I have an edit ...
0
votes
2answers
81 views

Search PHP Array from results of SQL

I currently have an array in php that stores product names, normally 5 - 10. I would like to create something where the results of a SQL query is matched against the array to make sure they are all ...
0
votes
3answers
149 views

understanding how isdigit() works in C

I am attempting to check whether certain variables read in from a file are integers are not, and if they aren't ignore them and go on with the printing of an error message. So I am using isdigit() to ...
0
votes
2answers
130 views

c++ checking all characters in array [closed]

I'm trying to check all the positions in the array and only print to file only if the character is NOT a space, '\n' (EOL), U, or S. All other letters or numbers should be written to the file. The " ...
1
vote
7answers
76 views

Checking for null at initialization

I set a string with a method that can either return any string or null. I want the string to be "" whenever it's null. So i use: String mString = getMyString(); mString = mString==null ? "" : ...
0
votes
1answer
128 views

Checking if the data input already exists in the file [closed]

I had deleted my first post about this code because i had no questions included with it.. so here's the edited version of it.. What is the best method I can use if the Student Number inputted by the ...
3
votes
3answers
74 views

Check if required fileds are selected in a selects “row”

I have multiple selects in a form, and I need to check with jQuery that at least all required fields (required="true") are selected. Something like this: <select class="check" name="first"> ...
0
votes
2answers
240 views

How checked checkbox can change div's z-index?

I have a span with paypal button. I must make this paypal button avialable for pressing only after user confirms TOS. For this i think to lay over the span with the paypal button another div with ...
1
vote
2answers
139 views

how to uncheck a checkbox if there are checked more than 3 checkboxes

I have this form: <form name ='vote' action='' method='POST'> while ($row = mysql_fetch_array($result)){ <input type='checkbox' name='things[]' value='".$row['name_song']."' ...
0
votes
2answers
661 views

Checking Password Code

Problem Description: Some Websites impose certain rules for passwords. Write a method that checks whether a string is a valid password. Suppose the password rule is as follows: • A password must ...
4
votes
3answers
217 views

Is using Python `isinstance` ever right?

I've got a 2D array of different blocks, all inheriting from Block. I want to check if the block that I clicked on is a Dirt type block, like this: clickedblock = getClickedBlock() if ...
0
votes
1answer
249 views

How do I access objects in a UITableViewCell in a custom method?

Edit: This post is kinda long so the end question is copied here: So obviously it is not checking the cell I am clicking, it is checking a new cell that it is creating. How would I go about ...
1
vote
3answers
458 views

How to validate a email and password using Java Mail API?

I'm using Java Mail API PasswordAuthentication valid = new PasswordAuthentication(txtEmail.getText(), txtPassword.getText()); if (valid != ...
0
votes
3answers
71 views

How do I check an unknown amount of inputs java and stop checking at the end of a line

This is my first question. I am a second year computer science student and I'm having some trouble reading several inputs correctly. I'm creating a board game that accepts a line of commands. This ...
0
votes
0answers
87 views

Check if facebook user voted already

I have built a Facebook app. its a contest app and i allow them to recommend different non-profits to be voted on. but they have to like my fan-page first not allow my app. my question is how do i ...
0
votes
0answers
11 views

Capistrano recipe for a maintenance window?

I was thinking it'd be useful for capistrano to connect to pingdom via its api and pause site checking while a deploy is taking place. Does anything like this exist yet?
0
votes
2answers
35 views

Fields completion verify

I have a form with some fields on it: folderNameLabel folderTitle folderDescription folderCategory Before the user will press OK, I want to check if all that fields are not =="". I wanted to make a ...
2
votes
1answer
252 views

How can I safely check is node empty or not? (Symfony 2 Crawler)

When I try to take some nonexistent content from page I catch this error: The current node list is empty. 500 Internal Server Error - InvalidArgumentException How can I safely check exists this ...
0
votes
1answer
94 views

What are good JavaScript routines for checking user data input? [closed]

I've written my first JavaScript program, which is a calc based on the ones shown here such as Wind Chill: http://www.jsmadeeasy.com/javascripts/calculators/list_test.asp No error input checking by ...
5
votes
6answers
1k views

Syntax Checking in Java

I am currently working on a program that has an embedded text editor. The users are supposed to type java code in the editor. The code typed into the editor is then made into a string. I just want ...
2
votes
9answers
271 views

PHP Debug Echo's

Just wondering - When debuging PHP - how do you like to output the test data to see whats going on? I've been noticing that alot of my PHP echo testing is screwing with my CSS. Does anyone have a ...
0
votes
1answer
11 views

Need help create a generic function to check for value

Anyone have any ideas on how to create a generic function to do this in a much shorter fashion? if (($item['Quantity'] > 9) && ($item['Quantity'] < 20)) { $bogo_item = 1; } else if ...
3
votes
4answers
944 views

PHP checkdate variants

I found a php function checkdate() , but strangely enough it only seems to accept data in format of int $month , int $day , int $year. However I am passing the date as a string (example "2012-06-13") ...
-3
votes
2answers
66 views

Matching nulls(0) in int [c++]

i have a problem with checking on 0, i trying to get numbers from file(and i get it) but if is 0 then said me > 0 maybe its not found!(0 | 0) 0 maybe its not found!(1 | 1) 0 maybe its not found!(2 | ...
5
votes
3answers
2k views

automatic code-style-guide test for C++ [duplicate]

Possible Duplicate: A free tool to check C/C++ source code against a set of coding standards? I am starting a c++ project involving several people I have no direct access to. We agreed on a ...
1
vote
0answers
36 views

Is there any type of tool/class/package/anything in Java that will allow for the checking of system process locks on files that are being used?

I'm writing a program for a school project, and this is a required facet of it. In case I wasn't clear enough, I'm looking for something along the lines of what Process Explorer can do, but in Java. ...
0
votes
0answers
19 views

Checking NULL for 2 dimensional pointer

Void TestIt(double **val) { if(val == NULL) // Is this correct OR if(*val == NULL) // Is this correct. }
0
votes
1answer
234 views

checking if for loop variable is at last index of string (not variable == string[index_Integer])

I feel like I am doing something wrong with the for loop and the user input Whenever I do the for loop, I do believe that the local variable in the for loop has only one entry in the list ...
0
votes
1answer
453 views

Entity Framework code first connection status checking

new day, new problem :) I am trying to produce a little code, that checks, wheather my SQL server is connectable. And: if so, then it should check if the database is existing. Let me explain it via ...
6
votes
2answers
614 views

C++11 Feature Checking

How do I check for presence of individual C++0x/C++11 language features? I know Clang has a nice system for this. What about GCC, Visual Studio or Boost? I guess one way to do it is to detect the ...
2
votes
2answers
207 views

Checking Pixels in Matlab

I have an image with 3 colors in matlab which value 0, 128, and 255. for example: 255 255 255 255 128 255 0 255 255 128 0 255 255 0 255 255 128 255 255 0 255 128 255 ...
-1
votes
2answers
111 views

Writing an error checker [closed]

Well, it's my first time doing this, though. What I want to do is to write a simple error checker (most known as a parser), and by that I mean for example if you do: if(x ==== y) it tells you there ...
0
votes
1answer
257 views

GCC Compile-time checking of constant function inputs

I want to use gcc to do some compile-time checking on function inputs if the compiler knows that they are constants. I have a solution that very almost works, and as far as I can see, it should work. ...
0
votes
3answers
159 views

PHP: If current date is after page date - remove page?

I was wondering if there is a way for you to use PHP to remove content according to the date? I have a page which lists events within a date range and I want it to remove Events that have passed. ...
5
votes
7answers
452 views

Is there way to check the type of a preprocessor symbol value in C/C++

Parts of my code depend on the value of a preprocessor symbol: int a() { #if SDK_VERSION >= 3 return 1; #else return 2; #endif } The comparison depends of the value of SDK_VERSION. It is ...
1
vote
0answers
210 views

create arcsde service, “The ArcSDE administrator user (sde) must have DBADM authority to install or upgrade ArcSDE for DB2.”

arcsde10 is installed in windows7 pc as a pcA, db2 9.5 is installed in windows server 2003 pc as pcb. in pcb,there is a "sde" user in "db2admin","db2user" and "administrator" group. in pcA, execute ...
1
vote
2answers
240 views

columns equal to something in mysql

I am interested in how to write mysql query like this => if some column includes multiple exactly same data, how to check if that column value equal to something . for example I have table with column ...
0
votes
2answers
82 views

Python: Is there a way for checking a certain pattern in a list?

is there a way to check for a certain pattern such that when is use the function the elements in the list fulfilling the pattern can be printed...e.g. i have a list abc=['adams, brian','smith, ...
0
votes
1answer
586 views

How to get “check in” informations with Facebook Place id?

According to Facebook Graph API documentation, it is possible to get detailed informations about users check in. You need an access token and "user_checkin" permissions ...
-1
votes
1answer
52 views

checking whether FB connect upgrade is fixed?

I received the following notice on Friday: As part of our continued efforts to migrate all apps to OAuth 2.0, we opted in all apps using the new JavaScript SDK to OAuth 2.0 this afternoon at ...
0
votes
1answer
145 views

Is type checking for references in a template class less strict?

The following is allowd in C++ through promotion: int ivalue = true; bool bvalue = 1; Thats okay. And this is not allowed, through type-checking: int& ivalue = false; bool& bvalue = 0; ...
1
vote
2answers
1k views

Windows check for solutions does nothing after BSOD

I have BSODs relatively often on my new computer. I remember, that my old computed was checking for solutions for BSODs and showing me some reports about them, for example, that some driver is ...
2
votes
6answers
329 views

Best approach of word censoring - C# 4.0

For my custom made chat screen i am using the code below for checking censored words. But i wonder can this code performance improved. Thank you. if (srMessageTemp.IndexOf(" censored1 ") != -1) ...
2
votes
1answer
329 views

How to check if object is empty? [duplicate]

Possible Duplicate: is object empty? So let's var someObject = { }; how can i detect that object hasnt any properties and methods?
1
vote
6answers
368 views

How to parse strings safely?

We know that using string concatenation to form SQL queries renders a program vulnerable to SQL injection. I usually get around that by using parameter features provided by the API of whatever ...
-2
votes
2answers
195 views

help required using PyObject_IsInstance

My application embeds python by dynamically loading it. I need to obtain the values from the dictionary of the script being executed. pFnPyDict_GetItemString *pFGetItemString = NULL; ...
0
votes
3answers
150 views

Rails / MYSQL QUERY returns value even with no record?

I have a bit of code to check if a record exists in the database, but my problem is that the variable keeps returning a result even with no records .. @page_of_book = Page.where({:number => @page, ...

1 2