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
| /Library/LaunchDaemons | |
| # remove things from here which I don't need pre launching | |
| System Prefs > Accounts > Login Items | |
| # Minus apps from here I don't want loading on startup | |
| Activity Monitor | |
| # Check to see what's using up the RAMs |
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
| # A place to store all the various little fixes required to keep cucumber/rspec textmate HTML output working | |
| ### CUCUMBER ################### | |
| # If it raises an error that radix is not found. | |
| # Could not find radix- in any of the sources (Bundler::GemNotFound) | |
| $ gem install radix # as a system gem | |
| Make sure you are on a recent cucumber bundle. |
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
| Embed steps in other steps | |
| -------------------------- | |
| When %{I am on the home page} |
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
| require 'rspec/core/formatters/base_formatter' | |
| class Frogger < RSpec::Core::Formatters::BaseFormatter | |
| COLOR_START = "\e[34m" # blue | |
| COLOR_FAILED = "\e[31m" # red | |
| COLOR_PASSED = "\e[32m" # green | |
| COLOR_PENDING = "\e[33m" # yellow | |
| def initialize(output = nil) |
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
| ## DEFINE DIT ROOT/BASE/SUFFIX #### | |
| ## uses RFC 2377 format | |
| ## replace example and com as necessary below | |
| ## or for experimentation leave as is | |
| ## dcObject is an AUXILLIARY objectclass and MUST | |
| ## have a STRUCTURAL objectclass (organization in this case) | |
| # this is an ENTRY sequence and is preceded by a BLANK line | |
| dn: dc=example,dc=com |
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
| ActionMailer::Base.deliveries.first |
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
| http://www.nerdgrind.com/wordpress-automatic-upgrade-plugin-failed-or-not-working/ | |
| How to SSH into Wordpress | |
| ------------------------- | |
| ssh ftp_user@domain.com | |
| Manually install a plugin | |
| ------------------------- | |
| Download the plugin and unzip it. |
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
| Metrics | |
| ------- | |
| guag.es | |
| kiss metrics | |
| mixpanel | |
| http://chartbeat.com | |
| (eg. http://chartbeat.com/dashboard/?url=businessinsider.com&k=4bbb5a03ffbd1d760ecf0ba8d9f27ef7) | |
| AB Testing | |
| ---------- |
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
| * ( + *. . ) | |
| ) . ____+ ( * | |
| . ( \|| (//\_ \.\|/ . | |
| + .-"-\ \ `a,a `/ / | + ( | |
| / \ \ \O_ / / / ) + | |
| . |# |\ \_) (_/ / * .-"-. ) | |
| \___/ \ / /# \ ( | |
| * /^ \.&&&./ . | | | |
| ( * | & |* \___/ | |
| . \ |__&__| ' ^\ + |
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
| /* Arduino Blink - Lesson One */ | |
| void setup() | |
| { | |
| pinMode (13, OUTPUT); //Set socket D12 as an output | |
| //pinMode (8, INPUT); //Set socket D8 as an input | |
| } | |
| void loop() { | |
| digitalWrite(13,HIGH); |