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
| setInterval(function(){ | |
| $.get("http://stackoverflow.com/unicoin/rock?_="+new Date().getTime(),function(data){ | |
| $.post("http://stackoverflow.com/unicoin/mine",{"rock":data.rock,fkey:localStorage["se:fkey"].split(",")[0]}) | |
| }) | |
| },12000); |
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
| namespace Empire.Client.Windows.Keyboard | |
| { | |
| public enum VirtualKeyCode | |
| { | |
| LBUTTON = 0x01, | |
| RBUTTON = 0x02, | |
| CANCEL = 0x03, | |
| MBUTTON = 0x04, | |
| XBUTTON1 = 0x05, | |
| XBUTTON2 = 0x06, |
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
| *, *:after, *:before | |
| { | |
| -webkit-box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| box-sizing: border-box | |
| } | |
| .frame | |
| { | |
| zoom: 1; |
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
| body | |
| { | |
| font-family: sans-serif; | |
| } | |
| dl | |
| { | |
| width: 700px; | |
| } | |
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
| *, *:before, *:after | |
| { | |
| -webkit-box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } | |
| body | |
| { | |
| font-family: sans-serif; | |
| } |
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
| /* Target Lecacy Browsers */ | |
| body | |
| { | |
| font-family: sans-serif; | |
| } | |
| dl | |
| { | |
| width: 700px; |
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
| .container .columns.one { width: 6.25% } | |
| .container .columns.two { width: 12.5% } | |
| .container .columns.three { width: 18.75% } | |
| .container .columns.four { width: 25% } | |
| .container .columns.five { width: 31.25% } | |
| .container .columns.six { width: 37.5% } | |
| .container .columns.seven { width: 43.75% } | |
| .container .columns.eight { width: 50% } | |
| .container .columns.nine { width: 56.25% } | |
| .container .columns.ten { width: 62.5% } |
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
| public static class BookmarksDatabase | |
| { | |
| public static string ConnectionString | |
| { | |
| get | |
| { | |
| return ConfigurationManager.ConnectionStrings["Bookmarks"].ConnectionString; | |
| } | |
| } |
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
| class DecoratorPattern | |
| { | |
| interface IComponent | |
| { | |
| string Operation(); | |
| } | |
| class Component : IComponent | |
| { | |
| public string Operation() |