The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
11 views

Android Readability integration

I want to use Reader API within my Android app. I try to implement OAuth authorization, because 1) don't want to store users username/password 2)XAuth didn't work and returned "Parameter not found: ...
4
votes
1answer
45 views

Better pythonic idiom for this repeated piece code pattern

I find myself using this code pattern quite a bit, and every time I do I think there might be a better, clearer way of expressing myself: do_something = True # Check a lot of stuff / loops for thing ...
1
vote
0answers
27 views

Android share to Readability

I have Readability app installed and want to share via it using simple Share Intent. Intent intent = new Intent(android.content.Intent.ACTION_SEND); ...
-1
votes
1answer
50 views

Program/Tool for more readable Java code?

I am currently looking for a program/tool that enhances the readability of a Java code. For example that it can convert the expression x=y +z+ 3; into x = y + z + 3; or the one of public class ...
0
votes
2answers
32 views

Enforcing pointer to pointer type at compile time

I've got a deserialization scenario for an object hierarchy, in which most objects contain pointers to other objects, but don't own them. I'm trying to implement a two-step process in which: ...
2
votes
4answers
85 views

Readability of long function calls [closed]

I have been writing code that uses function calls that are really long and are often longer than 80 characters. Normally I would split those function calls like this: LongFunctionName(first_argument, ...
0
votes
5answers
33 views

Can I apply the same styling to two elements together in jQuery by grouping them like in CSS?

This is simply for keeping code neater. In CSS I can group elements like this: .element1, .element2, .element3, .element4, .element5, .element6 { font-weight:bold; } is there anything similar in ...
2
votes
1answer
25 views

How should I structure this loop?

From time to time, I run into loops like this one, where I'm not sure how it should be structure to both avoid code repetition and make it most readable. Please note that while in this example I ...
0
votes
0answers
28 views

Uncrustify to align cascaded “if conditions”

the combination of UniversalIndentGUI and Uncrustify works for me very fine and saves me lots of time to format the C source codes. But I have a small extra question and want to know whether someone ...
0
votes
1answer
79 views

Human factors in source code readability and understandability [closed]

I am looking for scientific papers or any kind of empirical data that on the readability of source code. At least this is what I think I need. I would like to emphasize that I am not looking for ...
0
votes
0answers
22 views

Formatting plain text for readability - Do people follow a style guide?

Not sure what people call this, so I'll explain with a few examples: http://www.ietf.org/rfc/rfc3339.txt http://duplicity.nongnu.org/CHANGELOG http://duplicity.nongnu.org/Changelog.GNU ...
3
votes
2answers
47 views

OOP way to implement class for comparison in Python

Using Python, I am trying to implement a set of types including a "don't care" type, for fuzzy matching. I have implemented it like so: class Matchable(object): def __init__(self, ...
2
votes
4answers
97 views

Compare rotated lists in python

I'm trying to compare two lists to determine if one is a rotation (cyclic permutation) of the other, e.g.: a = [1, 2, 3] b = [1, 2, 3] or [2, 3, 1] or [3, 1, 2] are all matches, whereas: b = [3, ...
16
votes
1answer
331 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
4answers
36 views

Is it right to throw exeptions from sided packages?

I want to throw an exception with certain name and such exception is already exists in sided packege. E.g. UnexpectedException in java.rmi. I don't use any facilities from rmi packege, but the name ...
1
vote
1answer
67 views

Readable file sizes with the Twig templating system

I'm wondering if there's a built in way to output readable file sizes with the Twig templating system. Say I have something like this in my template: <p>This limit is currently set to {{ ...
0
votes
4answers
74 views

Improve readability of large attr_accessor

What should I do when defining constants or attr_accessor symbols that are very large? For example, something like this: ATTRIBUTES = %w(id name full_name owner private html_url description fork url ...
0
votes
1answer
91 views

A Java-based Readability-like parser

I would like to know what standalone options exist for parsing and converting normal webpages to the easy to read format, provided by services like Pocket, Readability, and Instapaper. I am ...
5
votes
5answers
140 views

Java: What is considered more readable, “this” or no “this”

You don't really need to write the "this" keyword in Java. But is it better to do so anyway? Does it make sense to homogenise your style, i.e. if you use "this" once, you use it every time it's ...
0
votes
0answers
22 views

Pointers, references, and performance

Every time I update my application (60 frames per second) I need to edit and get information from objects in my application so I have to dereference their pointers to be able to access their functions ...
1
vote
1answer
73 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 ...
3
votes
6answers
124 views

How to handle an exception in a clean way in C++

My problem is that I'm writing a program which is supposed to be readable for the future, and the program has a lot of exception cases. So whenever I have to throw an exception, I have to writer over ...
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 ...
0
votes
0answers
62 views

How to get the clean content from a web page? [closed]

I am working on an android application which lets users browse various news sites and browse the clean text. The page I am interested are not in English and most of the pages has too many garbage ...
1
vote
5answers
83 views

Most pythonic way to express a variable that switches exclusively through two 'named' values

I have a iteration that is quite complicated, and each time through the loop, I have need for a 'parameter' that effects the work done in the loop. Basically, I have been doing the following: ...
0
votes
1answer
17 views

Writing methods inside methods for readability. Good or bad?

I personally like to break long methods into smaller steps, for example: Load() { LoadStep1() LoadStep2() LoadStep3() LoadStep4() ... } is this overkill? Someone else complained that there is too ...
0
votes
1answer
45 views

display html articles in a easy to read format

I have looked at the readability api which is useful to display data in a clean format on a html webpage. I am passing a Url to http://www.readability.com/read?url= to display the data. I am initially ...
1
vote
2answers
116 views

Online readability service?

Is there any web API that takes a URL and gives back the readable content of that page? Or is there any javascript library that can do this? Installing node.js or any server-side app is not possible. ...
0
votes
1answer
51 views

Implement rdd.me api in UIWebView

I'm working on an app which load newsarticles into a UIWebView from RSS. But I want the users to get a better reading experience and want to implement the rdd.me api. I haven't found any good guides ...
0
votes
1answer
148 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 ...
0
votes
0answers
62 views

Javascript structure: Readability vs Performance [closed]

I'm currently designing a site that has a fair amount of Javascript (using jQuery). I starting making it with one big file (plus 3rd party plugins), but am now starting to wonder if I should break up ...
0
votes
0answers
36 views

Can the API for rdd.me take you directly to a formatted page?

I am using the Readability API for rdd.me http://www.readability.com/developers/api/rdd I have successfully made the call to API and received the shortened url ID back. However, when I navigate to ...
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: ...
5
votes
1answer
267 views

Multiple return statements, readability [duplicate]

Possible Duplicate: Should a function have only one return statement? My teacher took points off on some java code I wrote (I'm still getting an A, this is just the first non 100% grade ...
3
votes
2answers
175 views

APL readability

I have to code in APL. And since that code is going to be maintained for long time, I am wondering if there are some papers/books which contain heuristics/tips/samples to help in designing clean and ...
4
votes
2answers
206 views

Why does org.apache.commons.lang.BooleanUtils.isTrue(Boolean bool) use the ternary operator?

I F3'd into this for no particular reason, and was surprised to see this method implemented as follows: public static boolean isTrue(Boolean bool) { if (bool == null) { return ...
1
vote
6answers
286 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 ...
0
votes
0answers
91 views

ios readability xauth

I user readability for reading data from RSS. When I save readability text into db and reading later without internet my text without style. How user xauth in ios app for readability ? Or how save ...
22
votes
2answers
352 views

Is there an IDE/utility to refactor Python * imports to use standard module.member syntax?

I was recently tasked with maintaining a bunch of code that uses from module import * fairly heavily. This codebase has gotten big enough that import conflicts/naming ambiguity/"where the heck did ...
0
votes
0answers
60 views

How to get readable article with Readability.com

I want to get access to readable article of service readability.com. I'm using Java and OAuth. OAuthService service = new ServiceBuilder() .provider(ReadabilityApi.class) .apiKey("key") ...
0
votes
0answers
72 views

Reduce wikipedia text width, place images on the right

I have been using a custom CSS on Wikipedia: #bodyContent { max-width: 900px; } Now, for easier reading of Wikipedia articles, I have reduced max-width to 600px. So quite some space is unused ...
0
votes
1answer
40 views

jQuery selectors in an object - reduce redundancy versus readability

Let's say I have a web form that collects a company name and its address information from a user. In a related javascript file, to reduce the jQuery selectors scattered throughout the functions and ...
1
vote
1answer
75 views

Optimizing Android layouts - performance or readability? [closed]

When designing Android layouts there is often a question - should you sacrifice readability for performance? For example, you can put the same components into several nested layouts or one complex ...
10
votes
4answers
231 views

Is there a neat way of doing a ToList within a LINQ query using query syntax?

Consider the code below: StockcheckJobs = (from job in (from stockcheckItem in MDC.StockcheckItems where distinctJobs.Contains(stockcheckItem.JobId) group ...
2
votes
3answers
97 views

Short-circuiting and readability

In this line if ((last_search == NULL) || (last_search != NULL && total_results != 0)) I know that C's short-circuit evaluation rules say that only if last_search is not null will it try and ...
0
votes
3answers
89 views

How to refactor this Ruby code?

I created the following, that works, but it seems very cryptic. Is there a way to write it in a more Ruby-esque or understandable way? This method removes the lower factors below a number. So, ...
0
votes
0answers
99 views

Allow iframes in NReadability

I'm using NReadability library. This is their simple example: var nReadabilityTranscoder = new NReadabilityTranscoder(); bool mainContentExtracted; File.WriteAllText(outputFile, ...
1
vote
2answers
686 views

How to split a long regular expression into multiple lines in JavaScript?

I have a very long regular expression, which I wish to split into multiple lines in my JavaScript code to keep each line length 80 characters according to JSLint rules. It's just better for reading, I ...

1 2 3 4 5 7