Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

287
votes
28answers
22k views

Current commonly accepted best practices around code organization in JavaScript [closed]

As JavaScript frameworks like jQuery make client side web applications richer and more functional, I've started to notice one problem... How in the world do you keep this organized? Put all your ...
86
votes
3answers
21k views

How to escape brackets in a format string in .Net

How can brackets be escaped in a C# format string so, something like : String val = "1,2,3" String.Format(" foo {{0}}", val); doesn't throw a parse exception but actually outputs the string " foo ...
78
votes
5answers
41k views

How do I change Eclipse to use spaces instead of tabs?

By default Eclipse indents with a hard tab character. How do I change it to spaces?
62
votes
6answers
29k views

How can I String.Format a TimeSpan object with a custom format in .NET?

What is the recommended way of formatting TimeSpan objects into a string with a custom format?
62
votes
22answers
42k views

How can I format numbers as money in JavaScript?

I would like to format a price in JavaScript. Basically, I have a float variable, and I'd like to have a function that will receive that variable, and output: "$ 2,500.00" What's the best way to do ...
56
votes
22answers
5k views

What is best blogging host for programmers/code formatting? [closed]

I was just reading how can you tell whether you're ready to start your own blog. The answers are so good and inspiring that I made rush to start my own blog using blogger and stopped right in my ...
47
votes
15answers
12k views

Formatting code snippets for blogging on Blogger

My blog is hosted on Blogger and I frequently post code snippets in C / C# / Java / XML etc. but I find the snippet gets "mangled". Are there any web sites that I could use to parse the snippet ...
39
votes
23answers
2k views

Why should I use a human readable file format?

Why should I use a human readable file format in preference to a binary one? Is there ever a situation when this isn't the case? EDIT: I did have this as an explanation when initially posting the ...
39
votes
10answers
59k views

Add alternating row color to SQL Server Reporting services report

How do you shade alternating rows in a SQL Server Reporting Services report? Edit: There are a bunch of good answers listed below--from quick and simple to complex and comprehensive. Alas, I can ...
39
votes
12answers
16k views

Javascript Beautifier

I am looking for a code beautifier that supports javascript and works on both windows and linux and can be used in batch scripts. Any recommendations?
38
votes
3answers
19k views

Sprintf equivalent in Java

Printf got added to Java with the 1.5 release but I can't seem to find how to send the output to a string rather than a file (which is what sprintf does in C). Does anyone know how to do this?
35
votes
9answers
52k views

Insert text into textarea with jQuery

Hey, I'm wondering how I can insert text into a text area using jquery, upon the click of an anchor tag. I don't want to replace text already in textarea, I want to append new text to textarea. ...
34
votes
8answers
24k views

How do I keep Python print from adding spaces?

In python, if I say print 'h' I get the letter h and a newline. If I say print 'h', I get the letter h and no newline. If I say print 'h', print 'm', I get the letter h, a space, and the ...
31
votes
5answers
10k views

C#: File-size format provider

