Tagged Questions
The conditionals tag has no wiki summary.
9
votes
5answers
6k views
Conditional Operators in Javascript
Is it ok to use conditional operators like a statement like so?
(x == y) ? alert("yo!") : alert("meh!");
Or is it more correct to use it to assign a value like so?
z = (x == y) ? "yo!" : "meh!";
...
7
votes
5answers
373 views
htaccess conditionals
I have setup htpasswd authentication on my live site and it works great, but I don't want to be asked for a password when I am working on the development environment.
In my httpd.conf file I have:
...
7
votes
6answers
3k views
PHP conditionals, brackets needed?
I was just browsing a forum and someone asked about a php file they had found on the web. It has several spots like this in the code:
if ($REMOTE_ADDR == "") $ip = "no ip";
else $ip = ...
4
votes
8answers
200 views
xor with 3 values
I need to do an xor conditional between 3 values, ie i need one of the three values to be true but not more than one and not none.
I thought i could use the xor ^ operator for this but its not ...
3
votes
1answer
66 views
Simplifying logical expressions
NOTE: This is NOT homework.
I want to come up with the right approach to designing the right algorithm to deal with this simple problem.
I have a state (representable with a positive integer) which ...
3
votes
12answers
6k views
1-line IF statements in java
Is it possible to have IF statements without braces in Java, e.g:
if (x == y)
z = x * y;
else
z = y - x;
It's possible in PHP, and I'm not sure if I'm doing something wrong.
Clarification: ...
2
votes
3answers
80 views
evaluating a complex conditional python
show_prev_btn = (len(sessions) > 0 and (sessions[0].pk == \
Session.objects.filter(user=request.user).first().pk))
I have this boolean that I'm calculating. Sessions is a list and if it has 0 ...
2
votes
2answers
173 views
visitor pattern against conditionals?
I don't seem to find this in usage scenarios for the visitor pattern (or maybe I don't get it). It's also not hierarchical.
Let's use an authentication example. A UserAuthenticator authenticates ...
2
votes
9answers
555 views
How can I write my program without so many if statements?
I have the following program so far:
using System;
namespace ParkingTicket
{
class Program
{
static void Main()
{
int speed;
int yrInSchool;
...
1
vote
2answers
86 views
implementing conditionals in shell (&& and ||)
I'm trying to implement the && and || operators of the bash shell for an assignment - in C. For an input like:
a && b && c
my parser makes a linked list with "symbol" and ...
1
vote
2answers
165 views
Convert string value to operator in C#
Im trying to figure out a way to build a conditional dynamically.
In example
var greaterThan = ">";
var a = 1;
var b = 2;
if(a Convert.ToOperator(greaterThan) b) {...}
I did read this post but ...
1
vote
2answers
91 views
Static type checking conditionals
The following is code for the StaticCharme type checker:
I need help defining the method typeConditional(expr, env). It needs to check that all of the predicate expressions evaluate to a Boolean ...
1
vote
3answers
176 views
Errors with Objective-C with Name Strings and Conditionals
To start, I'm very new to Objective-C so please be specific. I've been having the same 2 errors for a while now, I'm making an application in Xcode that allows you to insert your name, then randomly ...
1
vote
2answers
380 views
What is the syntax for conditionals in Solaris 10 Makefiles?
I'm forced to use /usr/ccs/bin/make in Solaris 10 (SunOS 5.10).
The typical gcc syntax for 'ifeq', which can be used to include or exclude text, doesn't work with Solaris make.
I can use sh style if ...
1
vote
3answers
180 views
Peculiar behavior with multiple threads/ volatile variables/ conditionals/loops (Java)
Here's a snippet of a web server that I am currently building...
// ...
threadPool = Executors.newCachedThreadPool();
while (true)
if(this.isOn) {
try { // listen for incoming ...
1
vote
3answers
121 views
Conditionally change the direction of a “for loop”?
Is it possible to conditionally change the direction of a for loop in ActionScript?
Example:
for(if(condition){var x = 0; x<number; x++}else{var x=number; x>0; x--}){
//do something
}
1
vote
1answer
186 views
Fastest/One-liner way to conditionally remove multiple directories on Unix
What is the shortest way I can write:
rm -rfv public/stylesheets public/images public/javascripts
and make it conditional, with something like:
if [ ! -d public/stylesheets ]; then rm -rfv ...
1
vote
5answers
334 views
How to indent long conditionals for 'if' statements?
My question relates to this previous question, but the solutions offered don't address the problem I have outlined below. After a google search I haven't found any code style guidelines that address ...
0
votes
1answer
81 views
Expressionengine conditionals
am having trouble with a conditional in EE
In an events channel, there's a field for excerpt, after_event_excerpt as well as start_date and end_date
I basically want to show the after_event_excerpt ...
0
votes
1answer
77 views
Email with PHP after conditional statement
So, I'm trying to do a very simple thing - send an email using PHP. I've looked through other queries on stack and none of them involve a conditional statement, so I wanted to check and see if I ...
0
votes
1answer
36 views
How to filter all selected options?
I have these 5 options from pull down menues:
<select name="image_style">
<select name="image_background">
<select name="image_activity">
<select name="image_merchandise">
...
0
votes
4answers
110 views
Where can I read about conditionals done with ? and : [closed]
Possible Duplicate:
Reference - What does this symbol mean in PHP?
I've been doing conditionals with if/else or a year or so now. Looking at some new code, I'm seeing a conditional that ...
0
votes
3answers
121 views
PHP & Conditional
I was searching the net for a random password generator and I come across this code
<?php
function generatePassword($length=9, $strength=0) {
$vowels = 'aeuy';
$consonants = ...
0
votes
11answers
329 views
How do I turn a conditional chain into faster less ugly code?
I have 9 different grammars. One of these will be loaded depending on what the first line of txt is on the file it is parsing.
I was thinking about deriving the lexer/parser spawning into sep. ...