Tagged Questions
The conciseness tag has no wiki summary.
14
votes
4answers
2k views
Is there a shorter way to require a file in the same directory in ruby?
Is there a shorter way to require a file located in the same directory (as the script being executed)?
require File.expand_path(File.dirname(__FILE__) + '/some_other_script')
I read that require ...
9
votes
3answers
260 views
Get the nth item of a generator in Python
Is there a more syntactically concise way of writing the following?
gen = (i for i in xrange(10))
index = 5
for i, v in enumerate(gen):
if i is index:
return v
It seems almost natural ...
9
votes
3answers
192 views
is it possible to reproduce python's string interpolation in ocaml?
In python, one can use printf like formatting with the "%" operator:
"i am %d years old" % 99
or
"%s is %d years old" % ("bob", 101)
Is there a way to get the same concise syntax in Ocaml, for ...
6
votes
0answers
549 views
Techniques for achieving ridiculously concise Clojure code
I've recently been enjoying a couple of recreational "Code Golf" contests where the objective is to solve a problem in the smallest possible number of characters.
Clojure has actually proved to do ...
5
votes
4answers
406 views
Examples of elegant, concise code in Clojure
I'm looking for enlightening examples of concise and elegant code in Clojure - mainly to learn new techniques and improve my own style.
Can you offer any nuggets of pure genius?
4
votes
5answers
135 views
Is there a shorter way of writing `StringPtr ? StringPtr : “null”`?
I have this code:
std::wstringstream outstream;
outstream << (prop.m_pwszOriginalVolumeName
? prop.m_pwszOriginalVolumeName
: L"null") << L";"
...
4
votes
3answers
111 views
How to concisely represent if/else to specify CSS classes in Django templates
In a Django template, I'd like to add CSS classes to a DIV based on certain "conditions", for example:
<div class="pkg-buildinfo
{% if v.release.version == pkg.b.release.version ...
4
votes
3answers
644 views
What's the most concise way to get the inverse of a Java boolean value?
If you have a boolean variable:
boolean myBool = true;
I could get the inverse of this with an if/else clause:
if (myBool == true)
myBool = false;
else
myBool = true;
Is there a more concise ...
3
votes
3answers
104 views
Code Advice - How to make more concise (Javascript/Jquery)
I'm trying to make my code more concise (i.e., less repeated code). I've gotten some advice from my supervisor as to how to make my recent code more concise, but I'm not exactly sure how to do it.
I ...
3
votes
6answers
106 views
Compound argument declaration
To make my code more concise, can I do something like
int f(int const x, y, z), g(int const x, y, z);
to declare functions f and g which each take three int const arguments?
Edit:
Perhaps here is ...
3
votes
1answer
63 views
Get a list of every value for a given key in a set of dictionaries?
How can I write this code more cleanly/concisely?
/// <summary>
/// Creates a set of valid URIs.
/// </summary>
/// <param name="levelVariantURIDicts">A collection ...
3
votes
4answers
142 views
C# list of past DateTimes
I have a method that returns the past x days and it currently does the following:
var dates = new List<DateTime>();
for (int i = 0; i < numDays; i++)
{
...
2
votes
4answers
100 views
Python: Concise / elegant way to reformat a set of text files?
I have written a python script to process a set of ASCII files within a given dir. I wonder if there is a more concise and/or "pythonesque" way to do it, without loosing readability?
Python Code
...
2
votes
7answers
236 views
Concise C# code for gathering several properties with a non-null value into a collection?
A fairly basic problem for a change. Given a class such as this:
public class X
{
public T A;
public T B;
public T C;
...
// (other fields, properties, and methods are not of ...
2
votes
4answers
153 views
SVN Noob: quick summary of how to use it?
[for those not following along at home, this is the sequel to Rolling My Own Version Control ;)]
So i gave in and installed TortoiseSVN (to work with a friend on a project, my personal version ...
2
votes
4answers
245 views
What's the best way to avoid code duplication in these two functions that do the same thing?
Given this form (which contains a submit button):
<form id="review_form">
<input type="submit" id="btn_submit" value="Submit with ajax! (submit button)">
</form>
and this link ...
1
vote
3answers
60 views
Is there a better way to do this if condition
I have this if statement
if (!(@$donnees['mode']['delete'] === true || @$donnees['mode']['display'] === true)){
//doSomething only if mode is not delete nor display
}
i used @ to not get ...
0
votes
1answer
54 views
What about if you've got the same parameter multiple times in String.format?
String hello = "Hello";
String.format("%s %s %s %s %s %s", hello, hello, hello, hello, hello, hello);
hello hello hello hello hello hello
Does the hello variable need to be repeated multiple ...
0
votes
1answer
144 views
Obj C: Checking against an integer in NSUserDefaults
Here's my situation - lets see if any coding geniuses out there can help me out!
My situation is thus:
I have an integer stored in NSUserDefaults by the name of @"scifi1" - it could be one of....say ...
0
votes
1answer
218 views
What's the simplest HTML5 demo app that incorporates a broad sample of available features?
All I know about HTML5 is that it's some type of rebranding of DHTML/Ajax with some new features like local browser databases that apps can use.
What I'm looking for is a demo app that gives a broad ...
0
votes
4answers
209 views
Array to Hash or 2 binary element Array
I'm seeking the most concise way to do this
Given the following Array:
['a','b','c']
how to get this:
{'a'=> 1,'b'=> 2, 'c'=> 3}
and
[['a',1],['b',2],['c',3]]
I have few solutions ...