Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

42
votes
5answers
1k views

How do you declare x and y so that x+=y gives a compilation error and x=x+y not?

I ran into this question in an interview and couldn't come up with a solution. I know the vice versa can be done as shown in What does the "+=" operator do in Java? So the question was ...
36
votes
3answers
15k views

Multiline String Literal in C#

Is there an easy way to create a multiline string literal in C#? Here's what I have now: string query = "SELECT foo, bar" + " FROM table" + " WHERE id = 42"; I know PHP has <<<BLOCK ...
10
votes
5answers
4k views

What “if” is faster - classic or shorthand? [closed]

There are two types of "if" statement in java - classic (if {} else {}) and shorthand (exp ? value1 : value2). Is one faster than another or are they the same? Classic: int x; if (epression) { x ...
9
votes
5answers
339 views

Javascript || operator

I am using a large JS library to perform certain drawing operations in canvas. Reviewing the library code (to make accommodating changes), I have ran into the '||' operator being used in a fashion ...
8
votes
4answers
349 views

Is there a good JS shorthand reference out there?

I'd like to incorporate whatever shorthand techniques there are in my regular coding habits and also be able to read them when I seem them in compacted code. Anybody know of a reference page or ...
6
votes
8answers
329 views

Javascript shorthand way to duplicate strings

I have this code in a function, and want to shorten it - it applies the same style to every item in an array. document.getElementById(divsArray[0]).style.visibility='hidden'; ...
5
votes
7answers
139 views

is this PHP syntax correct?

Hey guys:) Need help. I'm currently studying ZEND framework and came across this in index.php: // Define path to application directory defined('APPLICATION_PATH') || define('APPLICATION_PATH', ...
5
votes
3answers
420 views

PHP: Array access short-hand?

In Javascript, after executing a function I can immediately get the an element of the array returned by the function, like so: myFunc("birds")[0] //gets element zero returned from "myFunc()" This ...
4
votes
1answer
100 views

overloading Ruby's […] Array creation shorthand

