Code-Readability is how easy it is to understand a piece of code. Whether it be reading someones code, or writing your own.
1
vote
0answers
22 views
Avoid empty interfaces and classes vs. easy code and readability
I am working on a hobby-project of mine and am in a bit of a dead-end. Let me explain the situation and how I came to my dead end
I am trying to create a complex questionnaire system to help my ...
1
vote
2answers
54 views
why use javascript callbacks when cleaner syntax is available?
I'm trying to learn some node. So far, so good. But, being pretty new to javascript and I don't really get the point of using callbacks when a cleaner and more readable (at least to me) syntax is ...
-7
votes
1answer
24 views
hello to read the source code. like jinja2 or scrapy [closed]
I am a new program develop. I find it so hard to read the other's source code.
all my tries only end up with fail and nothing more.
is there any advise or something else should I konw,
anyway thanks.
...
0
votes
1answer
33 views
Does any style guide prefer < over > for readability?
For coding a relational expression, do any authoritative standards or style guides or field studies recommend less-than over greater-than?
For example, prefer (0 <= x && x < 1) to (x ...
1
vote
3answers
76 views
Switch statement into while loop or while loop into case blocks?
I'm refactoring some code I wrote and I have to decide if I wanna put a switch statement into a while loop or repeat the while loop into each case blocks. The two different ways are something like ...
22
votes
9answers
524 views
Python list comprehension - want to avoid repeated evaluation
I have a list comprehension which approximates to:
[f(x) for x in l if f(x)]
Where l is a list and f(x) is an expensive function which returns a list.
I want to avoid evaluating f(x) twice for ...
16
votes
1answer
333 views
How to cleanly keep below 80-char width with long strings?
I'm attempting to keep my code to 80 chars or less nowadays as I think it looks more aesthetically pleasing, for the most part. Sometimes, though, the code ends up looking worse if I have to put line ...
-2
votes
3answers
62 views
Is it okay to use break with labels in javascript?
Is there any benefit of doing so and can it lead to readability concerns?
2
votes
2answers
72 views
Is it better to declare variables used out of “for loop”? [duplicate]
I've used a lot of For loops like this one:
for(int i =0; i < size; i++)
{
int temp = array[i]; //temp is just used in this loop
//...(do somthing for temp)
}
But is this one ...
9
votes
3answers
242 views
C++11 range-based for and map : readability [duplicate]
The new range-based for loops really improve readability and are really easy to use. However, consider the following :
map<Foo,Bar> FooAndAssociatedBars;
for (auto& FooAndAssociatedBar : ...
6
votes
2answers
112 views
Optimising treelike control structure
I have to create reports based on the user input. User answer a question, and then depending on the answer I go left or right in a treelike structure, and ask a new question. Some nodes will have the ...
4
votes
3answers
123 views
Are there other ways to deconstruct option types in OCaml?
OCaml's option type is really useful in cases where you have functions that might not return anything. But when I use this in many places, I find it cumbersome to handle the Some case and the None ...
0
votes
2answers
71 views
Dynamic typing and legacy codebase maintainability [closed]
If I take Python or Ruby as an example - these languages have implicit dynamic typing. This makes it easy to rapidly develop a new application with less lines of code compared to say, C++ or Java, ...
-2
votes
4answers
64 views
Long c# file breakdown [closed]
I have a Window Form App project. At the moment all of my code is in
Form1.cs file which is the default file. Now I have about 1300 lines
of code in this single file. I want to break down this one ...
1
vote
1answer
77 views
Scipy Sparse Row/Column Dot Products
What is the readable and efficient way to compute the dot product between two columns or rows of a sparse matrix using scipy? Let's say that we want to take the dot product of two vectors x and y, two ...
0
votes
6answers
73 views
for loop with double condition
I'm looking for a loop construct like for i in list where i < n. I would like to replace this mess:
for i in list:
if i < n:
#logic here
Is there something more compact and more ...
23
votes
3answers
997 views
Is using java Map.containsKey() redundant when using map.get()
I have been wondering for some time whether it is allowable within best practice to refrain from using the containsKey() method on java.util.Map and instead do a null check on the result from get().
...
0
votes
0answers
19 views
Eclipse SDK row pitch
I have a weird issue with my teammate, as he adds a newline after any Line of Code he writes, claiming he's improving readability.
I and other team-members disagree on that point, howsoever he's ...
3
votes
3answers
103 views
Is there a more readable way of making a long chain of && statements?
Suppose I have a long, complex list of conditions, which must be true in order for an if statement to run.
if(this == that && foo != bar && foo != that && pins != needles ...
0
votes
1answer
150 views
Knockout.js: how to enhance the readability of Javascript part [closed]
There is no doubt that Knockout.js is a very useful tool, which will save you from a lot of Javascript(Jquery) binding hassle, which will reduce your team's bug ratio concerning this part.
But ...
2
votes
3answers
93 views
how to decide on a bool operators usage, performance issues vs readability [closed]
Having even more than two options to choose from, leads me to question, which one to choose, if the result / outcome is same.
in .NET C# the following conditions are asking same question using ...
2
votes
2answers
49 views
Static and public positionning
I am working with Apache log4j (http://logging.apache.org/log4j/2.x/) and I realized that in their implementation they always declared their function like this:
static
public
Logger ...
1
vote
1answer
88 views
How do I write/format HTML with RDFa to be easily human-readable in source?
Adding RDFa is quite fun, but tends to make my source almost impossible to read, (even when the editor has decent syntax highlighting.) For instance:
<div id="me" prefix="foaf: ...
2
votes
1answer
84 views
Way to refactor javascript code [closed]
I am developing a sencha application from past 3 months.
Application sources contain several JS files say 20 approx with each file containing 800 - 1000 lines of code on an average. The code is ...
0
votes
3answers
100 views
Explicit member method reference in Java
Based on the following example :
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.SwingConstants;
public class ExempleJFrame extends JFrame {
public ExempleJFrame() {
...
0
votes
1answer
123 views
OpenCMIS/DotCMIS: I have CmisFolder and filename, how to get CmisDocument?
I want to get the CmisDocument of this CMIS remote file: server1/dir1/file1.
I already have the CmisFolder for server1/dir1.
I also have the filename "file1" as a string.
Any elegant way to get the ...
0
votes
1answer
48 views
Proper way to arrange the jquery event binding in large applications
While working in highly interactive and animated client side web applications, we highly rely on jQuery libraries and use their events heavily.
In large enterprise applications, this results in a ...
2
votes
1answer
72 views
Return lines in input code causing gaps/whitespace between elements in output? [duplicate]
Possible Duplicate:
Ignore whitespace in HTML
I am trying to put images next to each other on a webpage. Here is my HTML:
<img class="pt" src="Yellow Tulip.jpg" title="Yellow Tulip" ...
0
votes
2answers
124 views
Which style is preferable when writing this boolean expression? [closed]
I know this question is to some degree a matter of taste. I admit this is not something I don't understand, it's just something I want to hear others' opinion about.
I need to write a method that ...
1
vote
6answers
291 views
How to make SQL query more readable in PHP?
When you have a long fields in SQL query, how do you make it more readable?
For example:
public function findSomethingByFieldNameId($Id) {
$sql = "SELECT field1, field2, field3 as ...
3
votes
4answers
305 views
Why use LINQ-expressions?
I use Resharper, and when I make a few lines of code like this:
foreach (var posCombination in possibleCombinations)
{
if (posCombination .Count == combo.Count && posCombination ...
1
vote
7answers
144 views
How can I make this more readable and cleaner?
I am wondering what I can do to make this more readable and clean. By readable, I mean easier to read for other developers.
I don't really want to have the same code twice. I am thinking that I could ...
1
vote
3answers
224 views
jQuery Readability: insert table inside <li> element
I hope to get some advise about how to write the javascript and jQuery code more beautiful and gain more readability.
In this case, I hope to insert table inside a list element. Both list and table ...
0
votes
3answers
53 views
should I keep using self.__local_object all over the code?
I'm extending a former colleague's code (Python3) and find personally those repeated self.__local_object.x=some_result annoying and hindering readabilit. I.e. instead of
...
1
vote
6answers
473 views
C++ Nested If Statement Readability
I have reasonably complicated logic for if statements. I am currently using:
if(numerical_evaluation) {
if ((!boolOne && boolTwo) || !boolThree){
//do stuff
}
}
where ...
-1
votes
1answer
127 views
Optimum name length of a Java variable from readability perspective
Consider the constant in the following Java snippet :
public class ConsumerServiceTestFixture {
private ConsumerServiceTestFixture() {
throw new AssertionError("This class should not be ...
1
vote
1answer
236 views
Processing parenthesized expressions in Shunting Yard
I have the following hand-written loop to process parenthesized expressions:
while (!punctuators.empty() && punctuators.back().kind != '(')
{
output.push_back(punctuators.back());
...
2
votes
3answers
214 views
Duplicated code above and inside while loop [closed]
Consider the following code:
std::string::size_type von = find_first_not_of(str, splitter);
std::string::size_type bis = find_first_of(str, splitter, von);
while (von != bis)
{
...
1
vote
3answers
339 views
Do macros make the code more readable? [closed]
I had a debate about macros and their readability.
I think that in some cases using macros can make the code shorter, more comprehensible and less tiring to read.
For example:
#include ...
2
votes
2answers
110 views
More readable way for null reference checks
In a lot of apps I write, I find myself assigning a default value for a subclass of a DBML object. Here is an example of the current way I'm having to do it:
var viewModel = new RandomViewModel
{
...
0
votes
3answers
63 views
Can this jQuery code be refactored
I am trying to improve my jQuery skill and I have this bit of code. It's basic purpose is to size and resize a background to keep it at the same height as a responsive slider, so matching the size of ...
1
vote
1answer
77 views
When using modernizr, is it a bad pracice to mix techniques, ie for or against particular capabilities?
I am trying out modernizr. Is it OK to mix the 'for / against various capabilities' in the same stylesheet, and if so are there any general rules as to how to mix them?
eg Would this be OK or bad ...
7
votes
3answers
2k views
What are the benefits to using anonymous functions instead of named functions for callbacks and paramaters in JavaScript event code?
I'm new-ish to JavaScript. I understand many of the concepts of the language, I've been reading up on the prototype inheritance model, and I'm whetting my whistle with more and more interactive ...
5
votes
8answers
615 views
Managing number of brackets in clojure
I am new to clojure and the main thing I am struggling with is writing readable code. I often end up with functions like the one below.
(fn rep
([lst n]
(rep (rest lst)
n
(take n
...
5
votes
2answers
146 views
header full of inline functions, can i move the code outside header file and still inline everything?
i have ended putting many little small inline function in a header file which i include in many compilation units,
the code is correctly inlined by the compiler and the program works like a charm.
...
0
votes
2answers
142 views
What is a recommended way to write MySQL queries neatly to improve readability? [closed]
For a while I always had my queries as one line:
SELECT * FROM table WHERE col = value ORDER BY id DESC
Now that I've been told multiple times not to use *, I've been trying to find a way to make ...
0
votes
1answer
205 views
Javascript lambda scoping and code factoring
I want to create a simple to use API into some of these functions but with out being able to bind a function into a new scope I.E the scope it belongs in! I can not figure out a way to do it other ...
3
votes
7answers
189 views
chunk of code that's called only once - merits own method?
From observing source code for various Android applications (not written by me), I noticed a pattern of placing certain pieces of code into their own methods, although there really isn't any code ...
2
votes
4answers
215 views
Working with IComparable.Compare without magic numbers
I really hate working with IComparer - to this day, after years of working with .Net, I still get regularly confused by those 1s and -1s.
Can I somehow replace the Compare result values with some ...
0
votes
2answers
104 views
Function with multiple exit-points: is it a good way to do?
during programming with VBScript I write a lot of error-check code in functions before function start to do actions. So, if some pre-reqierements wan't met, then I do "Exit Function". So, for example:
...
