View html.html
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scaleable=no"> | |
<title>Example Report</title> | |
</head> | |
<body> | |
<div class="page-header"> | |
<h1>Example Report</h1> |
View example.html
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
</head> | |
<body> | |
<!-- Template for plans change this to match your needs. {{word}} and [%word%] will be filed with information from your plans. | |
To find how the template tags work you can read it here: https://mustache.github.io/mustache.5.html. | |
You can use all attributes of a plan that are documented in our API docs here: https://www.cobot.me/api-docs/plans#show-plan-details --> | |
<script id="planTemplate" type="text/html"> |
View gist:55d3ae8b4b75b09788f5
This is needed for example if you want textmate to switch between rspec and rails file types automagically. | |
1. Open ~/Library/Application Support/TextMate/Global.tmProperties | |
2. Delete all entries of the format | |
[ .fileending ] | |
fileType = some.filetype | |
3. Done! | |
View .rvmrc
rvm --create use ruby-2.1.2 | |
export RUBY_GC_HEAP_INIT_SLOTS=1000000 | |
export RUBY_GC_HEAP_FREE_SLOTS=500000 | |
export RUBY_GC_HEAP_GROWTH_FACTOR=1.1 | |
export RUBY_GC_HEAP_GROWTH_MAX_SLOTS=10000000 | |
export RUBY_GC_MALLOC_LIMIT_MAX=500000000 | |
export RUBY_GC_MALLOC_LIMIT_GROWTH_FACTOR=1.1 |
View twitter-entities.js
/* | |
* twitter-entities.js | |
* This function converts a tweet with "entity" metadata | |
* from plain text to linkified HTML. | |
* | |
* See the documentation here: http://dev.twitter.com/pages/tweet_entities | |
* Basically, add ?include_entities=true to your timeline call | |
* | |
* Copyright 2010, Wade Simmons | |
* Licensed under the MIT license |
View database.yml
development: | |
adapter: postgresql | |
encoding: utf8 | |
ctype: de_DE.utf8 | |
collation: de_DE.utf8 | |
template: template0 | |
socket: /var/run/postgresql | |
database: professor_s_development | |
pool: 5 |
View unicorn.rb
worker_processes 3 | |
timeout 10 | |
preload_app true | |
before_fork do |server, worker| | |
Signal.trap 'TERM' do | |
puts 'Unicorn master intercepting TERM and sending myself QUIT instead' | |
Process.kill 'QUIT', Process.pid | |
end |
View gist:3742120
var http = require('http') | |
ffmpeg = require('fluent-ffmpeg'); | |
http.createServer(function (req, res) { | |
res.writeHead(200, {'Content-Type': 'video/x-flv'}); | |
var pathToMovie = '/public/video.mp4'; | |
var proc = new ffmpeg({ source: pathToMovie, logger: true, nolog: false }) | |
.toFormat('flv') | |
.updateFlvMetadata() | |
.withSize('320x?') |
View gist:1670428
#user nobody; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
#pid logs/nginx.pid; | |
View widget.html
// a ui dialog that can only appear one at a time uses jquery dialog | |
Widgets.UI = function() { | |
//gather the dom elements that made up the UI | |
var dialog = $('#dialog'), | |
linkTargetField = dialog.find("#link-target"), | |
saveBotton = dialog.find('#save'), | |
//changing state | |
node = undefined; | |
//event handler |
NewerOlder