I've written a library that extends several base Ruby classes with observing wrappers mostly through method aliasing. However, I've hit a roadblock with the Array instantiation shorthand (e.g. @a = ...
4
votes
3answers
394 views

Add item to an Array in Ruby, even if the variable does not exist

I have the following: foo ||= [] foo << "bar" And I am sure this can be done in one line, I just cannot find how. Important is, that foo may, or may not exist. If it exists it is always an ...
4
votes
5answers
1k views

C# getter and setter shorthand

If my understanding of the internal workings of this line is correct: public int MyInt { get; set; } Then it behind the scenes does this: private int _MyInt { get; set; } Public int MyInt { ...
4
votes
3answers
286 views

Shorthand conditional to define a variable based on the existence of another variable in PHP

Essentially, I'd love to be able to define a variable as one thing unless that thing doesn't exist. I swear that somewhere I saw a shorthand conditional that looked something like this: ...
4
votes
1answer
111 views

write border in shorthand !

i am using border on object. like .box{ border-left:solid 1px #000; border-right:solid 1px #000; border-bottom:solid 1px #000; width:50px; height:50px; } may i write this in ...
3
votes
4answers
109 views

Python Shorthand Operator?

I was researching some information on the topic of trial division, and I came across this symbol in Python: //= I got this from here where the code in the example says: n //= p I can't tell what ...
3
votes
3answers
80 views

JS double exclamation — is there any good reason to use it?

I've been debating this topic with a co-worker for about a week. I'm very much a fan of shorthand code, using ternaries, etc., wherever I can. Lately, he's been picking on me about my use of double ...
3
votes
5answers
757 views

Overview of PHP shorthand

I've been programming in PHP for years now, but I've never learned how to use any shorthand. I come across it from time to time in code and have a hard time reading it, so I'd like to learn the ...
3
votes
6answers
256 views

Javascript Shorthand - What Does the '||' Operator Mean When Used in an Assignment?

I just took a look at this answer, and I noticed the following line of javascript code: hrs = (hrs - 12) || 12; My Question: What does the '||' operator mean when used in an assignment?
3
votes
3answers
535 views

How to convert all color code #XXYYZZ to shorter 3 character version #XYZ of whole css file?

How to convert all color code #XXYYZZ to shorter 3 character version #XYZ of whole css file?
3
votes
3answers
470 views

Using key-value pairs as parameters

Simple. If I use: public void Add(params int[] values) Then I can use this as: Add(1, 2, 3, 4); But now I'm dealing with key-value pairs! I have a KeyValue class to link an integer to a string ...
2
votes
1answer
58 views

Other Ruby Map Shorthand Notation

I am aware of the shorthand for map that looks like: [1, 2, 3, 4].map(&:to_s) > ["1", "2", "3", "4"] I was told this is shorthand for: [1, 2, 3, 4].map{|i| i.to_s} This makes perfect ...
2
votes
4answers
64 views

Common practice?

I've been wondering whether this shorthand, if we may call it that, is an accepted practice of coding among pro PHP devs: foo() && bar(); instead of if( foo() ) { bar(); } While IMO ...
2
votes
2answers
131 views

shorthand http:// as // for script and link tags? anyone see / use this before?

the question is as follows: if you take a look at any site using addthis (the share button)... once you float over the addthis button, and all of the required assets load take a look at the body of ...
2
votes
2answers
110 views

ASP.net shorthand in TextBox

I am trying to do the following: <asp:TextBox ID="txtName" runat="server" Text="<%= Name %>" /> When I execute my page it gets output as <%= Name %> instead of actually doing a ...
2
votes
3answers
69 views

Ultimate CSS shortcut for specifying borders needed

Needing help for some homework. I hope someone can help me out as I have tried all combinations with not much success. I've been asked to simplify the following: border-top: 1px solid #8B8BA2; ...
2
votes
4answers
100 views

is there a way to make this css style simple

border-right:1px solid #8fa6b9; border-bottom:1px solid #8fa6b9; border-left:1px solid #2b5a82; border-top:1px solid #2b5a82; the right is the same as the bottom......
2
votes
9answers
341 views

C# Comparison shorthand

I have this code: if (y == a && y == b && y == c && y == d ...) { ... } Is there some form of shorthand so that I can rewrite it as something like this? ...
2
votes
3answers
2k views

C++/CLI shorthand properties

How does a developer do the equivalent of this in managed c++? : c# code public String SomeValue { get; set; } I've scoured the net and found some solutions, however it is hard to distinguish ...
1
vote
1answer
41 views

Does this shorthand for background removes the other attributes?

If I have: background:#A2A2A2 url('./images/img.png') repeat-x left bottom; and then I use: background:#000000; /* not to confuse with 'background-color' */ Do background-image,background-repeat ...
1
vote
1answer
34 views

Wildcard on CSS shorthands?

I currently have margin-top:25px on something, and I want to change the other 3 attributes using this shorthand: /*Shorthand: <top> <right+left> <bottom>*/ margin: * 10px 50px; ...
1
vote
4answers
82 views

PHP short open tag vs long open tag [closed]

Possible Duplicate: Are PHP short tags acceptable to use? Which is better to use, or considered better practice: <?php or <?. I've always wanted to know. Or is it more of a preference ...
1
vote
5answers
80 views

Apart from it being lazy is there a good reason not use <?= to echo PHP variables? [closed]

Possible Duplicate: What is the difference between the PHP open tags “<?=” and “<?php”/“<?”? Rather than type: <?php echo $foo; ?> I have seen it written <?= $foo; ...
1
vote
5answers
57 views

CSS Hover same for several classes

The following classes had exactly the same css rules applied I wonder if the is a way to set those 3 in one. #menuHolder .l1 a:hover #menuHolder .l2 a:hover #menuHolder .l3 a:hover So far I tried ...
1
vote
3answers
99 views

Shorthand for setting variable values

I am trying to declare 2 variables to the same value ( false ). I tend to do this all over the place ( like, in almost every object I prototype ) var $a= {border:false ,frame:false}; or ...
1
vote
1answer
33 views

How can I default objects?

I want to do the equivalent of... //Nonsensical config.items=[Ext.create('Foo.register.AccountTypeForm',{config:arguments.hidden=true})]; //works ofc, but it looks untidy arguments.hidden=true; ...
1
vote
8answers
249 views

Javascript shorthand

If I can say: var big = (x > 10) ? true : false; instead of: var big; if (x > 10) { big = true; } else { big = false; } how do I make this similarly shorter? var now = new Date ...
1
vote
1answer
90 views

php tool for generating css shorthand

I'm generating a dynamic CSS using PHP. I've got individual values looking like: $padding_top = 10; $padding_bottom = 10; $padding_left = 10; $padding_right = 10; Now, I would like to generate ...
1
vote
5answers
64 views

php shorthand issue

I have this: $color = $status == 1 || $status == 2 ? 'read' : 'unread' || $status == 3 ? 'delete' : 'unread'; However it's wrong. If the $status isn't 3--it still returns 'delete' What is wrong? ...
1
vote
6answers
593 views

PHP Shorthand if/else if - Basic

I've got a piece of existing code that I'm having problems understanding. I generally don't like shorthand because it requires config changes, and is harder for me to read. For this reason I'm not ...
1
vote
4answers
155 views

Is using php shorthands bad? [closed]

Possible Duplicate: Are PHP short tags acceptable to use? I'm just learning php and (been learning for about 6 months) and in a tutorial that I'm going through, it's using php shorthands, ...
1
vote
3answers
166 views

Try/catch oneliner available?

Just as you can convert the following: var t; if(foo == "bar") { t = "a"; } else { t = "b"; } into: t = foo == "bar" ? "a" : "b"; , I was wondering if there is a shorthand / oneline way ...
1
vote
2answers
124 views

Subtracting 1 from a value and storing it in another variable

I vaguely remember running into this problem before, but I'm wondering if this just doesn't work in PHP: echo $counter; // outputs 4 $output = $counter--; echo $output; // outputs 4 If I do ...
1
vote
2answers
109 views

Trying to break apart files to make code easier to read; any shortcuts to avoid excessive indentation?

I'm working on a project where we're nesting somewhat complex classes within other classes, and it has come to the point where breaking these up into separate files may help us maintain some sort of ...
1
vote
3answers
171 views

Conditionally passing arbitrary number of default named arguments to a function

Is it possible to pass arbitrary number of named default arguments to a Python function conditionally ? For eg. there's a function: def func(arg, arg2='', arg3='def') Now logic is that I have a ...
1
vote
1answer
317 views

Get border value with getComputedStyle().getPropertyValue()? (Mozilla, FF)

In some browsers (namely, Firefox) the getComputedStyle().getPropertyValue() doesn't report anything for shorthand CSS, like border. Is there a non-specific-code way of getting these shorthand CSS ...
1
vote
1answer
218 views

list of shorthand css properties

A JavaScript function I made needs to parse all CSS values that don't necessarily have 'one' value attached to them. For example, margin:0 0 4px 12px; is actually four values (margin-top, ...
1
vote
2answers
315 views

CSS Background Property - Shorthand vs Long form

As I understand it, when you use the shorthand property background, the browser first sets all background properties to their default values and then puts in the values that you're declaring. Is it ...
1
vote
1answer
241 views

Is there a shorthand version of HTML available?

I remember reading an article about a shorthand version, or extension, of HTML a few months ago. Its purpose was to make HTML code significantly more concise, by removing end tags, and it may have ...
1
vote
5answers
186 views

Sql Shorthand For Dates

Is there a way to write a query equivalent to select * from log_table where dt >= 'nov-27-2009' and dt < 'nov-28-2009'; but where you could specify only 1 date and say you want the results ...
1
vote
6answers
208 views

PHP what is wrong with the syntax of this code?

I'm building some simple validation rules in php and my IDE (phped) is complaining about the syntax. Can anyone tell me what is wrong with the following? function notBlank($str) { (strlen($str) ...
1
vote
3answers
1k views

Does anyone know anymore Shorthand Action Script 3?

I'm used to using the if else shorthand: var = (if statement) ? 'something' : 'something else'; Are there any other short hand methods available?

1 2