Before you do anything, perform a factory reset.
Shutter: Auto
Brightness: 44 (factory default)
javascript:function iprl5(){var d=document,z=d.createElement('scr'+'ipt'),b=d.body;try{if(!b)throw(0);d.title='(Saving...) '+d.title;z.setAttribute('src','http://www.instapaper.com/j/aoOVr4t2wFMs?u='+encodeURIComponent(d.location.href)+'&t='+(new Date().getTime()));b.appendChild(z);}catch(e){alert('Please wait until the page has loaded.');}}iprl5();void(0) |
cd /opt/local/etc/ejabberd/ | |
cp ejabberd.cfg.sample ejabberd.cfg | |
cp ejabberdctl.cfg.sample ejabberdctl.cfg | |
cp inetrc.sample inetrc |
#!/bin/sh | |
sudo apt-get install lamp-server^ | |
sudo apt-get install postgresql-server^ |
#!/usr/bin/env ruby | |
# -*- coding: utf-8 -*- | |
Numbers = [ | |
[" - ", | |
"| |", | |
"| |", | |
"| |", | |
" - "], |
Set up databases to run AS YOUR USER ACCOUNT with: | |
unset TMPDIR | |
mysql_install_db --verbose --user=`whoami` --basedir="$(brew --prefix mysql)" --datadir=/usr/local/var/mysql --tmpdir=/tmp | |
To set up base tables in another folder, or use a different user to run | |
mysqld, view the help for mysqld_install_db: | |
mysql_install_db --help | |
and view the MySQL documentation: | |
* http://dev.mysql.com/doc/refman/5.5/en/mysql-install-db.html |
// In JavaScript, binds an object to a callback function to use as "this". | |
// | |
// When a function is passed as an event callback, "this" is bound to | |
// the DOM element triggering the event; in other scenarios when a | |
// function is used as a callback, "this" is bound to the window | |
// object. | |
// | |
// To override the default binding of "this", call bindThis on your | |
// function. For example: | |
// |
=============================================================================== | |
Some setup you must do manually if you haven't yet: | |
1. Setup default url options for your specific environment. Here is an | |
example of development environment: | |
config.action_mailer.default_url_options = { :host => 'localhost:3000' } | |
This is a required Rails configuration. In production it must be the |
function getString(str, offset) { | |
return str.split('') | |
.map(function(ch) { | |
return String.fromCharCode(ch.charCodeAt(0) + offset); | |
}) | |
.join(''); | |
} |
javascript:$('#branding img').css('width', '40%');jQuery('#ctaMessage').css('display', 'none'); |