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 'net/http' | |
| require 'uri' | |
| # /api/v1/:format/new | |
| # /api/v1/:format/gists/:user | |
| # /api/v1/:format/:gist_id | |
| res = Net::HTTP.post_form(URI.parse('http://gist.github.com/api/v1/xml/new'), | |
| { 'files[file1.ab]' => 'CONTNETS', | |
| 'files[file2.ab]' => 'contents' }) |
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
| <p> | |
| <textarea name="{exp:form_helper:field_grabber field_name='tip-content'}" id="{field_name}" class="textarea" rows="{rows}" onclick="setFieldName(this.name)"> | |
| {exp:form_helper:field_parser parse=""}{tip-content}{/exp:form_helper:field_parser} | |
| </textarea> | |
| </p> | |
| <input type="hidden" name="{exp:form_helper:field_grabber field_name='tip-content' which='format'}" value="none" /> |
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 href="http://expressionengine.com/forums/viewthread/108855/">Link1</a> | | |
| <a href="http://expressionengine.com/">Link2</a> | | |
| <a href="http://expressionengine.comindex.php/?affiliate=newism&page=/forums/viewthread/108855/">Link 3</a> | |
| <a href="http://expressionengine.com">Link4</a> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> | |
| <script type="text/javascript" charset="utf-8"> | |
| eeregexp = new RegExp("^(http://(www\.)?expressionengine\.com)"); | |
| affiliateregexp = new RegExp("affiliate"); | |
| affiliate = "newism"; |
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
| # RYAN'S BASH ALIASES | |
| alias home='cd ~' | |
| alias c='clear' | |
| alias ..='cd ..' | |
| alias pg='ping google.com' | |
| alias proj='cd ~/projects' | |
| alias airbag='cd ~/projects/airbag' | |
| alias l='ls -lah' | |
| alias incoming='cd ~/Desktop/Incoming' |
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
| # Run this at your site root to upgrade EE | |
| # Paths assume your system folder is at site root | |
| # http://expressionengine.com/docs/installation/update.html | |
| #!/bin/bash | |
| # location of the release | |
| RELEASE_PATH="/Users/ryan/Desktop/Incoming/ExpressionEngine1.6.7" | |
| echo "Enter the name of your system folder" |
NewerOlder