Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
2k views

TFS Check-in Policy - Best Practices

Are there any best practices for enforcing a TFS check-in policy? Are there any good guides on how to implement various types of policies as well as their pros and cons? Things I'd particularly like ...
7
votes
7answers
194 views

Enforcing Password Requirements

I want to check if the user has successfully met the following requirements: The password has at least 8 characters Consists of one capital & one lowercase letter How would I do this? I am ...
6
votes
2answers
170 views

how to find out syntax error of a single line javascript code?

Say, there is a text box. User written the following code: document.getElementById("id").; It will surely cause some syntax error. There is also a "RUN" button. my requirement is : if user click ...
5
votes
6answers
100 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 ...
5
votes
11answers
767 views

How can I check if a number (double type) stored as a string is a valid double number in C++?

I'm having an issue with a program I'm working on in C++. I am asking the user to input a valid number. I take it in as a string because the particular assignment I'm doing, it makes it easier in the ...
4
votes
6answers
731 views

Haskell way to do error checking of multiple items with abort

What is a good way for a Haskell function to check a number of different conditions and return an error message on a failure? In Python or similar language, it would be straightforward: if ...
3
votes
4answers
222 views

Checking Version of Python Interpreter Upon Execution of Script With Invalid Syntax

I have a Python script that uses Python version 2.6 syntax (Except error as value:) which version 2.5 complains about. So in my script I have included some code to check for the Python interpreter ...
3
votes
4answers
1k views

how to check if there is a division by zero in c

#include<stdio.h> void function(int); int main() { int x; printf("Enter x:"); scanf("%d", &x); function(x); return 0; } void function(int x) { float fx; fx=10/x; ...
3
votes
3answers
126 views

Checking arguments in numerical python code

I find myself writing the same argument checking code all the time for number-crunching: def myfun(a, b): if a < 0: raise ValueError('a cannot be < 0 (was a=%s)' % a) # more ...
3
votes
3answers
2k views

Proxy Check in python

I have written a script in python that uses cookies and POST/GET. I also included proxy support in my script. However, when one enters a dead proxy proxy, the script crashes. Is there any way to check ...
2
votes
6answers
157 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
3answers
248 views

Parentheses pairing ({}[]()<>) problem. Python

I want to be able to pair up all parentheses in a string, if they aren't paired then then they get their index number and False. It seems like it is repeating some values over and over, i.e cl == ...
2
votes
1answer
111 views

Intellij IDEA and mvp4g APT annotation checking

