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
<p style="margin:0px 0px 0px 20px; color: #6C6C6C; font-weight: bold; font-size: 9pt;">Quote: </p> <div style=" float: relative; margin:0px 20px 0px 20px; padding:10px 10px 10px 10px; background-color:#EBEBEB; border:1px dotted #D1D1D1; font-size: 9pt;" ><em> | |
YOUR MESSAGE HERE | |
</em></div> |
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
git push origin origin:refs/heads/new_feature_name | |
git fetch origin | |
git branch -r | |
git checkout --track -b new_feature_name origin/new_feature_name |
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
ActionView::TemplateError (You have a nil object when you didn't expect it! | |
The error occurred while evaluating nil.public_filename) on line #6 of home/_category.html.erb: | |
3: <%= h(truncate(category.title, 50)) -%> | |
4: </div> | |
5: <div class="itemDesc"><%= category.description.blank? ? 'N/A ' : h(truncate(category.description, 50)) -%></div> | |
6: <%= link_to(image_tag(category.header_image.public_filename(:small)), category, :title => h(category.title)) -%> | |
7: <div class="view"><%= link_to "View all" + " " + h(truncate(category.title, 50)), category, :title => h(category.title) -%></div> | |
8: </div> |
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
#! /bin/bash | |
if [ ! -d $HOME/.ssh ]; then | |
`mkdir $HOME/.ssh` | |
`touch $HOME/.ssh/authorized_keys` | |
`chmod 0600 $HOME/.ssh/authorized_keys` | |
else | |
if [ ! -d $HOME/.ssh/authorized_keys ]; then | |
echo "Creating authorized_keys file" | |
`touch $HOME/.ssh/authorized_keys` | |
`chmod 0600 $HOME/.ssh/authorized_keys` |