This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
OlderNewer