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
Mapper.CreateMap<FormCollection, Domain.Customer>() | |
.ForMember(x => x.Company, y => y.FormField("company")) | |
.ForMember(x => x.AccountManager, y => y.FormField("account_manager") | |
); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
@Instrumentation.Header() | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | |
<title>@ViewBag.Title</title> | |
@Assets.Scripts.Render("head") | |
@Assets.Stylesheets.Render() | |
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
desc 'Run the Selenium user acceptance tests' | |
task :acceptance do | |
puts "i am sure everything is fine....we don't need no stinkin' tests" | |
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
class TeamPoint < ActiveRecord::Base | |
belongs_to :team | |
belongs_to :donation | |
after_create TeamPointNotifier.new | |
after_create :update_team_points | |
acts_as_api | |
#entry:{team_id:[integer],donation_id:[integer],lat:[integer],long:[integer]}}I | |
api_accessible :donation_found_notification do |t| | |
t.add :team_id |
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
def coord_rand(n,max,options) | |
near = options[:near] | |
long = near[0] | |
lat = near[1] | |
degrees = 0.0 | |
degrees += options[:miles] / 69.0 if options[:miles] | |
degrees += options[:kilometers] / 111.0 if options[:kilometers] | |
degrees += options[:feet] / 69.0 / 5280.0 if options[:feet] | |
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
<console change_refresh="10" refresh="100" rows="25" columns="80" buffer_rows="5000" buffer_columns="0" shell="powershell" init_dir="c:\source" start_hidden="0" save_size="0"> | |
<colors> | |
<color id="0" r="18" g="18" b="18"/> | |
<color id="1" r="150" g="203" b="254"/> | |
<color id="2" r="168" g="255" b="96"/> | |
<color id="3" r="198" g="197" b="254"/> | |
<color id="4" r="255" g="108" b="96"/> | |
<color id="5" r="255" g="115" b="253"/> | |
<color id="6" r="255" g="255" b="182"/> | |
<color id="7" r="238" g="238" b="238"/> |
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
" Fast window resizing with +/- keys (horizontal); / and * keys (vertical) | |
if bufwinnr(1) | |
map <kPlus> <C-W>+ | |
map <kMinus> <C-W>- | |
map <kDivide> <c-w>< | |
map <kMultiply> <c-w>> | |
endif |
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
--- | |
##Color Coding Guide | |
<div class="story grey" style="width:400px; padding: 10px; margin:2px;"> </div> | |
<div class="story yellow" style="padding: 10px; max-width: 400px; margin:2px;"> </div> | |
<div class="story blue " style="padding: 10px; max-width: 400px; margin:2px;"> </div> | |
<div class="story teal" style="padding: 10px; max-width: 400px; margin:2px;"> </div> | |
<div class="story red" style="padding: 10px; max-width: 400px; margin:2px;"> </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
[HttpGet] | |
public ActionResult MergeViaGet(int idOfSurvivingCustomer , int idOfCustmerThatWillBeMerged) | |
{ | |
return Merge(idOfSurvivingCustomer, idOfCustmerThatWillBeMerged); | |
} | |
[HttpPost] | |
public ActionResult Merge(int idOfSurvivingCustomer, int idOfCustmerThatWillBeMerged) | |
{ | |
// do the merge |