Is there any easy way to create a class that uses IFormatProvider that writes out a user-friendly file-size? public static string GetFileSizeString(string filePath) { FileInfo info = new ...
29
votes
15answers
3k views

Should I use printf in my C++ code?

So I generally use cout and cerr to write text to the console. However sometimes I find it easier to use the good old printf statement. I use it when I need to format the output. So one example of ...
28
votes
4answers
5k views

How to convert byte size into human readable format in java?

How to convert byte size into human-readable format in Java? Like 1024 should become "1 Kb" and 1024*1024 should become "1 Mb". I am kind of sick of writing this utility method for each project. Are ...
28
votes
7answers
11k views

Currency formatting in Python

I am looking to format a number like 188518982.18 to £188,518,982.18 using Python. How can I do this? Cheers
26
votes
3answers
10k views

MVC DateTime binding with incorrect date format

Asp.net-MVC now allows for implicit binding of DateTime objects. I have an action along the lines of public ActionResult DoSomething(DateTime startDate) { ... } This successfully converts a ...
26
votes
7answers
20k views

Best JavaScript Date Parser & Formatter? [closed]

Since I've started to use jQuery, I have been doing a lot more JavaScript development. I have the need to parse different date formats and then to display them into another format. Do you know of ...
25
votes
5answers
2k views

How to change .ASPX automatic formatting settings (Visual Studio)

When typing code in a .aspx file (an MVC view in this case), Visual Studio applies two types of formatting, one to the regular html tag structure (which can be controlled from Tools->Options->Text ...
25
votes
45answers
2k views

Is Programming Style important? How Important?

Last year I was troubleshooting a team member's code and it was lacking indents and comments. I was talking to him about it telling him it was not a good idea but he got offended. He was/is smarter ...
24
votes
15answers
1k views

How to avoid wasting screen space writing sparse C# code?

The commonly accepted way to format C# code seems to be as follows: namespace SomeNamespace { namespace SomeSubNamespace { class SomeClass { void SomeFunction() ...
24
votes
7answers
3k views

Code cleanup in netbeans

Is there something similar to the Eclipse cleanup rules (Preferences > Java > Code Style > Clean Up) in NetBeans? The cleanup rules in eclipse will allow you to clean things up like organizing ...
24
votes
6answers
51k views

How do you format date and time in Android?

How do you format correctly according to the device configuration a date and time when having year, month, day, hour and minute?
24
votes
33answers
3k views

While coding, how many columns do you format for?

in the old days everything was 80 columns. so if you wanted your code to be readable, you'd make it fit. but that's not the case anymore with wider and wider screens, so how long of line is too ...
23
votes
3answers
11k views

Converting camel case to underscore case in ruby

Is there any ready function which converts camel case Strings into underscore separated string? I want something like this "CamelCaseString".to_undescore to return "camel_case_string"
21
votes
5answers
30k views

Rounding numbers in Objective-C

I'm trying to do some number rounding and conversion to a string to enhance the output in an Objective-C program. I have a float value that I'd like to round to the nearest .5 and then use it to set ...
21
votes
12answers
29k views

Excel CSV - Number cell format

I produce a report as an CSV file. When I try to open the file in Excel, it makes an assumption about the data type based on the contents of the cell, and reformats it accordingly. For example, if ...
20
votes
7answers
1k views

Why use semicolon?

Are there any reasons, apart from subjective visual perception and cases where you have multiple statements on the same line, to use semicolon at the end of statements in Javascript? It looks like ...
19
votes
5answers
17k views

What is the WPF XAML Data Binding equivalent of String.Format?

Or, to be more clear, how can I format a block of text (in my case, to be included within a tooltip) such that some portions of the text come from bound values. In plain C# I would use: ...
19
votes
6answers
7k views

When do you use StringBuilder.AppendLine/string.Format vs. StringBuilder.AppendFormat?

A recent question came up about using String.Format(). Part of my answer included a suggestion to use StringBuilder.AppendLine(string.Format(...)). Jon Skeet suggested this was a bad example and ...
19
votes
5answers
1k views

How do you put { and } in a format string

I'm trying to generate some code at runtime where I put in some boiler-plate stuff and the user is allowed to enter the actual working code. My boiler-plate code looks something like this: using ...
19
votes
8answers
5k views

Is there an easy way in .NET to get “st”, “nd”, “rd” and “th” endings for numbers?

I am wondering if there is a method or format string I'm missing in .NET to convert the following: 1 to 1st 2 to 2nd 3 to 3rd 4 to 4th 11 to 11th 101 to 101st 111 to 111th This link ...
18
votes
5answers
13k views

PHP simpleXML how to save the file in a formatted way?

I'm trying add some data to an existing XML file using PHP's SimpleXML. The problem is it adds all the data in a single line: ...
18
votes
3answers
1k views

Get correct indentation in Resharper

Right now resharper formats our code like this: private readonly List<Folder> folders = new List<Folder> { ...
18
votes
10answers
11k views

SQL Formatter for SQL Management Studio

I was wondering if there is a plugin/tool for SQL Server Management Studio that will format your SQL? I'm working with some large-ish stored procs that are a mangled mess of poorly formatted SQL and ...
18
votes
12answers
24k views

How to format a string as a telephone number in C#

I have a string "1112224444' it is a telephone number. I want to format as 111-222-4444 before I store it in a file. It is on a datarecord and I would prefer to be able to do this without assigning a ...
17
votes
13answers
4k views

Fuzzy date algorithm

I'm looking for a fuzzy date algorithm. I just started writing one and realised what a tedious task it is. It quickly degenerated into a lot of horrid code to cope with special cases like the ...
17
votes
5answers
6k views

Formatting of XML created by DataContractSerializer

Is there an easy way to get DataContractSerializer to spit out formatted XML rather then one long string? I don't want to change the tags or content in any way, just have it add line breaks and ...
16
votes
2answers
926 views

Interpret newlines as <br>s in markdown (Github Markdown-style) in Ruby

I'm using markdown for comments on my site and I want users to be able to create line breaks by pressing enter instead of space space enter (see this meta question for more details on this idea) How ...
16
votes
3answers
3k views

Python: user friendly time format

Python: I need to show file modification times in "1 day ago", "two hours ago", format. Is there something ready to do that? It should be in english
16
votes
2answers
4k views

Custom numeric format string to always display the sign

Is there any way I can specify a standard or custom numeric format string to always output the sign, be it +ve or -ve (although what it shoudl do for zero, I'm not sure!)
16
votes
8answers
13k views

In C#, what is the best method to format a string as XML?

I am creating a lightweight editor in C# and would like to know the best method for converting a string into a nicely formatted XML string. I would hope that there's a public method in the C# library ...
16
votes
3answers
9k views

How do I force unix (LF) line endings in Visual Studio (Express) 2008?

Is there a way to always have LF line endings in Visual Studio? I can never seem to find it!
15
votes
3answers
2k views

Better String formatting in Scala

With too many arguments, String.format easily gets too confusing. Is there a more powerful way to format a String. Like so: "This is #{number} string".format("number" -> 1) Or is this not ...
15
votes
1answer
7k views

Asp.Net MVC 2 Html.TextBoxFor Best way to specify a format string for a DateTime property of model

As the question title explains, what is the best way to specify a format which my Views use when displaying values of a DateTime property via the Html.TextboxFor method. The default display includes ...
15
votes
5answers
3k views

How do I format positional argument help using Python's optparse?

As mentioned in the docs the optparse.OptionParser uses an IndentedHelpFormatter to output the formatted option help, for which which I found some API documentation. I want to display a similarly ...
15
votes
4answers
11k views

Is there any way to manually fold code in Eclipse?

Is there any way to manually create fold points in code in Eclipse? I know how to enable folding and how to set the auto preferences, but i like being able to set my own fold points so I can ignore ...
14
votes
4answers
3k views

how to print number with commas as thousands separators in Javascript

I am trying to print an integer in Javascript with commas as thousands separators. For example, I want to show the number 1234567 as "1,234,567". How would I go about doing this? Here is how I am ...
13
votes
8answers
5k views

Formatting doubles for output in C#

Running a quick experiment related to Is double Multiplication Broken in .NET? and reading a couple of articles on C# string formatting, I thought that this: { double i = 10 * 0.69; ...

1 2 3 4 5 47