Was anyone able to configure annotation checking for mvp4g in their project? For eclipse there is this plugin ( http://code.google.com/p/mvp4g/wiki/APT ) so I'm just wondering if it'll work with ...
2
votes
2answers
1k views

TeXlipse spell-check configuration

I'm turning kind of desperate looking for a way to enable spell checking in TeXlipse. Of the application itself I am very fond. I've tried things I found here and on other forums, and on the user ...
2
votes
7answers
127 views

More efficient way to write this small bit of Python code?

I've been going through a beginning Python book, and I've been trying to write a small block of code that will take users input, check to make sure it can be converted to an int and check if it's ...
2
votes
2answers
256 views

Java self-checking program (self-checksuming)

I have to do a little java self-checking programm (self-checksum). here my code sample public class tamper { public static int checksum_self () throws Exception { File file = new ...
2
votes
2answers
393 views

jQuery - check if all mandatory fields in a section have been answered

I need to run a check on a lightbox popUp to see if all fields that are not optional have been input. HTML <div id="manualAddressEntry01" class="container popUp large hidden shadow02 ...
2
votes
2answers
154 views

Why does a ArrayIndexOutOfBoundsException happen here?

I got the following code in my Android-App: Event[] events = retrieveEvents(); if (events != null && events.length>0) { int eventNr = getFromUserInput(); eventNr = eventNr % ...
2
votes
5answers
192 views

Javascript check if a variable is the window

do you know a good way to check if a variable is the window object in javascript? I tried with: var variable=window; Object.prototype.toString.call(variable); In Firefox it returns "[object ...
2
votes
4answers
7k views

How to check if a string only contains alphanumeric characters in objective C?

I'm working on a small iphone project and i would need to check if the userName entered only contains alphanumerical characters? (A-Z, a-z, 0-9. How would i go about checking it?
2
votes
6answers
351 views

Binary Searching

I want to understand more about binary searching, cause I don't really understand. Binary search requires a precondition that an array is sorted. I got that right? It seems like a method should check ...
2
votes
3answers
1k views

Type Conversions in Ruby: The “Right” Way?

I am trying to decide if a string is a number in Ruby. This is my code whatAmI = "32.3a22" puts "This is always false " + String(whatAmI.is_a?(Fixnum)); isNum = false; begin Float(whatAmI) isNum ...
2
votes
4answers
1k views

PHP Script Version Checking/Notification

How can I check the version of my script against an online file to see if it's the latest version? For clarification, I'm talking about a script I wrote, not the version of PHP. I'd like to ...
1
vote
2answers
26 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 ...
1
vote
2answers
147 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 ...
1
vote
1answer
91 views

How to check if object is empty? [closed]

Possible Duplicate: is object empty? So let's var someObject = { }; how can i detect that object hasnt any properties and methods?
1
vote
6answers
147 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 ...
1
vote
4answers
100 views

Is it more or less effiicent to perform a check before performing a Replace in C#?

This is an almost academic question but I'm curiouis as to its answer. Suppose you have a loop that performs a routine replace on every row in a dataset. Let's say there's 10,000 such rows. Is it ...
1
vote
2answers
32 views

checking programmatically that a remote websites 'shows' a particular html element

I want to require my free users to add a linkback to my website. But, I want to check it programmatically that indeed they added the linkback html element I provided and was not hidden by some sort of ...
1
vote
1answer
161 views

Problem with checking for an image file in Django

I'm from a PHP background but have been given a Django project to administer, I've brought it over to a new server running Django 1.2.5 (Python2.6) and got it all running as it was on the old one. I ...
1
vote
2answers
56 views

Which solutions are available for meta configuration or configuration verification?

I want to develop a description language which enables developers to declare which possible configuration settings are valid for their software artifact. For example, you could declare that a port ...
1
vote
1answer
221 views

How to check if IO.popen succeeded?

How can I check if creation of an IO object with IO.popen succeeded? For example the following fails, but an IO object is still created: io = IO.popen("foobar", "w+") io.inspect Is there any way ...
1
vote
3answers
141 views

Testing for String or other Data Type array using templates in C++

I am creating an array template class that needs to be able to handle as broad an input as possible. It will work no problem with int, float, char but I would like to be able to test for strings and ...
1
vote
1answer
178 views

hook between downloading and installing application from android market

I need to make an antivirus type thing... for which i want that after downloading and before installing the application i want to check it... how can that be possible...
1
vote
3answers
331 views

reflection type checking?

I'd like to find a way to dynamically check if string is parse-able into a given type. in other words, public boolean canBeParsed(String type, String val) { // use reflect to check if val can be ...
1
vote
2answers
280 views

Does Intel C++ compiler have bounds checking?

I was wondering, does Intel C++ compiler have bounds checking available? I am working with tons of code evolving for ten years now, and in desperate need for debugging and refactoring. I need any help ...
1
vote
1answer
36 views

ActionScript Parameter Filtering

i'm setting up a custom class that accepts some Number parameters, but i need to limit those parameters and would like to know the best way of doing so. currently, i'm simply calling if statements, ...
1
vote
4answers
171 views

Know if a variable is a native object in javascript

is there a way to know if a variable passed into a function is a native object? I mean, i have a function that requires only native objects as arguments, for every other type of variable it throws an ...
1
vote
2answers
2k views

how to add UITableViewCellAccessoryCheckmark in the middle of the cell in iphone?

In my iPhone application I have used (UITableViewCellAccessoryCheckmark) to add the checkmarks in the cells, - it is added to the cell at the right side of the cell. I want the checkmarks to display ...
1
vote
2answers
562 views

Ping servers and check the result from C program?

Hi This is My last question. Now my new requirement is to ping some set of servers and check if they are replying or not. I am trying my way of system("ping xxx.xx.xx.xx >out.txt"); And then ...
1
vote
2answers
836 views

How to prevent a stack overflow by monitoring the stack size?

Many C/C++/Fortran and other programmers would have come across "stack overflow" errors. My question is, Is there a tool, a program or a simple code snippet, that allow us to monitor or check the size ...
0
votes
0answers
37 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 ...
0
votes
2answers
68 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
50 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 ...
0
votes
1answer
70 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; ...
0
votes
0answers
16 views

model checking tools

I know Findbugs use Syntax and dataflow techniques to find defects in java source code. And Bandera use model checking to verify source code.But as I know Bandera has been abandoned. Is there other ...
0
votes
0answers
37 views

Advanced Check if Game Center is Available?

I heard there is more to the check than just checking if the Game Center API is available. Is there some advanced check or a specific way to check if Game Center is available on a device. I googled it ...
0
votes
3answers
54 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, ...
0
votes
2answers
112 views

Java & Python Type Checking

What really is the difference in the way that Java and Python implement type checking? and what about how they implement abstract data types
0
votes
4answers
78 views

sql insertion and checking entering value not empty

I have a insertion statement that will insert the values from text boxes. It working fine now i want to check the text box must not be empty by using sql query . and my insertion statement is like ...

1 2