Tagged Questions
In computer programming, boilerplate is the term used to describe sections of code that have to be included in many places with little or no alteration.
40
votes
4answers
2k views
HTML5 Boilerplate vs. HTML5 Reset
Hey everyone — HTML5 Boilerplate and HTML5 Reset are two HTML, CSS, and JavaScript templates with a lot of modern best practices built-in. Their goals are largely the same:
Fast, robust, ...
13
votes
5answers
5k views
HTML5 Boilerplate with blueprint css
I'm thinking of combining these two technologies for a new project.
Is this bad idea? Are there any recommended alternative grid systems to use with html5 boilerplate?
12
votes
1answer
670 views
Scrap Your Boilerplate in f#
I've used the Scrap Your Boilerplate and Uniplate libraries in the Haskell programming language, and I would find that form of generic programming over discriminated unions to be really useful. Is ...
12
votes
2answers
247 views
Standard business logic data classes for .NET
There are a lot of "primitive" boiler plate types of data classes that could appear in many different programs.
However, I have never seen a class or library set that recognizes the need to combine ...
10
votes
3answers
236 views
Single-shot event subscription
I'm fairly convinced that this isn't possible, but I'm going to ask nonetheless.
In order to make a single-shot subscription to events, I frequently find myself using this (self-invented) pattern:
...
10
votes
7answers
3k views
What is boilerplate code?
A coworker had never heard of this, and I couldn't provide a real definition. For me, it's always been an instance of 'I-know-it-when-I-see-it'.
Bonus question, who originated the term?
9
votes
8answers
182 views
Assign function arguments to `self`
I've noticed that a common pattern I use is to assign SomeClass.__init__() arguments to self attributes of the same name. Example:
class SomeClass():
def __init__(self, a, b, c):
self.a = ...
9
votes
1answer
373 views
Trying to understand some HTML5Boilerplate items
In the HTML5Boilerplate, on line 72 to 80 in the css, it says:
/* fonts.css from the YUI Library: developer.yahoo.com/yui/
Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages
...
8
votes
1answer
388 views
Clojure equivalent of Haskell's “Scrap Your Boilerplate” (SYB)
I found an interesting library in Haskell called Scrap Your Boilerplate based on a paper by Simon Peyton Jones which seems like an effective way to write code that can update large, deeply nested data ...
8
votes
4answers
569 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;
...
7
votes
2answers
2k views
960 grid's clearfix vs HTML5 Boilerplate's clearfix - What's the difference?
960 grid's clearfix vs HTML5 Boilerplate's clearfix - What's the difference?
Here's the clearfix found in Nathan Smith's 960 grid's css:
/* ...
7
votes
5answers
352 views
Which safety net do you use in Perl?
Which safety net do you use?
use warnings;
or
use strict;
I know that
A potential problem caught by use
strict; will cause your code to stop
immediately when it is encountered,
...
7
votes
5answers
180 views
Ways to make use of 'using' directives in C# less tedious
Good programming practice these days tends to mean splitting your stuff up into lots of assemblies and namespaces (for example, see S#arp Architecture, MVC, etc.). However a side-effect of that is ...
7
votes
4answers
4k views
A good HTML skeleton
I want to start creating websites again, but I've been out of the HTML scene for a while now. I was just wondering if this is a good skeleton for a website. And if not, what should I change, add ...
7
votes
2answers
521 views
Is Project Lombok suitable for large java projects?
Is anybody out there using Project Lombok for a large scale production system? How does it influence your compile process (i.e. does it do two-pass compilation, slow it down, make it more fragile)?
5
votes
3answers
358 views
Boilerplate Javascript scripts/plugins?
I've been really enjoying getting into Paul Irish's HTML5 Boilerplate which gives best practices for html5, javascript, css and even server side stuff with the likes of a boilerplate .htaccess file. ...
5
votes
2answers
2k views
HTML5 Boilerplate plugins.js
How is one expected to include additional js files in plugins.js? Is the expectation that we just copy and paste the contents of each plugin there? Or is there some method of doing a js include that I ...
5
votes
3answers
109 views
Factoring product type assignments in OCaml
I'm generally unsatisfied with writing code like this:
let load_record_field cursor gets geti gett a = function
| 0x01 -> let c, s = gets () in (a.a_record_uuid <- s; `More_record c)
| 0x02 ...
5
votes
4answers
224 views
Can I have Vim ignore a license block at the top of a file?
Is there a way to use folds or some other Vim-script black magic to hide license blocks at the top of files? I don't like that they take up such a large section of my editing pane; I like to get a ...
5
votes
2answers
1k 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 ...
5
votes
8answers
829 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 = ...
5
votes
5answers
809 views
Howto create software package in Unix/Linux
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 install
4
votes
1answer
68 views
avoiding duplicate SWIG boilerplate when using many SWIG-generated modules
When generating an interface module with SWIG, the generated C/C++ file contains a ton of static boilerplate functions. So if one wants to modularize the use of SWIG-generated interfaces by using ...
4
votes
5answers
331 views
“Boilerplate” code in Python?
Google has a Python tutorial, and they describe boilerplate code as "unfortunate" and provide this example:
#!/usr/bin/python
# import modules used here -- sys is a very standard one
import sys
# ...
4
votes
1answer
488 views
How do I use Paul Irish's Conditional comments in a SharePoint 2010 master page
I want to use Paul Irish's Conditional comments from the Boilerplate HTML template:
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> ...
4
votes
3answers
182 views
What are the risks I should know about regarding Project Lombock?
I'm coming up with performance goals for the new year, and I thought I'd be fun to put a goal to reduce the size of the code base, especially boilerplate. One action I've come up with to address this ...
4
votes
2answers
185 views
Is an Extension Method the only way to add a function to an Enum?
I have a Direction Enum:
Public Enum Direction
Left
Right
Top
Bottom
End Enum
And Sometimes I need to get the inverse, so it seems nice to write:
SomeDirection.Inverse()
But I ...
4
votes
1answer
258 views
State monads: trading one pattern for another?
So I'm writing a game in Haskell, and I'm expressing a player's turn as a series of state-altering functions that correlate to various turn phases. Originally, this looks something like:
let game' = ...
4
votes
7answers
3k 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
//...
//...
...
4
votes
1answer
217 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 ...
4
votes
6answers
627 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 := ...
3
votes
1answer
155 views
Haskell default superclass instances
I want to take some of the boilerplate out of Num declarations for a few custom classes (call them Monomial and Polynomial). Instead of writing
instance Num (Monomial) where
f - g = f + (negate ...
3
votes
1answer
389 views
HTML5 Boilerplate .htaccess vs httpd.conf
I'd like to start off by saying I am really new to working with apache, so please don't hold it against me.
The HTML5 Boilerplate comes with a .htaccess file, but I'm using django (on webfaction) and ...
3
votes
3answers
855 views
Why should I care about using HTML5 in a Rails 3 app?
First, I'm really not intentionally trying to sound naive in asking that question.
But really though. I'm starting a new Rails project that I expect to maintain for many years to come, and I want to ...
3
votes
3answers
123 views
Generating member types for containers
When I define my own containers, I have to provide a dozen of member types, for example:
typedef T& reference;
typedef const T& const_reference;
typedef T* iterator;
typedef ...
3
votes
1answer
312 views
Boilerplate typedefs for STL-compatible container
Is there, within the standard library or Boost, some kind of utility base class for populating a custom STL-compatible Sequence with the required typedefs (size_type, value_type, etc...). I'm thinking ...
3
votes
1answer
335 views
Why the boilerplates when writing new Monad Transformers
This section http://book.realworldhaskell.org/read/monad-transformers.html#id659032 from the book Real World Haskell suggests that when writing a new Monad Transformer, we have to derive instances for ...
2
votes
1answer
30 views
Call a vimscript function that has a range using local variables, from with in a vimscript function
Here is an example that I am working with. It is intended to add a boilerplate to a file, and then comment out those lines just read using a vim BlockComment plugin function. The goal is to mark the ...
2
votes
2answers
111 views
HTML5Boilerplate with Yii Framework
Has anyone managed to integrate HTML5 Boilerplate in the YII PHP Framework (specifically the folder structure and build process)?
2
votes
3answers
60 views
Lombok for Android
I would love to get all the features lombok provides. I'm tired of writing lots of boilerplate code and I would like to know if there is a port of lombok on Android? Or at least an equivalent? ...
2
votes
1answer
138 views
C# Boilerplate code
I'm thinking of building some generic extensions that will take a way all these null, throw checks and asserts and instead use fluent APIs to handle this.
So I'm thinking of doing something like ...
2
votes
6answers
128 views
Swing thread safety boilerplate
For the sake of simplicity, imagine an application that downloads a file. There is a simple GUI with one label that displays progress. To avoid EDT violations, like every lawful citizen I download the ...
2
votes
2answers
404 views
HTML5 Boilerplate Build Script - .htaccess doesn't exist
I thought I'd try out the Build Script for HTML5 Boilerplate - it's aimed at front-end designers and developers so this should be fairly straightforward right?
I'm running with a Mac so I should have ...
2
votes
2answers
148 views
Is it possible to avoid namespace boilerplate in a header file?
I have some helper classes that I don't want in the global namespace, so I want to put them in their own namespace. For example:
// Widget.h
namespace MyHelpers {
class Helper { ... };
}
class ...
2
votes
1answer
455 views
Should I combine YUI's grids with Boilerplate HTML5?
I'm planning on building a web development template for a small team. I'm looking at combining Paul Irish's Boilerplate and YUI's grids. (If it helps, the group will use jQuery.)
Is there any reason ...
2
votes
1answer
172 views
Using metamorphic code to reduce boilerplate
Has anyone seen metamorphic code -- that is, code that generates and runs instructions (including IL and Java Bytecode, as well as native code) -- used to reduce boilerplate code?
Regardless of the ...
2
votes
4answers
157 views
Is there a better way to write this repetitive event-declaration code in C# when implementing an interface explicitly?
I have a lot of code like the following, where I explicitly implement some events required by an interface.
public class IMicrowaveNotifier {
event EventHandler<EventArgs> DoorClosed;
event ...
2
votes
1answer
123 views
understanding syb boilerplate elimination
In the example given in http://web.archive.org/web/20080622204226/http://www.cs.vu.nl/boilerplate/
-- Increase salary by percentage
increase :: Float -> Company -> Company
increase k = ...
2
votes
2answers
198 views
Eliminating boilerplate codes for web applications. Is it rocket science?
Year 2010 and we still have to write boilerplate codes. Lets assume we are building an online application (it doesnt matter wherter it is fancy or not but a funtional one). We first make database ...
2
votes
3answers
191 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 ...