Tagged Questions
The conditions tag has no wiki summary.
7
votes
4answers
787 views
Jquery - exclude click event based on condition?
I'm trying to set conditions on a jquery event.
I have an input element and a div.
I want to detect a click anywhere on the page and to execute that method but only if the click is not on the input ...
6
votes
3answers
8k views
Rails ActiveRecord conditions
Is there a way to create a condition like this?
@products = Product.find(:all,
:limit => 5,
:conditions => { :products => { :locale => 'en', :id NOT '1' }, :tags => { :name => ...
5
votes
1answer
267 views
What are alternatives to JVM exceptions for reporting and handling errors in clojure code?
Background
The book The Joy of Clojure explains how JVM exceptions are a closed system and suggests that there may be better alternatives for reporting and handling errors in clojure. From my ...
5
votes
8answers
325 views
if($ext == ('zip' || 'png')) { echo “Is it possible ?” }
I'm currently writing sort of a download manager and I was asking myself if that was possible:
if($ext == ('zip' || 'png')) { echo "Is it possible ?" }
It returns true everytime, so I guess it's ...
5
votes
7answers
483 views
How does the processor handle conditions?
So, SUPER low-level what does an IF() look like, how is it handled by an x86 processor?
4
votes
5answers
643 views
For loops and multiple conditions
In C++, it's possible to say:
for (int i = 0; i < 100 && found == false; i++) {
if (items[i] == "the one I'm looking for")
found = true;
}
so you don't need to use the "break" ...
4
votes
2answers
108 views
searching for closest number in a rails app
Give two parameters which correspond to two attributes on an object how can one find 20 records in a database that are closest to those two numbers.
The parameters you have are x, and y. The object ...
4
votes
1answer
124 views
Installing a condition handler in Common Lisp
The HTTP library Drakma on CLISP generates an error USOCKET:UNSUPPORTED due to a bug in Drakma+CLISP. However, it turns out that the CONTINUE restart seems to work fine. Therefore, I spent some time ...
4
votes
3answers
247 views
Are there any advantages to a nested If/Else instead of Else If's?
I came across this unique practice in a browser detection script.
if (/MSIE/.test(_3)) {
IE = true;
} else {
if (/AppleWebKit/.test(_3)) {
Safari = true;
} else {
if ...
4
votes
4answers
294 views
Remove conditions in a C program for speedup
I have a number crunching C program which involves a main loop with two conditionals:
for (i = 0; i < N; i++) {
for (j = 0; j < N; j++) {
for (k = 0; k < N; k++) {
if (k == i || k == ...
3
votes
1answer
72 views
XPATH select random number of nodes AND have multiple conditions
I need to select a random number of product details from XML and have multiple conditions.
The below selects 8 products, but they are not random - how to make this random?
$randomProducts = ...
3
votes
5answers
82 views
PHP if OR is the second part checked on true?
I know this must be a simple question, but I know that in PHP in a statement like this
if ($a && $b) { do something }
if $a is false PHP doesn't even check $b
Well is the same thing true ...
3
votes
2answers
104 views
Threading and Conditions
I'm new to threading and I don't really understand how to use conditions. At the moment, I have a thread class like this:
class MusicThread(threading.Thread):
def __init__(self, song):
...
3
votes
5answers
254 views
Jquery: How to find a link in a page based on its href attribute?
I am trying to find the first link of my page which url fit to "AAA" (example).
I first try to get the links with this href:
$('a[href$="AAA"]')
Then selec the first one:
...
3
votes
2answers
1k views
Rails ActiveRecord: Is a combined :include and :conditions query possible?
Imagine I have wiki Articles, with many Revisions. I'd like to do a query with ActiveRecord through the database, which only returns those Articles which have Revisions which are updated in the past ...
3
votes
1answer
2k views
Adding find condition to all Active Record Models in Rails
Is there anyway to add a find condition to all Active record models?
that is I would like this query
ExampleModel.find :all, :conditions=> ["status = ?", "active"]
to behave the same way as
...
3
votes
2answers
165 views
What is meant by “framing” another's site?
I've been given a copy of a proposed site agreement in which one of the conditions is:
...each of us may for the Term:
...frame the other's site
What is meant by "framing"? I assume it might ...
2
votes
1answer
112 views
How to install features depending on the value of property
I have a registry key that can be equal to one of two values: special value or null. And two features.
When my registry key equals to special value the installer has to install first feature. if ...
2
votes
1answer
77 views
Select rows which depend on conditions on n other rows - mysql
I'm not sure how to correctly articulate the title, so please correct it if giving the wrong idea.
Here's an example table named table1:
id name1 number1 name2 number2
... ... ... ...
2
votes
2answers
116 views
LINQ WHERE statement/ignore conditions
I need to ignore some or all conditions in WHERE statement if parameter is null or empty
F.E:
I have simple LINQ query
var query=
from x in context.a
where x.p == param1 && x.i == param2
...
2
votes
3answers
70 views
Jquery condition is not working
I am working on fixing a website which is coded by someone else. Codes are really messy so I am afraid I can't post it all here but I believe I provided enough information for you to see what could be ...
2
votes
1answer
127 views
Rails 2.3.5 Problem Building Conditions Array dynamically when using in (?)
Rails 2.3.5
I've looked at a number of other questions relating to building conditions dynamically for an ActiveRecord find.
I'm aware there are some great gems out there like search logic and that ...
2
votes
3answers
70 views
How better this can be written? PHP code
I am trying to generate final string to show users based on some conditions.
$flag=0;
$var='Please ';
if($user->is_details_updated == 'N' && $user->needs_to_update_details == "Y")
{
...
2
votes
2answers
99 views
Specifying conditions on a relationship in Ruby on Rails
I have the following
has_many :administrators, :class_name => "User", :conditions => "role_id = 4"
and it works fine, but instead of using the foreign key
"role_id = 4"
I would prefer to ...
2
votes
2answers
232 views
Newbie! my app breaks down in if statement: NSCFString stringValue]: unrecognized selector sent to instance
I am following the Stanford CS193P class and I am trying to do assignment 2. I have now for hours stared at the same error message:
-[NSCFString stringValue]: unrecognized selector sent to instance ...
2
votes
2answers
139 views
ActiveRecord Mixing Condition + Better Way to Write This
Is there a better way to write this
I have A Condition which previous Look Very clean and easy to understand
like
Account.first.websites.last.users.find(:all,
:conditions => ...
2
votes
2answers
184 views
creating a new variable using two columns when they satisfy certain conditions using R
I am providing this example data to get my question across.
aid=c(1,2,3,4,5,6,7,8,9,10)
foson=c(0,1,2,0,6,9,0,0,3,0)
fosof=c(0,0,2,3,0,0,0,5,0,0)
data=data.frame(aid,foson,fosof)
Now, I need to ...
2
votes
5answers
376 views
if no row return then it's false when using php with mysql
I noticed that a lot of tutorial instructions often have this code:
$sql="SELECT * from table";
$num=mysql_num_rows();
if ($num > 0)
{
do something
}
Why do they have to use that condition "if ...
2
votes
2answers
96 views
MySQL condition
I'm still pretty new with MySQL and I don't know the best way to do this.
I have a table with incremented values, and if the values exceed a certain limit, I'd like to know. So lets say I have this ...
2
votes
2answers
1k views
SWI-Prolog conditional statements
I'm trying to write a function that will test to see if the word hello is contained in a list. If it is contained, i don't want it to say "true", i want it to say : "yes, the word hello is contained ...
2
votes
6answers
617 views
Condition order in while loop
First of all, before I begin, I am using VC++ 2008 professional, running an Intel core2 on windows OS. I also know that this code will NEVER be executed on anything other than a core2/corei7 running ...
1
vote
1answer
53 views
CakePHP - find conditions with associations
I have an issue with a cakePHP find conditions. I have a Club model, a User model and a Post model :
Club hasMany Post
Club HABTM User
Basically, my clubs_users table also contains additional ...
1
vote
3answers
42 views
Css behavior on different browsers
I'm trying to fix something in css of my project but the behavior of that button is different on IE8. So this is the code:
.virtualS{
background: -moz-linear-gradient(top, #FF734C, #FF0000);
...
1
vote
2answers
37 views
multiple conditions Linq extended
I need to consider multiple conditions to get value.
i mean if all conditions true that must give me a filtered answer.
Or one of them is true,rest are false...
so i need to write all possibilities??
...
1
vote
1answer
74 views
PHP MYSQL opposite of 'AND' clause
I'm trying to return information from a MYSQL database using PHP with the following conditions:
mysql_query("SELECT name.name, type.type FROM style, name, type WHERE style.name=name.id AND ...
1
vote
3answers
47 views
How do I rewrite a POST request from a form to a user-friendly URL with htaccess?
As the topic - How do I rewrite a POST request from a form to a user-friendly URL with htaccess?
The scenario:
I have a webpage that uses a search-form. When I submit that form using method="post" ...
1
vote
1answer
88 views
WiX: Enable/disable button before changing focus
I just started working on an installer my company is creating and we are using WiX. During installation, we ask for the installer's name and email address. The "Next" button is disabled until both ...
1
vote
1answer
41 views
Enabling/Disabling Conditions WIX
Having an issue with a multiple condition statement such as:
<Condition Action="enable"><![CDATA[(WCF_USE_PROXY = 1 AND WCF_PROXY_URL <> "" AND WCF_PROXY_USERNAME <> "" AND ...
1
vote
5answers
92 views
foreach loop with condition in c#
I have this foreach loop in c#, since i am new to c#, i was wondering if this can be written shorter (have the condition part of the loop
foreach (PagerPageFilterInformation filter in ...
1
vote
1answer
61 views
Python: Tracing the Execution of a For Loop
I am attempting to trace the execution of a piece of code that contains a for loop with two if conditionals. But I need help understanding exactly how for loops are executed in python.
Please ...
1
vote
1answer
32 views
CakePHP How to create find conditions from multi level array?
I was wondering if there was a simple way to convert an array like this, which is passed from my form
Array
(
[Uk3] => Array
(
[code] => BOARD
...
1
vote
1answer
132 views
Typoscript: how to select a set of subpages or how to make a condition based on page id
Currently I'm working with PIDinRootline. This works fine.
[PIDinRootline=8,9]
//do something
[end]
[PIDinRootline=6,7,11]
//do something
[end]
Now I want to address a set of subpages ...
1
vote
1answer
111 views
Select[nested_list, condition] in Mathematica
Let's say I have a list:
list=Table[{RandomReal[],RandomReal[],RandomReal[]}, {i,1,100}];
I'd like to make a new list based on conditions. Now I've seen that I should use the Select function, but I ...
1
vote
8answers
78 views
Regular expressions : How to make a conditional regex
I have the following conditions for my regex :
When the string is not empty it should containt the word "internal"
So in other words :
"<link linktype='internal' ...
1
vote
1answer
261 views
Smarty 3: if, mixed conditions & operators
well... can you tell me why this works:
{if !$conta|contains:"word1" && ($product->id_category_default < 388 || $product->id_category_default > 475)}
and this not:
{if ...
1
vote
2answers
1k views
How do I suppress blank lines in a Microsoft Word 2007 mail merge?
I'm setting up a mail merge file that reads from a CSV file. In the CSV file, there are ~20 Boolean fields that produce the body of the Word mail merge file. The problem is that if the first 19 ...
1
vote
3answers
108 views
elseif and 5000 lines of code. Does the elseif make a difference is processing time
Hello to everyone on this WONDERFUL site!!!!
I am in the process of coding a php script and it is expected to have over 5000 lines of code when finished. Each 100 lines or so will be broken up by ...
1
vote
1answer
191 views
Decimal to Binary Conversion
I was writing a function for conversion between Decimal and Binary base number systems and here's my original code:
void binary(int number)
{
vector<int> binary;
while (number == true)
...
1
vote
1answer
120 views
Ruby on Rails: Get all entities that have zero occurences on a particular association and condition
I am using Rails 2.3.8
I have two models that represent bikes and rentals on bikes respectively. One bike can have many rentals but at most one "acive" rental. I distinguish the active rentals with a ...
1
vote
6answers
433 views
Perl Switch Statement
Is there any way to run a block of code if non of the case blocks was matched? For instance:
swith($a) {
case // {}
case // {}
...
# DO SOMETHIG IF NONE OF THE ABOVE CASES WAS MACHED
}
...