most of these require logout/restart to take effect
# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
# Set a shorter Delay until key repeat| require 'rake/clean' | |
| HAML = FileList['**/*.haml'] | |
| LESS = FileList['**/*.less'] | |
| COFFEE = FileList['**/*.coffee'] | |
| HTML = HAML.ext('html') | |
| CSS = LESS.ext('css') | |
| JS = COFFEE.ext('js') |
| var Thing; | |
| var __hasProp = Object.prototype.hasOwnProperty, __extends = function(child, parent) { | |
| for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } | |
| function ctor() { this.constructor = child; } | |
| ctor.prototype = parent.prototype; | |
| child.prototype = new ctor; | |
| child.__super__ = parent.prototype; | |
| return child; | |
| }; | |
| Thing = (function() { |
| #!/bin/sh | |
| #################################### | |
| # Output file for HTML5 video # | |
| # Requirements: # | |
| # - handbrakecli # | |
| # - ffmpeg # | |
| # - ffmpeg2theora # | |
| # # | |
| # usage: # |
| from deployment.cuisine import * | |
| from fabric.api import * | |
| from fabric.context_managers import * | |
| from fabric.utils import puts | |
| from fabric.colors import red, green | |
| import simplejson | |
| import os |
| @mixin ie6 { * html & { @content } } | |
| #logo { | |
| background-image: url("/images/logo.png"); | |
| @include ie6 { background-image: url("/images/logo.gif"); } | |
| } |
| // Set up a collection to contain player information. On the server, | |
| // it is backed by a MongoDB collection named "players." | |
| Players = new Meteor.Collection("players"); | |
| if (Meteor.is_client) { | |
| Template.leaderboard.players = function () { | |
| return Players.find({}, {sort: {score: -1, name: 1}}); | |
| }; |
Strongly opinionated set of guides to quickly setup OS X Mavericks for web development. By default OS X hides stuff that normal people don't need to see. These settings are better defaults for developers.
I don't want: any sounds, annoying confirmation dialogs, hidden extensions, superflous animations, unnecessary things running like Dashboard, Notification center or Dock(Alfred/spotlight works better for me).
These are my opinions. Read this document through and pick up the good parts to your preferences.
| var webpack = require('webpack'); | |
| var merge = require('webpack-merge'); | |
| var HtmlWebpackPlugin = require('html-webpack-plugin'); | |
| var NpmInstallPlugin = require('npm-install-webpack-plugin'); | |
| var autoprefixer = require('autoprefixer'); | |
| const TARGET = process.env.npm_lifecycle_event; | |
| console.log("target event is " + TARGET); | |
| var common = { |