Tagged Questions
The check tag has no wiki summary.
21
votes
6answers
28k views
C# How can I check if a URL exists/is valid?
I am making a simple program in visual c# 2005 that looks up a stock symbol on Yahoo! Finance, downloads the historical data, and then plots the price history for the specified ticker symbol.
I know ...
14
votes
3answers
135 views
optimize and check table mysql
I have a database used for statistics, with over 2000 tables, each with ~100 millions rows.
I think a few times a week it'd be nice to check the tables to make sure they are healthy, and if not, ...
13
votes
3answers
1k views
Basic unit test and C, how do I get started?
After reading quite some threads here at StackOverflow,
I have come to the conclusion that I should adopt to some form of
test driven development/unit test (or at least explore the area).
And since ...
11
votes
9answers
12k views
nullable types: best way to check for null or zero in c#
i'm working on a project where i find i'm checking for the following in many, many places:
if(item.Rate == 0 || item.Rate == null) { }
more as a curiousity than anything, what's the best way to ...
9
votes
4answers
2k views
Batch script: how to check for admin rights
How do I check if the current batch script has admin rights?
I know how to make it call itself with runas but not how to check for admin rights. The only solutions I've seen are crude hack jobs or ...
9
votes
4answers
9k views
How to check whether STL iterator points at anything?
I want to do something like this:
std::vector<int>::iterator it;
// /cut/ search for something in vector and point iterator at it.
if(!it) //check whether found
do_something();
But ...
9
votes
12answers
11k views
How to quickly check if folder is empty (.NET)?
I have to check, if directory on disk is empty. It means, that it does not contain any folders/files. I know, that there is a simple method. We get array of FileSystemInfo's and check if count of ...
8
votes
6answers
10k views
How to catch check/uncheck event of <input type=“checkbox” /> with jQuery?
The title should be clear
8
votes
8answers
1k views
Checking whether the current thread owns a lock
Suppose I have the following code:
public class SomeClass()
{
private readonly object _lock = new object();
public void SomeMethodA()
{
lock (_lock)
{
SomeHelperMethod();
...
8
votes
2answers
754 views
Is it overkill to run the unit test with Valgrind?
Just some days ago I started looking into a unit test framework called check,
and I intend to run the test on c code under Linux.
Now check and some well designed code and some test code can help ...
8
votes
5answers
4k views
How can I check from Ruby whether a process with a certain pid is running?
The question title says it all. If there is more than one way, please list them. :) I only know of one, but I'm wondering if there is a cleaner, in-Ruby way.
6
votes
1answer
112 views
Checking Java files for == Error's, not limited to Strings
Many of the standard source code checking tools (PMD, FindBugs, Checkstyles) all implement a "String Equality" rule, where the usage of == (or !=) when comparing strings can be detected and reported ...
6
votes
1answer
1k views
iPhone - Detecting if the iDevice has a front camera
Apple recommends not searching for hardware version, but for the specific feature in which you are interested.
So how may I detect if there is a front camera on the device to be able to disable some ...
6
votes
4answers
4k views
jquery check uncheck all checkboxes with a button
I am trying to check/uncheck all checkboxes using jquery. Now by checking/unchecking the parent checkbox all the child checkboxes are getting selected/deselected also with the text of parent checkbox ...
6
votes
5answers
617 views
C#: How to Make it Harder for Hacker/Cracker to Get Around or Bypass the Licensing Check?
First of all, I understand that almost all applications can be cracked (especially written in C#). My question here is to make it a little bit harder to crack.
Suppose that the user has saved the ...
5
votes
2answers
114 views
C Unit Testing Framework
I am new to C programming I have been programming in Java for a few years now.
I am trying to find a framework for unit testing a C program, preferable a cross platform framework.
Ideally the ...
5
votes
4answers
174 views
Checking preconditions in .NET
I'm a fan of the "fail early" strategy and want to check that methods params have correct values for example. In Java I'd use something like Guava:
checkArgument(count > 0, "must be positive: %s", ...
5
votes
4answers
655 views
How can I check in a bash script if my local git repo has changes or not
there are some scripts that do not work correctly if they check for changes.
I tried it like this:
VN=$(git describe --abbrev=7 HEAD 2>/dev/null)
git update-index -q --refresh
...
5
votes
2answers
640 views
T-SQL foreign key check constraint
When you create a foreign key constraint in a table and you create the script in MS SQL Management Studio, it looks like this.
ALTER TABLE T1 WITH CHECK ADD CONSTRAINT FK_T1 FOREIGN KEY(project_id)
...
5
votes
6answers
973 views
How do I check in PHP that I'm in a static context (or not)?
Is there any way I can check if a method is being called statically or on an instantiated object?
Jamie
5
votes
5answers
16k views
How can I check the size of a file in a Windows batch script?
I want to have a batch file which checks what the filesize is of a file.
If it is bigger than %somany% kbytes, it should redirect with GOTO to somewhere else.
Example:
[check for filesize]
IF ...
5
votes
9answers
6k views
How do I check for valid (not dead) links programatically using PHP?
Given a list of urls, I would like to check that each url:
Returns a 200 OK status code
Returns a response within X amount of time
The end goal is a system that is capable of flagging urls as ...
4
votes
3answers
91 views
bound check for iterator in Release mode (c++)
I intentionally made iterator to exceed the size of std::vector like,
for (std::vector <Face>::iterator f = face.begin();
f!=face.end()+5;
++f)
{
// here I try to ...
4
votes
1answer
139 views
On-the-fly Java syntax checking in vim
First and foremost please don't scream "Use an IDE" at me. I have given eclipse a chance and it is... okay but I'm much faster in vim than eclipse.
Basically the one thing that I wish vim could do ...
4
votes
4answers
104 views
Perl shallow syntax check? ie. do not check syntax of imports
How can I perform a "shallow" syntax check on perl files. The standard perl -c is useful but it checks the syntax of imports. This is sometimes nice but not great when you work in a code repository ...
4
votes
6answers
444 views
Null parameter checking in C#
In C#, are there any good reasons (other than a better error message) for adding parameter null checks to every function where null is not a valid value? Obviously, the code that uses s will throw an ...
4
votes
2answers
782 views
Python check if current process is running?
I need to add a function to my python script that checks if the current script is already running. If it is then it will quit, if not it continues running the script. I've looked into methods of doing ...
4
votes
4answers
593 views
PHP: What's the best solution to check a users country?
I'm really new in this, so please could you tell me how this is works, and what's the best way to do it?
Services that give API's
I read/heard that there are a lots of services that gives API's to ...
4
votes
4answers
134 views
What to use to check html links in large project, on Linux?
I have directory with > 1000 .html files, and would like to check all of them for bad links - preferably using console. Any tool you can recommend for such task?
4
votes
11answers
6k views
How to check if String value is Boolean type in Java?
I did a little search on this but couldn't find anything useful.
The point being that if String value is either "true" or "false" the return value should be true. In every other value it should be ...
4
votes
2answers
4k views
Checking whether clearInterval has been called?
Given this code:
bob = setInterval(function, 1000);
clearInterval(bob);
Is there now a way to know if that interval has been cleared?
Currently, I keep track of this myself, by unsetting 'bob', ...
4
votes
2answers
583 views
OCL Syntax Checker
I have been looking for an existing open-source syntax-checker for the Object Constraint Language (OCL). I intend to extend the syntax-checker with additional functionality not present in the OCL ...
3
votes
5answers
73 views
Test if string could be boolean PHP
I'm getting a string from a $_GET and I want to test if it could be a boolean, before I use it for a part of a mysql query. Is there a better way of doing it than:
function checkBool($string){
...
3
votes
1answer
121 views
C checking for signed number representation
The following way of checking for the signed number representation checks for twos complement correctly on my machine, but I dont have ones complement or signed magnitude machines to check it. Would ...
3
votes
1answer
78 views
Order of DESCRIPTION Imports: and NAMESPACE import() in R 2.14.0 package checking
I'm trying to chase down what seems to be a conflict between function names as I check a package. I may eventually ask directly about the problem, but first, I am wondering about three things, none ...
3
votes
2answers
402 views
AS3 How to check if BitmapData is empty
I have a code to erase a masked movieclip. (credits here)
I would like to know how I can check if the whole movieclip is been erased.
So I thought I had to check if the BitmapData is empty, but I ...
3
votes
2answers
90 views
jQuery simplest way to check if an element exists
I aways check for elements with jQuery this way:
var x = $("div.myElement");
if (x.length > 0) {
x.show();
}
But I really don't like that if. Is there any way to do it more simple?
3
votes
1answer
605 views
SQLCMD utility from BAT file - how to return ERRORLEVEL in case of syntax error
How can I get %ERRORLEVEL% from SQLCMD utility when some of .sql files contains syntax error? These files create stored procedures. They don't invoke "raiseerror", but they can conatin syntax error ...
3
votes
4answers
314 views
R: remove columns based on two column's similarity check
Input
row.no column2 column3 column4
1 bb ee up
2 bb ee down
3 bb ee up
4 bb yy down
5 bb zz ...
3
votes
3answers
648 views
Android application must not run on rooted devices
I'm writing an application that must not run on rooted devices. I want to store some secure data and which is possible only on non-rooted devices as nobody can access files in /data/data/package-name.
...
3
votes
9answers
483 views
Java null check why use == instead of .equals()
In Java I am told that when doing a null check one should use == instead of .equals(). What are the reasons for this?
3
votes
3answers
380 views
PHP spell checking tool
Is there such a tool that finds language/spelling errors in code comment and strings in PHP code? for example,
<?php
$myVar = "Hollo World";
//this is a code commont with spelling error
/*this is ...
3
votes
4answers
232 views
How to check if a string is in an array
I basically need a function to check whether a string's characters (each character) is in an array.
My code isn't working so far, but here it is anyway :|
$allowedChars = ...
3
votes
2answers
151 views
Non-graphical linearity estimation
In my previous post, I was looking for correlation ratio (η or η2) routines in R. I was surprised by the fact that no one uses η for linearity checking in the GLM procedures.
Let's start ...
3
votes
2answers
1k views
How does the gcc option -fstack-check exactly work?
My program crashed when I added the option -fstack-check and -fstack-protector. __stack_chk_fail is called in the back trace.
So how could I know where the problem is ? What does -fstack-check ...
3
votes
4answers
267 views
Multiple value checks using 'in' operator (Python)
if 'string1' in line: ...
... works as expected but what if I need to check multiple strings like so:
if 'string1' or 'string2' or 'string3' in line: ...
... doesn't seem to work.
3
votes
3answers
7k views
Can you replace or update an SQL constraint?
I have written the following constraint for a column I've called 'grade':
CONSTRAINT gradeRule CHECK grade IN (‘easy’, ‘moderate’, ‘difficult’),
Is it possible to later update the gradeRule to have ...
3
votes
1answer
308 views
Oracle 10gr2: enforce dates entered are between 9am and 5pm?
I want to enforce that date-times that are entered fall between 9am and 5pm. How do I enforce this with ORACLE CHECK constraints?
2
votes
0answers
36 views
Checkboxselectionmodel is not checked when it freezed(locked) in extjs grid
I have added the checkboxselection model as a column in grid. I have set it locked. checkbox doesn't checked when checking the checkbox.
var checkboxselection = new Ext.grid.CheckboxSelectionModel();
...
2
votes
3answers
64 views
Prime number check ERROR, why?
I wrote a very small C Code to check if a number is a prime... but unfortunately it doesn't fully work.
I know that and how I can make the code more efficient, but that as a matter of fact is not the ...