0
votes
3answers
24 views
Complex date find and inject
I am building a financial reporting app with Ruby on Rails. In the app I have monthly financial statement objects (with 'revenue' as an attribute). For any single financial statement, I want show (1) …
0
votes
4answers
52 views
gdb backtrace and pthread_cond_wait()
This is on a Redhat EL5 machine w/ a 2.6.18-164.2.1.el5 x86_64 kernel using gcc 4.1.2 and gdb 7.0.
When I run my application with gdb and break in while it's running, several of my threads show the …
1
vote
3answers
45 views
If condition issue in shell
Hi all,
I'm trying to detect whether a string holds a dash but nothing seems to work for me (I'm new to shell).
if [ "$m" -eq "-" ]
then
echo "has dash"
else
echo "has no dash"
fi
0
votes
4answers
149 views
python: conditionally execute code in a “with” block
I guess this is kinda abusing the feature, but I'm still curious whether it could be done -
I want to do something like:
with conditional(a):
print 1
so that the print 1 part is executed only …
1
vote
2answers
57 views
Rails virtual attribute search or sql combined column search
Hello All!
I have a user model with attributes 'first' and 'last'
So for example
User.first.first #=> "Charlie"
User.first.last #=> "Brown"
This User model also has a virtual attribute 'full_name'
…
0
votes
1answer
49 views
wix: create a SQL database conditionally, based on radio button state
hi all,I have a wix installation task as
I need to create Database If it is not created before...
for this I put a property named CreateDatabase and In UI I bind it to radiobuttongroup
and Database …
0
votes
4answers
99 views
SWI Prolog - conditional NOT?
Hi,
I'm trying to make a prolog function. The funtion reads in a sentance, and then tries to extract a key word. If a key word is found, it prints a message. I want it to also print a message if no …
2
votes
2answers
53 views
Do all parts of a SQL SERVER expression using ‘OR’ get evaluated?
Given:
WHERE (@Id Is NULL OR @Id = Table.Id)
If @Id is null: the expression evaluates to true. Does the second part @Id = Table.Id still get considered? or is it sufficient that the expression …
0
votes
4answers
93 views
Loop Until Condition Reached, iPhone
Hi there,
I have a problem here...
After a button is pressed I want a loop to run until a condition is reached:
- (IBAction)buttonclick1 ...
if ((value2ForIf - valueForIf) >= 3) { ...
I would …
1
vote
4answers
95 views
Checking condition inside a loop
Hi,
If "flag" is true I have to perform step no. 1 otherwise skip it. Is there a way out to skip this unnecessary repetitive check within the loop. (As the value of flag is not changing while the …
0
votes
3answers
58 views
Is there a way to condition a CSS styling to execute only on IE quirks mode?
I want to write a cross-browser widget, to integrate both to IE standard and quirks mode pages (FF is easy of course).
Since I want to write the styling only once I would like to condition some …
0
votes
0answers
79 views
WIX ServiceInstall - Using comboBox to conditionally install service
Hi All,
I have created a WIX setup script to allow the install of a Windows Service.
I would like to give the user the ability to choose whether they would like to install under one of the standard …
1
vote
1answer
245 views
Ant (1.6.5) - How to set two properties in one <condition> or <if>
I am trying to assign two different strings to two different variables dependent on two booleans in Ant.
Pseudocode (ish):
if(condition)
if(property1 == null)
property2 = string1;
…
0
votes
1answer
39 views
Rails Condition Statement Issue
Hi
I have no idea why I am having problems with something so simple but this condition statement is just not working.
@battalion = Battalion.find(params[:id])
@soldier = …
2
votes
4answers
274 views
Assembly language je jump function
Hello everyone! I am trying to find online the usage of the assembly language function "je". I read that je means jump if equal and that is exactly what I want. What is the actual usage of this …
