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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
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
@include background(linear-gradient(top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8))); | |
@include background(linear-gradient(left, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8))); | |
@include background(linear-gradient(#acac00, #969100 16.7%, #887e00 33.4%, #887600 50.1%, #887600 66.8%, #977b00 84.5%, #b68c00)); |
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
<ul class="favoriteList"> | |
<li ng-repeat="c in star.getStarIconList() track by $index" ng-class="c"></li> | |
</ul> |
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
"star":{ | |
"star_num": 1, | |
"star_all": { | |
"5": 10, | |
"4": 26, | |
"3": 4, | |
"2": 4, | |
"1": 9 | |
} | |
} |
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
$scope.star = Star.fromData(data.star); |
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
/** | |
* スタークラス | |
*/ | |
export class Star { | |
/** | |
* コンストラクタ | |
* @param starNum スターの数 | |
* @param starTotalLength スター総数 | |
* @param starAll スター詳細 | |
* @param starAverage スター総合の平均値 |