This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
asdfasdf |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
jasmine : { | |
// Your project's source files | |
src : 'src/**/*.js', | |
options: { | |
// Your Jasmine spec files | |
specs : 'specs/**/*spec.js', | |
// Your spec helper files | |
helpers : 'specs/helpers/*.js' |
<html> | |
<head> | |
<title> The simplest HTML example | |
</title> | |
</head> | |
<body> | |
<h1> This is an HTML Page </h1> | |
</body> | |
</html> |
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
watch: { | |
coffee: { | |
files:['src/**/*.coffee'], | |
tasks: ['coffee:compileAll', 'coffeelint:app'], | |
options: { |
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
public class Booking { | |
private final Event event; | |
private final int bookingId; | |
private final String bookingName; | |
private final int numTickets; | |
public Booking(Event event, int bookingId, String bookingName, int numTickets) { | |
this.bookingName = bookingName; | |
this.bookingId = bookingId; |
.actions li { | |
display: inline; | |
list-style-type: none; | |
padding-right: 5px; | |
font-size: 1.2em; | |
} | |
<span class="actions"> | |
<ul> | |
<li><i class="fa fa-heart"></i> Add to my wishlist</li> |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
less: { | |
development: { | |
options: { | |
compress: true, | |
yuicompress: true, | |
optimization: 2 | |
}, | |
files: { |