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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>ANSIBlackColor</key> | |
| <data> | |
| YnBsaXN0MDDUAQIDBAUGFRZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
| AAGGoKMHCA9VJG51bGzTCQoLDA0OVU5TUkdCXE5TQ29sb3JTcGFjZVYkY2xhc3NPECcw | |
| LjExMzcyNTQ5MDIgMC4xMjE1Njg2Mjc1IDAuMTMzMzMzMzMzMwAQAYAC0hAREhNaJGNs | |
| YXNzbmFtZVgkY2xhc3Nlc1dOU0NvbG9yohIUWE5TT2JqZWN0XxAPTlNLZXllZEFyY2hp |
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
| @-moz-document domain("www.chatwork.com") { | |
| @import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css);.wrapper,.globalHeader,.numAdminCount,.chatListUnreadNum,.contentHl,.mainContentHl,.sideContentHl,.chatSendArea,.button{background-image:none;-webkit-box-shadow:none;box-shadow:none;border-radius:0;}.promotionArea{height:0;display:none;}.chatRoomListArea{padding-bottom:141px;}.globalHeader .ico35AdminTask,.globalHeader .ico35AdminFile,.globalHeader .ico35AdminContact,.globalHeader .ico27Menu{text-indent:inherit;color:#fff;background:none;font-size:25px;line-height:1.4;height:inherit;}.globalHeader .ico35AdminTask:before{content:"\f0ae";font-family:FontAwesome;}.globalHeader .ico35AdminFile:before{content:"\f07b";font-family:FontAwesome;}.globalHeader .ico35AdminContact:before{content:"\f0c0";font-family:FontAwesome;}.globalHeader .ico27Menu:before{content:"\f05a";font-family:FontAwesome;}.actionArea{top:0;bottom:inherit;}.actionArea .actionNav{border:none;-webkit-box-shadow:none |
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
| @-moz-document domain("connpass.com"), domain("*.connpass.com") { | |
| /** | |
| * $dark: #2c3e50; | |
| * $light: #ecf0f1; | |
| * $blue: #3498db; | |
| * $darkBlue: #2980b9; | |
| * $red: #e74c3c; | |
| */ | |
| html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, button, cite, code, del, dfn, img, ins, kbd, q, samp, small, sub, sup, tt, var, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, textarea { |
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
| @-moz-document domain("kirik.tea-nifty.com") { | |
| body { | |
| background: #fff !important; | |
| } | |
| #pagebody, | |
| #beta-inner, | |
| #beta { | |
| background: #f5f5f5 !important; | |
| } | |
| .layout-two-column-right #alpha-inner, |
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
| <?hh | |
| echo 'Hello from HHVM ' . HHVM_VERSION; |
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
| [ | |
| "about", | |
| "ac", | |
| "access", | |
| "account", | |
| "accounts", | |
| "activate", | |
| "ad", | |
| "add", | |
| "address", |
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
| Server { | |
| SourceRoot = /app/web | |
| DefaultDocument = index_dev.php | |
| } | |
| VirtualHost { | |
| * { | |
| Pattern = .* | |
| RewriteRules { | |
| * { |
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
| <?php | |
| /** | |
| * csv-split.php | |
| * | |
| * ```sh | |
| * php csv-split.php -n 1000 -f input.csv | |
| * ``` | |
| * | |
| * @author Keisuke SATO <sato@crocos.co.jp> | |
| */ |
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
| @charset "UTF-8"; | |
| /* MS Pゴシック -> ヒラギノ角ゴ */ | |
| @font-face { | |
| font-family: "MS Pゴシック"; | |
| src: local("HiraKakuPro-W3"); | |
| } | |
| @font-face { | |
| font-family: "MS PGothic"; | |
| src: local("HiraKakuPro-W3"); |
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
| AWS = require "aws-sdk" | |
| AWS.config.update | |
| accessKeyId: "chacococco" | |
| secretAccessKey: "chacococco" | |
| region: "us-east-1" | |
| route53 = new AWS.Route53 | |
| route53.client.listHostedZones {}, (err, data) -> |