The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
120 views

more efficiency way to write if-conditionals with repetitive variable

I'm looking for a more efficiency way to write those kind of if-conditionals: a = huge_term >= b ? huge_term : c or (a = huge_term) >= b ? a : a = c The second one is quite shorter but the ...
-1
votes
0answers
41 views

Including multiple jquery script in same page [closed]

I want to include jquery version 2 for IE9 and above and all other browsers and jquery 1.9 for IE8 and below. I have written some conditionals which appear to do so but I am wondering is it the right ...
0
votes
2answers
90 views

Loops and conditionals in TASM Assembly 8086 DOS

I want to run this loop with a conditional at the end in this fashion mov cx, 10 mov di, 0 loop: ... inc di dec cx cmp di, 5 jne loop ... jnz loop but it seems like it won't work unless ...
0
votes
0answers
62 views

Webform conditional adding callbacks for eXtra options

I am using and loving the Webform 7.x-4.0-alpha6 module. It's conditional component features work great but I need to add some extra functionality. The default options, which I am trying to add to, ...
1
vote
1answer
11 views

Safari not applying subpage class

In order to have different styling for different pages on my site, I have a .subpage class that I apply with a conditional to any page that's not the index.php file. The conditional is like this: ...
0
votes
1answer
62 views

Check String for values other than those allowed. Java

I wrote a program that asks the use to input a string of 3 characters, which could be a combination of [a, b, v, ^]; Here's what I have so far: do { System.out.print("Enter a two variable ...
0
votes
2answers
182 views

How display Multiplication Table in columns in java. No use extra java funcions, just loops and conditionals

