View file.js
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
addHost() { | |
var header = { key: this.hostHeaderKey, value: this.hostHeaderValue }; | |
if (!this.hasHeader(header)) { | |
this.hostHeaders.push(header); | |
this.hostHeaderKey = ''; | |
this.hostHeaderValue = ''; | |
} | |
}; | |
hasHeader(header) { |
View gist:f42d89ed1b476aa769f3
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
WindsorContainer container; | |
void Main() | |
{ | |
CompositionRoot (); | |
Test (); | |
} | |
void Test () | |
{ |
View sql query
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
SELECT | |
os.orders_status_id, | |
os.date_added, | |
os.customer_notified, | |
os.comments, | |
o.customers_id, | |
o.customers_email_address, | |
o.orders_status, | |
o.date_purchased, | |
c.customers_id, |
View gist:398006
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
o (master) | |
\ /--W (release-10.19-x) | |
\ o---o (release-10.19) | |
\ / | |
A---o---o---o---M---o---o (develop) | |
\ / | |
B---C---E (bug-2248) | |
M - Merge branch 'bug-2248' into develop |