http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx http://www.hanselman.com/blog/ASPNETWireFormatForModelBindingToArraysListsCollectionsDictionaries.aspx http://stackoverflow.com/questions/2817747/asp-net-mvc-default-model-binding-problem http://stackoverflow.com/questions/2310672/modelbinder-with-multiple-selection-and-complex-objects
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
| Pod::Spec.new do |s| | |
| s.name = "ReactiveCocoa" | |
| s.version = "2.0.0" | |
| s.summary = "A framework for composing and transforming sequences of values." | |
| s.homepage = "https://github.com/blog/1107-reactivecocoa-is-now-open-source" | |
| s.author = { "Josh Abernathy" => "josh@github.com" } | |
| s.source = { :git => "https://github.com/ReactiveCocoa/ReactiveCocoa.git" } | |
| s.license = 'Simplified BSD License' | |
| s.description = "ReactiveCocoa offers:\n" \ | |
| "1. The ability to compose operations on future data.\n" \ |
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
| /** | |
| * guiders.js | |
| * | |
| * version 2.0.0 | |
| * | |
| * Released under the Apache License 2.0. | |
| * www.apache.org/licenses/LICENSE-2.0.html | |
| * | |
| * Questions about Guiders? | |
| * Email me (Jeff Pickhardt) at pickhardt@gmail.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
| <html> | |
| <head> | |
| <style> | |
| body { | |
| background: url('./carbon.png'); | |
| font-family: Helvetica, Arial, sans-serif; | |
| } | |
| .content { |
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
| convert input.jpg -transparent white -fuzz 80%% output.png |
Javascript Libraries for Stock Charts
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
| <configuration> | |
| <location path="Assets"> | |
| <system.webServer> | |
| <staticContent> | |
| <clientCache cacheControlCustom="public" cacheControlMode="UseMaxAge" cacheControlMaxAge="30.00:00:00"/> | |
| </staticContent> | |
| </system.webServer> | |
| </location> | |
| </configuration> |
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 'iconv' | |
| class OsxStringsFileParser | |
| class KeyValuePair < Struct.new(:key, :value, :comments) | |
| def attributes | |
| { :text => value, :data => { 'key' => key, 'comments' => comments }} | |
| end | |
| end | |
| REGEX_COMMENT_MULTI = /\/\*(.*?)\*\// |
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
| export PATH="/usr/local/bin:/usr/local/git/bin:/Applications/Postgres.app/Contents/MacOS/bin::$PATH:~/bin:/usr/local/share/npm/bin:/Applications/ImageOptim.app/Contents/MacOS" | |
| export CLICOLOR=1 | |
| export EDITOR=vim | |
| export PS1="\[\033[0;37m\]\342\224\214\342\224\200\$([[ \$? != 0 ]] && echo \"[\[\033[0;31m\]\342\234\227\[\033[0;37m\]]\342\224\200\")[$(if [[ ${EUID} == 0 ]]; then echo '\[\033[0;31m\]\h'; else echo '\[\033[0;33m\]\u\[\033[0;37m\]@\[\033[0;96m\]\h'; fi)\[\033[0;37m\]]\342\224\200[\[\033[0;32m\]\w\[\033[0;37m\]]\n\[\033[0;37m\]\342\224\224\342\224\200\342\224\200\342\225\274 \[\033[0m\]" | |
| alias l="ls -lah" | |
| alias open_icloud="open ~/Library/Mobile\ Documents/" | |
| [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function |