These commands are good as of 2011-07-27.
App store http://itunes.apple.com/us/app/xcode/id448457090?mt=12) The download/install takes awhile so start it first. When it finishes downloading you will still need to run it to complete installation.
These commands are good as of 2011-07-27.
App store http://itunes.apple.com/us/app/xcode/id448457090?mt=12) The download/install takes awhile so start it first. When it finishes downloading you will still need to run it to complete installation.
These commands are good as of 2011-07-27.
App store http://itunes.apple.com/us/app/xcode/id448457090?mt=12) The download/install takes awhile so start it first. When it finishes downloading you will still need to run it to complete installation.
| ===Install Octopress=== | |
| git clone git://github.com/imathis/octopress.git | |
| cd octopress | |
| gem install bundler rake --no-rdoc --no-ri | |
| bundle install | |
| rake install | |
| ===Start Blogging=== |
| <?php if (!defined('BASEPATH')) exit('No direct script access allowed'); | |
| /** | |
| * Bonfire | |
| * | |
| * An open source project to allow developers get a jump start their development of CodeIgniter applications | |
| * | |
| * @package Bonfire | |
| * @author Bonfire Dev Team | |
| * @copyright Copyright (c) 2011 - 2012, Bonfire Dev Team | |
| * @license http://guides.cibonfire.com/license.html |
| $(".dropdown-parent").click(function(){return false}); | |
| $(".dropdown-menu").hover( | |
| function () { | |
| var cssObj = { | |
| 'background-color' : '#006AA3', | |
| 'color' : '#FFF' | |
| } | |
| $(this).parent('.dropdown').css(cssObj).find('.dropdown-parent').css(cssObj).end(); |
| --- | |
| layout: post | |
| title: "Post with images from Flickr" | |
| date: 2012-07-19 15:19 | |
| comments: true | |
| categories: art | |
| --- | |
| A big image: |
| "use strict"; | |
| (function( $ ) | |
| { | |
| // This function formats a text field to a US | |
| // phone number as the user types the information. | |
| $.fn.usphone = function() | |
| { | |
| this.keyup(function() | |
| { |
| "use strict"; | |
| if ($("#affiliates_company_phone").length > 0) | |
| { | |
| $("#affiliates_company_phone").keyup(function() { | |
| var curchr = this.value.length; | |
| var curval = $(this).val(); |
| <?php | |
| if (isset($current_user)) | |
| { | |
| //$display_name = (isset($current_user->display_name)) ? $current_user->display_name : $current_user->user_name; | |
| $display_name = $current_user->email; | |
| if ((isset($current_user->display_name)) && ! (empty($current_user->display_name))) | |
| { | |
| $display_name = $current_user->display_name; |