This file contains 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
Encountered after following the steps to install this PPA for Ledger 3: | |
https://launchpad.net/~mbudde/+archive/ledger | |
$ sudo apt-get install ledger | |
Reading package lists... Done | |
Building dependency tree | |
Reading state information... Done | |
Some packages could not be installed. This may mean that you have | |
requested an impossible situation or if you are using the unstable | |
distribution that some required packages have not yet been created |
This file contains 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
$ cordova platform add android | |
Creating android project... | |
/home/maximo/.cordova/lib/android/cordova/3.5.0/bin/node_modules/q/q.js:126 | |
throw e; | |
^ | |
Error: An error occurred while listing Android targets | |
at /home/maximo/.cordova/lib/android/cordova/3.5.0/bin/lib/check_reqs.js:87:29 | |
at _rejected (/home/maximo/.cordova/lib/android/cordova/3.5.0/bin/node_modules/q/q.js:808:24) | |
at /home/maximo/.cordova/lib/android/cordova/3.5.0/bin/node_modules/q/q.js:834:30 |
This file contains 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
# Variable substitution works here | |
foo: "The quick brown %{ animal } jumped over the lazy dog" | |
# Variable substitution done not work here | |
# Instead, "%{ animal }" gets rendered | |
bar: | | |
The quick | |
brown %{ animal } | |
jumped over | |
the lazy dog |
This file contains 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
$ composer require wpackagist-theme/twentyfourteen | |
[InvalidArgumentException] | |
Could not find package wpackagist-theme/twentyfourteen at any version for your minimum-stability (stable). Check the package spelling or your minimum-stability | |
require [--dev] [--prefer-source] [--prefer-dist] [--no-progress] [--no-update] [--update-no-dev] [--update-with-dependencies] [packages1] ... [packagesN] |
This file contains 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 semi-static list of "handles" I'd like to hear on the Digital Continent podcast. | |
@simunza | |
@thebestofzambia | |
@YostKalasa |
This file contains 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
<h1><%= yield :title %></h1> | |
<div class="plans"> | |
<%= link_to "Bronze", root_url, :id => "bronze" %> | |
</div><!-- /.plans --> |
This file contains 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
<h1><%= yield :title %></h1> | |
<div class="plans"> | |
<%= render @plans %> | |
</div><!-- /.plans --> |
This file contains 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
<%= link_to plan.name, root_url, :id => plan.name.downcase %> |
This file contains 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 'spec_helper' | |
describe "Plan selection" do | |
it "selects the Bronze plan" do | |
visit plans_path | |
click_link "bronze" | |
end | |
end |
This file contains 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
<h1><%= yield :title %></h1> | |
<div class="plans"> | |
<% @plans.each do |plan| %> | |
<%= link_to plan.name, root_url, :id => plan.name.downcase %> | |
<% end %> | |
</div><!-- /.plans --> |
OlderNewer