Hot answers tagged code
46
Unfortunately, this is an ambiguity in the Markdown specification. This markdown source:
42. list item
more text
can mean two things. One of them is the one you're expecting: more text is following a blank line and indented by four spaces, making it a top-level (i.e. not part of the list) code block.
The second possible meaning is this:
List ...
44
I've noticed that I usually have to add 8 spaces before any code instead of 4 spaces when it's code that appears as part of a list item.
<- 4 spaces
A list item (one blank line after this):
<- 8 spaces
33
One very important drawback that hasn't been mentioned is that editing a post would potentially invalidate all the existing answers and comments referring to a specific line number in a previous revision. Code blocks are probably edited more than any other part of a question because people often don't post enough code to answer the question at first. I ...
31
There's a reason why this hasn't been wildly requested as of yet. Most code that is going to be posted on the site is going to be a short snippet where the relevant parts are the only ones going to be posted. Anything that gets a little longer will usually have comments in relevant parts explaining what's going on. We're programmers, I think that suffices. ...
28
I would love if there was some way to put xml code in my posts without having to put 4 spaces in front of each line everytime(which is pretty tedious when its like 20-30 lines)
There is. You paste it, then select all the code and hit the code button on the toolbar, or the Ctrl+K keyboard shortcut.
20
Once it's been rejected, you can no longer approve it. If you managed to get in contact with that user, you could have them re-submit the suggestion and approve it yourself. That's unlikely, so if you really feel the edit is helpful, then just apply the edits to your post on your own.
Suggested edits to code usually sit in the queue for a while until ...
16
I usually refer to specific lines with an inline comment:
int x = 10;
// v is still statically typed as an int
var v = 10;
That usually works fine as far as I'm concerned.
Don't get me wrong - there are some cases where line numbers would be useful - but they're rare enough that I think there are higher priorities. In particular, IIRC the syntax ...
15
I reproduced that
onTwitterInit : function () {
if (window.twttr) {
var that = this;
window.twttr.anywhere(function (T) {
doesn't get rendered properly in the preview:
The culprit is a Unicode character (code 8232) following the { on the last line. If you remove it, the rendering problems disappears.
U+2028 is the Unicode ...
15
There's already something matching what you're looking for: Github Gist.
They are already oneboxed in chat.
They make a real git repository for each post.
They allow editing posts (which translates to a git commit behind the scenes).
They allow anonymous posting.
They do syntax highlighting.
They allow multiple files.
They allow comments with Markdown ...
15
My mistake, I pulled in code from an internal project and forgot to amend all the licenses and attribution.
I just fixed it: http://code.google.com/p/stack-exchange-data-explorer/source/detail?r=11c4c20e76207f5843ecf61ae2cb3aa0cf1c9558
Sorry
14
This is not recommended. Stack Overflow is not your personal debugging service. Ideally you should narrow your problem down to a simple, isolated section of code. Something we could try for ourselves without having to wade through your entire project. This also means that if you have a large project, you should not include all your sources within your post. ...
13
Nobody needs to throw ten tons of code into a question.
Nobody.
Plus, tl;dr syndrome guarantees that the more crap you throw in a question the more likely it is you won't get an answer.
Hell, I think the max question length should be dropped by 3/4. I've heard that skill in asking a question is more important than length. Or was it column width? ...
13
the links are to code that the asker him/her-self created, and chose not to include in the body of the post.
The argument against this practice is that site should be self-contained. Paste bins and picture dumps go down. SO shouldn't be effected by this. Use the features built into the software (built-in image upload and code formatting/hilighting).
...
12
While this might be handy to provide a description of what a small block of code is doing line by line, I fear that it might enable people to paste huge blocks of code and say things like "I'm getting a segfault on line 213" and expect other users to dig through the code to identify it. In other words most of the time you think you need line numbers you're ...
10
Posting a question, to which you already have a solution, is perfectly acceptable in my opinion. You would then post your solution as one possible one. A link to a fuller explanation may or may not be appropriate depending on the answer. I would be very careful to avoid the appearance of trying to market your solution, though. I think you'll find that ...
10
Select all the code. Press Ctrl+K. Alternatively, click the bracket sign (the 5th in the toolbar).
Comments only support mini-Markdown, i.e. asterisked or underscored bold/italic, links, and inline code (surround with backticks). They're not intended to be used for anything heavy, just brief notes. Click help next to the comment box for more info, or see ...
10
Fixing someone's immediate problem is part of the reason for SO. Sure, some questions will be more useful in the long term than others - but if it only stops someone from banging their head against a brick wall for a while, that's fine by me. It's even better if they also learn from their mistake :)
9
It can be spectacularly useless to post tons and tons of code in a question. Why, on earth, should I take the time to read through fiddy hundred lines of code to find a misplaced semicolon?
Debug, walk through the code, find the relevant lines, post those. Dumping every line of code in your product is almost as useless as not posting any. Moreso. It ...
9
It's a crappy work-around, but you can do insert a backticked space to trick it. Put a space into those backticks and it should work:
This is a list item.
``
>>> def factorial(n):
... return 1 if n < 2 else n * factorial(n - 1)
...
See?
This is a list item.
>>> def factorial(n):
... return 1 if n < 2 ...
9
It is usually best to explain what is going wrong with the OP's approach and why. Additionally, if there is an easy way to correct the problem, you should demonstrate it.
If you can think of a better approach, this should be posted in addition to a diagnosis of the original problem.
An example would be a user making a mistake while using the wrong tool ...
7
The workaround which is to add 8 spaces instead of simply 4 is actually written in the markdown editing help:
(...)
(...)
(...)
Preformatted text in a list item:
Skip a line and indent eight spaces.
That's four spaces for the list
and four to trigger the code block.
7
The genesis of this feature, for reference:
I have a different preference for how code-in-text could be formatted: change the background colour for that section of the text too. That's a lot clearer than quotes in my view, as well as not interfering with code which uses quotes.
Posted by Jon Skeet on July 5, 2009
...
7
I think it depends on who you are answering to.
If you can see that it is a total beginner who needs things to be explain step by step, then rewrite his code, showing and explaining to him where things can be improved.
If you have to deal with an experienced user (who is just probably too tired or something. I guess you can have an hint on his skills if ...
7
As a rule, I think we discourage large amounts of code for several reasons..
It's off-putting to a searcher to see pages and pages of code before they get to any answers
SO is for general, reusable questions and solutions. If explaining your problem requires 2000 lines of code it's probably too specific to be of use to someone else
SO is not a free ...
6
On questions, it really should only be done to increase readability, like spacing and tabs. I edited on the other day just for that, and still ended up deleting a errant apostrophe that may have been the OP's problem, so you have to be careful.
On answers, I may improve something really obvious that is either a mistake, or just looked like it was ...
6
As mentioned in the comments, Stack Exchange uses Google Prettify for its highlighting purposes, so typically bug reports should be directed at the project, and if they're addressed, they'll be pulled into the version used here.
Your specific case has actually already been reported, though no action has been taken on it. The Perl lexer is also handled by ...
6
Regarding scrolling code blocks:
If you need that much space for the code on which you're asking a question, you probably have a larger problem. Generally speaking, if I have to read your code for 5 or 10 or 20 minutes to understand what's going on, I'm not going to answer your question. It's essentially the "big wall of text" problem, but with syntax ...
6
If you want to embed code in a list, you'll need to precede it with 8 spaces instead of the usual 4:
include/db.php:
try {
$attribs =
array(
PDO::ATTR_PERSISTENT => $config['db']['persistent'],
PDO::ATTR_ERRMODE => $config['db']['errormode']
);
$db = new PDO(
...
6
I'm glad there are workarounds for this, but this is really a bug that should be fixed. I just wasted altogether too much time trying to figure out why I couldn't put a code block after...
Bullet 1.
Bullet 2.
Paste in the following code:
this.IsCode = true;
So here's my attempt with 8 spaces.
Bullet 1.
Bullet 2.
Paste in the following code:
...
6
You can answer any question you want in any way you want. We don't tell you what to answer and how to answer.
Consider, however, that the community has established what makes an acceptable question and will downvote and close (and eventually delete) and question that is not acceptable.
Questions that are not acceptable are indeed such questions that simply ...
Only top voted, non community-wiki answers of a minimum length are eligible


