Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
511 views

Validity of the code

Consider the following code : void populate(int *arr) { for(int j=0;j<4;++j) arr[j]=0; } int main() { int array[2][2]; populate(&array[0][0]); } There was a discussion ...
5
votes
3answers
168 views

Is it necessary to put INPUT elements in a DIV element?

Why this give error in W3c html validation ? I'm using HTML 4.01 Strict doctype. <form method="get" action="/search" id="search"> <input type="text" value="search" maxlength="80" ...
4
votes
3answers
122 views

Is RETURN from constructor necessary when creating object with new

if I have function like this: function Apple(){ this.color = "green"; return this; } When creating object like this: var my_obj = new Apple(); is that line return this; necessary and/or ...
3
votes
3answers
144 views

is an xml attribute without value valid?

i want to make a xml attribute without any value, which simply has one meaning when its exists or not exists. Is that valide?
3
votes
1answer
142 views

Is it correct that sometimes I get angle brackets in “From” field of an e-mail message?

My software is working with incoming e-mail from the one and only particular sender (let it be SantaClaus@hetnet.nl). According to RFC-2616 section 14 "From" header MAY be used for logging ...
2
votes
2answers
84 views

What is the fastest combination of compression + encoding + checking + serialization of an array?

I need a combination of functions that does: array serialization(no object, small - 3-7 key-value pairs of strings, no references) data validity check of above(Is it better for the hash to be inside ...
2
votes
1answer
16 views

Model domain when a lot of objects have a validity (start-end) that define the relationship between objects

A lot of our objects have relations that are defined with a start - endDate. This makes it hard to model our domain. for example: a person belongs to a serie, and a serie belongs to an organisation, ...
2
votes
4answers
83 views

validity plugin jquery problem?

I'm using the validity plugin to validate a form. It's working fine but is it possible to execute a callback function if the validity function succeeded like the following ...
2
votes
1answer
98 views

check if stored procedure is valid

I have a stored procedure (sproc A) which is syntactically correct. So when I hit "run" on its create or alter statement, it is saved into the database. However, sproc A has a call to another stored ...
2
votes
1answer
340 views

Android application certificate validity

Is it possible to change the validity of a certificate? key-a:has validity of 2 years. apk-a:signed with key-a. apk-b:signed with ? which has 25 years validity. apk-a and apk-b are the same ...
2
votes
3answers
270 views

Keeping std::list iterators valid through insertion

Note: This is not a question whether I should "use list or deque". It's a question about the validity of iterators in the face of insert(). This may be a simple question and I'm just too dense to ...
2
votes
2answers
147 views

Invalid HWND for parent

Is it possible to have a valid HWND with a valid parent, and then the parent become invalid without the child becoming invalid?
1
vote
1answer
44 views

Vimeo ID validity with jQuery

I know how to get the id of a video, but I want to check its validity too. If a video ID is good, there's the alert with "good ID", but when the url is wrong it fails. I've tried try-catch, fail, ...
1
vote
4answers
132 views

Is this a valid JSON response?

G'day gurus, I'm calling the REST APIs of an enterprise application that shall remain nameless, and they return JSON such as the following: throw 'allowIllegalResourceCall is false.'; { "data": ...
1
vote
1answer
420 views

Need To check the website contains ssl certificate or not if yes then what is the expire date of the certificate using php scripts

I need to check with the php scripts to given website contains ssl certificate or not if it contains then what is the expire date of certificate. Is there any way to get this information for any ...
1
vote
1answer
931 views

Maintaining a session over multiple pages

I am having trouble designing a way to maintain a session with a cookie across multiple pages. I am doing something very similar to this tutorial. I check the password and username from a splash ...
1
vote
1answer
87 views

Verifying remote program integrity/validity as part of WCF service security

I have an application running on remote systems. The remote systems are an embedded computer built into a kiosk. As a result, they are somewhat "untrusted," in that the physical security for them is ...
0
votes
1answer
25 views

How to skip jQuery.validity validation for selected input buttons?

I'm using jQuery.validity to validate PHP form inputs. I need to skip validation when user clicked selected input button (eg: Logout button) Sample code used for validation: ...
0
votes
1answer
55 views

Validate date in custom format with jQuery.validity

Im using jQuery.validity plugin to validate PHP form. I need to validate whether the input date format is in dd-MMM-yyyy, but the plugin default is mm/dd/yyyy. When I use this code, ...
0
votes
1answer
66 views

Validity control and password comparison in a form in Java

I am trying to add validity control in a form like no empty fields are allowed email address has to be in the format name@domain date has to be in the format dd.mm.yyyy to compare passwords Also, ...
0
votes
1answer
35 views

How to set my app valid only for a particular time in iphone?

I want my iphone app to be valid only for a particular time period.This have to be done by provisioning profile and not through app store.Pls give me some suggestions.
0
votes
1answer
97 views

When uploading large files in chunks, and each chunk is CRC-validated, should I CRC-validate the whole file on completion?

I have written a small program and server to upload large files over HTTP with CRC validation and resume-functionality. It works pretty well as it is, but I am wondering if I should reconsider some of ...
-2
votes
3answers
102 views

var2 = (Qu3)obj; — is this assignment statement valid? [closed]

Given the following declarations: class Qu3 { } Object obj = null; Qu3 var2 = new Qu3(); Is this assignment statement valid or not? Why? var2 = (Qu3)obj;