Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
69 views

Converting `false` into `nil`

When you want to convert a varible v into false when it is nil/false and true otherwise, there is an easy way to do it: !!v But is there an easy way to convert v into nil when it is nil/false and ...
4
votes
4answers
136 views

Java entering an if statement that is false

I'm running into the strangest error in this program, which is confirmed when debugging it. I have the following code (boiled down to highlight the problem, of course): BHFrame.java public class ...
2
votes
2answers
137 views

ReCaptcha always returns false, with no error

I've installed the ReCaptcha, configured my public and private key, and everything is fine until I type any answer on it, no matter if it's good or wrong, it doesn't even respond with the error there ...
2
votes
2answers
78 views

Rails not recognizing true or false

I have something that should be really simple, but it's killing me. l = LineItem.first #<LineItem id: 5, product_id: 1, quantity: 1, price: #<BigDecimal:7f7fdb51a3f8,'0.999E3',9(18)>, ...
2
votes
2answers
114 views

What makes my program work with a delay on windows startup?

My program starts with windows startup, But a background worker is supposed to work instantly after the program is opened. But it starts with a delay and then even returns false signs(it returns if a ...
1
vote
2answers
77 views

.submit() return false causes weird (to me) behavior

What I'm trying to get is to count which checkboxes in article list are selected, and I'm writing selected to "toDel" jquery variable. Then, if "toDel" remains empty, I'd like to stop submiting the ...
1
vote
2answers
33 views

Hiberanate mapping setting lazy = 'false'

In hibernate mapping, I have set the property lazy="false", and this fetches all the child records of the parent. This is being used throughout the application. This creates a performance issue at ...
1
vote
3answers
34 views

Shouldn't returning false prevent jQuery on() from bubbling up?

According to the jQuery docs Returning false from an event handler will automatically call event.stopPropagation() and event.preventDefault(). A false value can also be passed for the handler ...
1
vote
6answers
77 views

IF $a is TRUE and $b is NOT TRUE

Ok, there is a good chance I'm not explaining this correctly but I hope I can make sense. I'm fairly inexperienced with PHP and am trying to wrap my head around how to write this statement. I have ...
1
vote
2answers
185 views

C# false http response

I have a thread that returns a site's http response status, but sometimes my program returns false results. and after a while it gives good results. False result: it takes a big a mount of time ...
1
vote
1answer
57 views

YouTube Connection test - jQuery

I'm loading a YouTube iframe player and would like to provide a fallback flash player if the person's computer can't connect to YouTube from their workplace. Is there a way to check with a jquery ...
0
votes
3answers
61 views

Insert a PHP false into mysql

My MySQL table contains a tinyint(1) value that i use to store a true or false value. I have the following PHP variables: $name = ''; $description = ''; $active = true; Now my SQL query is as ...
0
votes
0answers
38 views

how do I change a label's text on dropdownlist selectedindexchanged without causing a postback?

Please if anyone can help. I have a dropdownlist ddlMonth which has items 1 to 12 and I have a label lblMonthsUsed to calculate depreciation. lblMonthsUsed should display 13 minus whatever month was ...
0
votes
2answers
61 views

PHP setcookie returns false when used with thinkphp framework

setcookie doesn't work when I use with thinkphp framework. just $a = setcookie('a','a'); no path no domain. var_dump($a) returns bool(false); no output before this, and no warning. but when I didn't ...
0
votes
1answer
51 views

Some feed messages return false in graph

I have tried posting to some different friends feeds. Sometimes the message does not show up on feed even if a get a "good" response back with a new graph api ID. 100002842168248_146917358746335 does ...
0
votes
1answer
103 views

Facebook open graph action returns “false”

I'm trying to post an action to open graph but the only response I'm getting is "false". According to the "Creating and Using Actions" portion of the API it appears that I'm doing this correctly. ...
0
votes
0answers
51 views

Zend Framework fails to upload a .mobileprovision, says it “has a false file extension” [closed]

So I'm trying to upload a .mobileprovison to my system. Every time it uploads the error says, "has a false file extension" Is it a .htaccess problem, can Zend handle MobileProvision file? Thanks! ...
0
votes
1answer
64 views

Querying the Graph API for a public status returns false

Using statuses that I've found through the search function in the Graph API, I want to be able to find the likes and comments on the status. Using the Graph API explorer, I've made a call to the ...
0
votes
0answers
11 views

google friend connect

well someone just helped me with a similar problem earlier. I just need help making this functionality show for both users logged in and logged out. It is a google friend connect code: <?php ...
0
votes
4answers
219 views

Return Javascript function within document.write('<a href=“”>')

I have this javascript: document.write('<a HREF="javascript:return validateForm();' + thisform + '.submit();void(0);"'); I also have the following function, referencing a form on my website. ...
0
votes
2answers
107 views

jQuery return false necessary but breaking .each code

I've been having issues with my page in iOS Mobile Safari- the page freezes on orientation change. My function is excecuted on $(window).resize(); which is what Mobile Safari listens to for ...
0
votes
2answers
67 views

SmsMessage.isEmail() always returns false

So, in my app, I respond to incoming sms, and I'd like to be able to respond to SMS sent by an email address, but isEmail() always returns false, therefore getEmailFrom() and getEmailBody() always ...
0
votes
2answers
29 views

jquery submit strange behaviour

why if I put some code with "if" inside a submit function the method (apparently) always returns a true and submits the form? example var test = "test"; ...
-2
votes
1answer
58 views

PHP Function - Is using ! possible to state that this function is false, as in !function('blah')

I am working with a simple function that returns true when checking if a user has an appropriate account type. function userHasType($type) { include $_SERVER['DOCUMENT_ROOT'] . ...
-2
votes
2answers
156 views

simple programs angering anti-virus

Why do simple old programs like this that I've had lying around for years sometimes set off my anti-virus? It picked up the compiled exe for this one and said it might be a gen/dropper or something ...
-2
votes
1answer
35 views

logged in function for both logged in and logged out [closed]

okay this is tricky, i need this to work or be shown for both of those logged in and logged out. But with this code, if set to "true" and "false" either only those logged in or only those logged out ...