Pass laws to get oppression points.
First to 5 points wins.
Control population's emotions:
- Fear
- Anger
- Lethargy
Pass laws to get oppression points.
First to 5 points wins.
Control population's emotions:
| /* | |
| * Uses the Euvlidean Algorithm. | |
| * http://en.wikipedia.org/wiki/Euclidean_algorithm | |
| */ | |
| function greatestCommonDivisor( a, b ) { | |
| if ( b > a ) { | |
| var t = a; | |
| a = b; | |
| b = t; | |
| } |
| <p data-bind="text: name"></p> | |
| <script> | |
| var viewModel = function () { | |
| this.name = 'Ivan'; | |
| }; | |
| ko.applyBindings( viewModel ); | |
| </script> |
| <input data-bind="value: firstName" placeholder="first name"/> | |
| <input data-bind="value: lastName" placeholder="last name"/> | |
| <p data-bind="text: fullName()"></p> | |
| <script> | |
| var viewModel = function () { | |
| var self = this; | |
| self.firstName = ko.observable( 'Ivan' ); | |
| self.lastName = ko.observable( 'M' ); |
| <?php | |
| namespace My_Namespace; | |
| class My_Class { | |
| public static function my_method () { | |
| return 'wow'; | |
| } | |
| } |
| .link-underline a { | |
| border-bottom: 3px solid #b4e7f8; | |
| box-shadow: inset 0 -5px 0 #b4e7f8; | |
| color: inherit; | |
| transition: background .15s cubic-bezier(.33,.66,.66,1); | |
| } | |
| .link-underline a:hover { | |
| background: #b4e7f8; | |
| } |
| // Inspired by https://github.com/andyw8/do_by | |
| // Usage: | |
| // TODO( 'Finish this feature', 'Decemeber 25, 2015' ); | |
| // TODO( 'Finish this feature', '12/15/2015' ); | |
| this.TODO = function () { | |
| var message = arguments[0]; | |
| var date = arguments[1] || false; | |
| // TODO only set the hours to zero if no time is provided in the TODO |
Creating custom columns for your website
.row {
@include clearfix;
}
.column {
float: left;