I would like to display the values in three columns and three rows. This is my code: public class MultiplicationTable { public static void main(String[] args) { for(int ...
0
votes
0answers
29 views

Buddypress -> bbPress -> If Conditionals?

I have buddypress with bbpress installed on my site and i want to hide posts from certain forums from non-logged in users. I've tried using this code but it's not working: <?php if ( ...
0
votes
1answer
40 views

about conditionals in javascript [closed]

I have some (I think they can be few stupid) questions...but they're questions, and I'd like post here, and debate it. It's about conditionals. I'm developing in javascript, and I've some functions, ...
0
votes
2answers
75 views

How to check whether a subset of dictionary items exists in another list of dictionaries?

I have a list of dictionaries (called "primer names") that holds the following information: {'part number': 1, 'notes': 'Fw Gibson primer on pEM113 to extract CmR resistance and pSC101 backbone and ...
-1
votes
2answers
157 views

Import css file if chrome

How do I import an css file for Chrome (or webkit). I want to do something like this for ie6: <!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="ie6.css" /> ...
0
votes
5answers
61 views

PHP Post and Conditionals Error

Ok, so my site has a link where you can search up users and go to their profile. You type a username and on the next page, it tells you if the username exists or not, and gives you a link. I think I ...
0
votes
1answer
41 views

How not to save to csv when array is empty

I'm parsing through a website and i'm looking for potentially many million rows of content. However, csv/excel/ods doesn't allow for more than a million rows. That is why I'm trying to use a ...
1
vote
1answer
79 views

conditional variable in object

Just tried to do something like this and it wont work, wondering if there is anyway? var obj = { intiger:5, conditional:(something) ? "something" : "nothing", string:"nothing important" ...
1
vote
5answers
64 views

conditionals and arrays in C (beginner) [duplicate]

Possible Duplicate: How do I properly compare strings in C? Although I've been sitting on this topic for months, I'm relatively new to C. I'm trying to write a simple question/response ...
0
votes
1answer
49 views

Php conditionals in wordpress

Can someone please explain to me the use of alternative syntax I often come across when looking at php usage in word press. Take conditionals for example: I expect to see: if(10==10) echo 'this is ...
2
votes
1answer
96 views

sh scripting: using conditionals, git post-update script

I am writing a post-update script for a git repository and am having a bit of trouble. For whatever reason the if statement is throwing an error: hooks/post-update: line 5: [master: command not ...
0
votes
1answer
171 views

Knockout JS Templates makes the UI “flash” when edited

I have a big problem with using Knockout JS. In my view model I have a field, called Method, that is actually an other view model. This view model can be one of three different things (it is mapped ...
0
votes
1answer
100 views

XSLT nested conditionals - how to do this

I'm quite new to xslt I have the following xslt snippet (pseudo'ed for clarity): <xsl:for-each select="fields/field"> <xsl:if test="field=someThing"> <div> <!--some ...
0
votes
4answers
746 views

Rails/Ruby one-liner unless zero/nil?

Is there a way to make this situation more compact in rails views? Eg I have haml = object.count unless object.count ==0 I sort of don't like that has I'm repeating the function there, I would ...
0
votes
2answers
157 views

Highly conditional Rails 3 views

I've got a Rails 3 application where I'm using quite a few conditional statements to change the design of the page. What is the best practice for keeping the logic out of the view for having such ...
0
votes
1answer
119 views

Expressionengine prev next display only 1 category

Hi everyone thank u for reading this First of all sorry for my explanations, my tech english is not perfect Well i have a channel named “blog” connect to different categories inside a group ...
1
vote
1answer
75 views

Counting conditional jumps

I have kind of a noob'ish question. I am totally new to Linux. I would like to count the number of conditional jumps (i.e. the number of if()s, while()s etc taken by a program) taken by a program. ...
0
votes
2answers
56 views

Is there a way to conditonally #define a symbol in a dependency?

I am working in a solution where there is a specific library in the solution that turns on or off functionality via #ifdef's. I have another project in the solution that uses it as a dependency. In ...
0
votes
1answer
76 views

jade inheritance vs conditionals

Is it better to use jade's inheritance rather that using conditionals and includes? The thing is that by using inheritance, jade can be used as if it was logic-less (Like mustache) right?
0
votes
1answer
136 views

Adding to a Set in a conditional in Scala

I've written a visitor pattern and I'm matching an overridden subclass. I want to add the variable to the set value of the object and then return the modified object. How can I do that syntactically? ...
1
vote
1answer
124 views

Alternatives to Conditionals

I was reflecting on Rich Hickey's talk, Simple Made Easy, when I got to the "What's in your Toolkit?" slide. There is a list of contrasts between complexity and simplicity, this one piqued my ...
2
votes
2answers
302 views

Perl: Using a conditional with an array

So I'll start of by saying I'm not very familiar with Perl. I have a project that I've been handed at work that requires quite a bit of Perl work. Most of it makes sense but I'm stuck on a very simple ...
0
votes
2answers
1k views

ExpressionEngine If no categories results, show nothing

I am using ExpressionEngine 2.2.1 And am trying to show a section of my page based on categories. If no entries have a certain category selected, I would like to hide the entire section. For example, ...
0
votes
2answers
116 views

Pyschools Topic 3 Q 9

I'm new to programming and I was trying out this question on Pyschools. Can anyone help me? Write a function that converts the time to 24hr format. Examples >>> time24hr('12:34am') ...
1
vote
2answers
176 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 ...
0
votes
1answer
1k 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 ...
3
votes
1answer
193 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 ...
1
vote
2answers
1k 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 ...
8
votes
8answers
1k 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 ...
1
vote
2answers
102 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 ...
0
votes
1answer
167 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 ...
1
vote
3answers
271 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 ...
0
votes
1answer
48 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"> ...
2
votes
3answers
193 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
2k 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
266 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
202 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 }
0
votes
4answers
226 views

Where can I read about conditionals done with ? and : [duplicate]

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 ...
7
votes
5answers
720 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: ...
1
vote
1answer
407 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 ...
0
votes
3answers
292 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 = ...
2
votes
2answers
297 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
5answers
867 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
11answers
381 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. ...

1 2