3
votes
7answers
162 views
Java: Is there support for macros?
I am just curious on how people solve this. I often write the same type of code all the time. For instance:
new Thread() {
//...
//...
//...
//Change this line
//...
//...
…
1
vote
3answers
145 views
ASP.NET: User control with access to the controls that it wraps
I have a bunch of occurrences of this kind of boilerplate code in my ASP.NET project.
<div class="inputfield">
<div class="tl">
<span class="tr"><!-- --></span>
…
0
votes
2answers
118 views
How to change boilerplate “Sent from my iPhone” text in MFMailViewController message body?
I'm using the MFMailComposeViewController to send an email from within an iPhone v3.0 application. I programmatically create the message body text and display it before showing the picker.
At the …
0
votes
2answers
87 views
Is this a legitimate alternative to the “traditional” dispose pattern for class hierarchies?
I am not a fan of boilerplate code: copy-paste reuse is potentially error-prone. Even if you use code snippets or smart templates, there is no guarantee the other developer did, which means there's no …
4
votes
7answers
242 views
Alternative to django form processing boilerplate?
The suggested pattern for processing a form in a view seems overly complex and non-DRY to me:
def contact(request):
if request.method == 'POST': # If the form has been submitted...
form = …
2
votes
8answers
216 views
Should I use the Debug class in .net?
I've been reading a lot about the Debug class lately.
I'm pretty torn about it personally. I can see it improving the process of creating really tricky algorithms. But it also adds a lot of code to …
0
votes
2answers
338 views
What is the minimum boilerplate code for a OpenGL 2D View?
What's the minimum boilerplate code required to setup an OpenGL view (with the necessary projections,camera angles etc) for drawing a 2D game?
For example, the minimum required to do Quartz 2D …
5
votes
4answers
309 views
How do I reduce “uses” boilerplate for new forms?
Every time I add a new form to my project, it drops a big glop of boilerplate in the uses clause.
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
…
2
votes
3answers
191 views
Is there an existing library of extension methods for C#? or share your own. [closed]
Possible Duplicate:
Post your extension goodies for C# .Net (codeplex.com/extensionoverflow)
I'm fond of C# 3.0. One of my favorite parts is extension methods.
I like to think of extension …
0
votes
6answers
217 views
Abusing type overloading to create boilerplate code in C#
Hi all,
In a project I'm currently working on, we've added a wrapper class for accessing the HttpSessionState object. The trouble is that the current solution means you have to write some code to …
5
votes
5answers
342 views
Howto create software package in Unix/Linux
Hi all,
How can we create a software package. So that
after extracting our software tar ball user can do
the typical steps:
$ gunzip < mycode.tar.gz | tar xvf -
$ ./configure
$ make
$ make …
3
votes
6answers
399 views
Avoiding Dialog Boilerplate in Delphi and /or C++
I often need to design a dialog in Delphi/C++Builder that allows various properties of an object to be modified, and the code to use it typically looks like this.
Dialog.Edit1.Text := …
0
votes
2answers
58 views
Password checking boilerplate
I have some server side code that needs to check a username/password pair. I'm looking for something to do this that is nice and simple as in having a text file with username/MD5 hash pairs. I'd love …
0
votes
0answers
71 views
Boilerplate licensing for non-FOSS libraries
I have found this list of FOSS licenses. Is there anything similar for non-free/non-open source boilerplate?
Barring that, does anyone known of a commercial software library distributed with a …
