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
| typedef struct { | |
| char c; | |
| char[6] pulses; | |
| } letter; | |
| boolean bUseOnBoardLED = true; | |
| int ledPin = bUseOnBoardLED ? 13 : 9; | |
| letter* letters; | |
| int ltr_cnt = 0; |
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
| <select name="PC11032$ctl00$PersonalInfoShippingAddress$ddTitle" id="PC11032_ctl00_PersonalInfoShippingAddress_ddTitle" class="BBFormSelectList DonationCaptureSelectList"> | |
| <option selected="selected" value=""></option> | |
| <option value="12668">Abbot</option> | |
| <option value="4647">Admiral</option> | |
| <option value="6576">Advocate</option> | |
| <option value="5181">Air Commodore</option> | |
| <option value="6085">Air Marshal</option> | |
| <option value="5127">Air Vice-Marshal</option> | |
| <option value="4649">Ambassador</option> | |
| <option value="5329">Archbishop</option> |
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
| using System.Data.Entity.Migrations; | |
| using System; | |
| public partial class ChangeIndexingOnChatMessages : DbMigration | |
| { | |
| private static readonly string[] Statements = new[] { | |
| "alter table dbo.ChatMessages drop constraint PK_ChatMessages", | |
| "create clustered index CX_ChatMessages_When on dbo.ChatMessages ([When])", | |
| "alter table dbo.ChatMessages add constraint PK_ChatMessages primary key nonclustered ([Key])" | |
| }; |
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
| var parser = document.createElement('a'); | |
| parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
| parser.protocol; // => "http:" | |
| parser.hostname; // => "example.com" | |
| parser.port; // => "3000" | |
| parser.pathname; // => "/pathname/" | |
| parser.search; // => "?search=test" | |
| parser.hash; // => "#hash" | |
| parser.host; // => "example.com:3000" |