Skip to content

Instantly share code, notes, and snippets.

View MarkBorcherding's full-sized avatar

Mark Borcherding MarkBorcherding

  • World Wide Technology
  • St Louis, MO
View GitHub Profile
@MarkBorcherding
MarkBorcherding / Automapper.Config.cs
Created October 18, 2011 20:26
The closest I could come to update_attributes from Rails.
Mapper.CreateMap<FormCollection, Domain.Customer>()
.ForMember(x => x.Company, y => y.FormField("company"))
.ForMember(x => x.AccountManager, y => y.FormField("account_manager")
);
<!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()
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
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
@MarkBorcherding
MarkBorcherding / gist:1087986
Created July 17, 2011 19:49
fake coordinates
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]
@MarkBorcherding
MarkBorcherding / gist:962734
Created May 9, 2011 15:25
Console 2 colors for ir_black
<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"/>
@MarkBorcherding
MarkBorcherding / .vimrc
Created May 8, 2011 20:56
Resize Vim Windows
" 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
@MarkBorcherding
MarkBorcherding / ctags.cnf
Created April 11, 2011 22:42
Powershell ctags settings
--langdef=Powershell
--langmap=Powershell:.psm1
--langmap=Powershell:.ps1
--regex-Powershell=/function\s+(script:)?([a-zA-Z\-]+)/\2/m, method/i
--regex-Powershell=/\$(global:)?([a-zA-Z\-]+)/\2/v, variable/i
@MarkBorcherding
MarkBorcherding / AgileZenColorGuide.html
Created January 26, 2011 16:00
A snippet to create an AgileZen color guide.
---
##Color Coding Guide
<div class="story grey" style="width:400px; padding: 10px; margin:2px;">&nbsp;</div>
<div class="story yellow" style="padding: 10px; max-width: 400px; margin:2px;">&nbsp;</div>
<div class="story blue " style="padding: 10px; max-width: 400px; margin:2px;">&nbsp;</div>
<div class="story teal" style="padding: 10px; max-width: 400px; margin:2px;">&nbsp;</div>
<div class="story red" style="padding: 10px; max-width: 400px; margin:2px;">&nbsp;</div>
@MarkBorcherding
MarkBorcherding / PostingViaGet.cs
Created January 18, 2011 16:05
I see stuff like this and think WTF!...oh this is probably happening because WebForms can't have more than one form.
[HttpGet]
public ActionResult MergeViaGet(int idOfSurvivingCustomer , int idOfCustmerThatWillBeMerged)
{
return Merge(idOfSurvivingCustomer, idOfCustmerThatWillBeMerged);
}
[HttpPost]
public ActionResult Merge(int idOfSurvivingCustomer, int idOfCustmerThatWillBeMerged)
{
// do the merge