Skip to content

Instantly share code, notes, and snippets.

@smdahlen
smdahlen / Gruntfile.js
Created March 18, 2013 20:51
Sample Gruntfile.js
module.exports = function (grunt) {
'use strict';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
options: {
jshintrc: '.jshintrc',
force: true
},
import string
from random import choice
print ''.join([choice(string.letters + string.digits + string.punctuation) for i in range(50)])