5
votes
2answers
102 views
Quickly getting to YYYY-mm-dd HH:MM:SS in Perl
When writing Perl scripts I frequently find the need to obtain the current time represented as a string formatted as YYYY-mm-dd HH:MM:SS (say 2009-11-29 14:28:29).
In doing this I find myself taking …
0
votes
1answer
15 views
How to setTimeStyle AM/PM to lowercase using the iPhone SDK
How can I set the AM / PM time style to lowercase? I'm using the following code and according to Apple's documentation this should returned these values as lowercase but it doesn't.
…
1
vote
3answers
25 views
Silverlight Date Formats
Hello everyone,
I'm getting some very strange date formatting issues in my Silverlight application. My local culture is set to UK, yet I am consistently seeing US dates popping up all over the …
3
votes
1answer
36 views
ASP.NET MVC View Code Formatting - braces <% } %>
Does anyone know how to configure visual studio to correctly format code segments within a View
This annoys the crap outta me!:
<select>
<%
foreach(Height height in ViewData.Model.Heights)
…
0
votes
1answer
31 views
Eclipse Spaces & Tabs
I like to display 4 spaces as tab in eclipse, with an actual width on the screen of 2 spaces.
When I save the file, I'd like to have 4 spaces (represented as «.») for a tab:
1st.level
…
0
votes
2answers
86 views
Objective-C: How to format string as $ Price
Is their a built-in way of formatting string as $ price, e.g. 12345.45 converted to $12,345.45?
0
votes
1answer
45 views
PHPMailer AddAddress()
ok, i don't know how the data should be formatted for AddAddress PHPMailer function; i need the email to be sent to multiple recipients so i tried
$to = "me@domain.com,you@domain.net,she@domain.it";
…
0
votes
2answers
119 views
New Line Haskell
Hey. For a tutorial this week, one of the questions asks to create a function formatLines by using other functions formatLine and formatList, to format a list of lines.
My code looks like this;
type …
2
votes
2answers
51 views
Django ajax formatting convention
What's the correct way to do an ajax request, I've seen people using a returning render_to_string so that they can do all their formatting within python using the template language. eg~
return …
0
votes
1answer
33 views
ASP.NET GridView: How to Control the Format of a Column in Edit Mode?
Given the following GridView:
<asp:GridView runat="server" ID="GridMenuItemAttributes" DataKeyNames="MenuItemAttributeID" AutoGenerateColumns="false"
…
1
vote
2answers
54 views
Format the output of qDebug for QMaps
Hi,
i am currently in the process of maintaining a legacy app. This has quite a few structures like:
QMap<QString, QMap<QString, QMap<QString, QMap<QString, QVariant> > > > …
0
votes
2answers
63 views
What’s the most straightforward way to typeset MLA-style college essays in LaTeX?
I've been using LaTeX for a little while now to typeset my algorithms homework, and I really like the quality of the output as well as the ease-of-use. I'd like to starting using LaTeX in other …
0
votes
2answers
72 views
Convert Seconds Integer To HH:MM, iPhone
Hi there,
I am struggling with this. I have a value in seconds that I want to display in a label in HH:MM format. I have searched the internet for ages and found some answers, but either not fully …
0
votes
1answer
12 views
Inserting special character in Redmine wiki page
Hi everyone!
I'm using redmine and I'm trying to insert the special character "|" inside a table in a redmine wiki page. I don't want this character to be parsed as a column separator. I've achieved …
0
votes
1answer
24 views
WPF/XAML: how to make all text upper case / capital?
hi, here's my problem:
I want all texts in TextBlock, Label, MenuItem.Header to be displayed in upper case.
The strings are taken from a ResourceDictionary e.g.:
<TextBlock …
