11,750 reputation
33468
bio website neverfear.org
location Adelaide, Australia
age
visits member for 3 years, 10 months
seen May 16 at 14:58
stats profile views 341

My contact info can be found on http://neverfear.org/profile/ben or alternatively I could be contacted via http://twitter.com/_dbr


Oct
28
comment Can we get rid of the threshold of 15 chars for comments?
There's not many "high quality" comments that can be made in < 15 characters.. There might be a few exceptions, but I imagine most comments that length would be, as Workshop Alex demonstrates, "lol"
Oct
26
awarded  Nice Answer
Oct
26
comment alternative /ask page layout
@Jeff: Yes, that does makes sense.. Personally I'd much prefer the related questions being in the "mostly useless" sidebar, but since I've been using the site for quite a while, it's hard to say if moving it to the side bar would be [more/equally/less] visible for new users. Decluttering the sidebar, and having the related questions appear there, after entering a title, should be hard to miss.. maybe..
Oct
26
awarded  Nice Question
Oct
25
revised Syntax highlighting language hints
Re-broke example
Oct
25
comment Careers feature request: Dream Jobs
Hm.. On the face of it, "working for ~free" may sound rather silly.. but, this is basically how you get into the "film industry": 1) work for free in an area you're interested in, 2) do a good job, 3) get paid work on the directors future work. Not quite sure the same applies to programming - seems this is the void filled by working on open-source projects..
Oct
25
answered alternative /ask page layout
Oct
25
comment Do we need a “blank” character in Markdown?
I don't see much benefit for this new bit of syntax.. The cases where you'd need it are pretty obscure, it would further diverging SO's markdown from "the standard", and there is a perfectly good, very readable alternative, which wouldn't require users to remember another bit of syntax (HTML tags, or &#x200B;)
Oct
25
comment Should the markdown renderer treat a single line break as <br>?
Looking at a bunch of random moms4mom questions, its users seem to be getting on perfectly well with Markdown. moms4mom.com/questions/1671/… - separating paragraphs with a blank line isn't exactly complicated or hard to learn.. It's how people generally write anyway (look at the paragraphs in any book)
Oct
25
comment Should the markdown renderer treat a single line break as <br>?
@A Dwarf: I don't understand. I'm for keeping markdown as standard as possible ("I am completely against this").. Creating your own markup language rarely works well, and as you say, it creates a situation where people aren't sure what markdown variant they are using (like regex).. Single-return==new-line might be better, but I'd say it's more a case of "standards" over "better".. If it is going to be changed (as most other responses are for), at least make it very clear SO no longer uses "Markdown", but rather their own custom, markdown-inspired markup language
Oct
25
awarded  Nice Question
Oct
24
answered Do we need a “blank” character in Markdown?
Oct
24
answered Please warn people instead of silently clipping answers over max length
Oct
24
comment Can an unescaped underscore (_) be included in a link?
@Nicholas Riley: Who/what do you mean by "TPTB"?
Oct
24
comment Jeff, Why did you block Yahoo! Pipes?
suggestions.yahoo.com/detail/?prop=Pipes&fid=75361 "The "Fetch Page" module currently honors the robots.txt file" - it ignoring your robots.txt file may be a bug they are unaware of..
Oct
24
comment Jeff, Why did you block Yahoo! Pipes?
Have you contacted Yahoo about this? Quoted from the link you mention, "Because Pipes is not a web crawler (the service only retrieves URLs when requested to by a Pipe author or user) Pipes does not follow the robots exclusion protocol (when fetching feeds), and won't check your robots.txt file"
Oct
24
comment Provide RSS for ALL views
meta.stackoverflow.com/questions/23826/…
Oct
23
comment Should the markdown renderer treat a single line break as <br>?
daringfireball.net/linked/2009/10/23/github-flavored-markdown
Oct
23
comment Should the markdown renderer treat a single line break as <br>?
...SO's custom comment markdown is breaking my previous comment, it should be: pastie.org/666799 ..which works correctly with markdown.pl - another reason not to implement your own markup language? :P
Oct
23
comment Should the markdown renderer treat a single line break as <br>?
There's other problems in that question, not just the lack of blank lines.. \\<path to shared folder>\c will be rendered as \\c.. The backslash is used to escape characters, so \` becomes a single `, and <path ...> is treated as an invalid HTML tag and is not displayed.. The solution is to use markdown's inline-code backticks, or code blocks.. Something far less obvious than pressing return twice..