$ brew search mcrypt
$ brew install homebrew/php/php55-mcrypt
$ php --ini
Configuration File (php.ini) Path: /etc
Loaded Configuration File: (none)
Scan for additional .ini files in: /Library/Server/Web/Config/php
Additional .ini files parsed: (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
| $ npm install -g git://github.com/mhevery/jasmine-node#Jasmine2.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
| 01 北海道 | |
| 02 青森県 | |
| 03 岩手県 | |
| 04 宮城県 | |
| 05 秋田県 | |
| 06 山形県 | |
| 07 福島県 | |
| 08 茨城県 | |
| 09 栃木県 | |
| 10 群馬県 |
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 artisan | |
| Laravel Framework version 5.0.4 | |
| Usage: | |
| [options] command [arguments] | |
| Options: | |
| --help (-h) Display this help message | |
| --quiet (-q) Do not output any message | |
| --verbose (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug |
Panda 4 | News & Inspiration Dashboard - Chrome ウェブストア https://chrome.google.com/webstore/detail/panda-4-news-inspiration/haafibkemckmbknhfkiiniobjpgkebko
Muzli - Design Breakfast - Chrome ウェブストア https://chrome.google.com/webstore/detail/muzli-design-breakfast/glcipcfhmopcgidicgdociohdoicpdfc
Full Page Screen Capture - Chrome ウェブストア https://chrome.google.com/webstore/detail/full-page-screen-capture/fdpohaocaechififmbbbbbknoalclacl
JavaScript Errors Notifier - Chrome ウェブストア https://chrome.google.com/webstore/detail/javascript-errors-notifie/jafmfknfnkoekkdocjiaipcnmkklaajd?hl=ja
LGTM - Chrome ウェブストア https://chrome.google.com/webstore/detail/lgtm/oeacdmeoegfagkmiecjjikpfgebmalof?hl=ja&gl=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
| var promise = new Promise(function(resolve, reject) { | |
| if ( /* 何らかの非同期処理 */ ) { | |
| resolve(); // 成功 | |
| } else { | |
| reject(); // 失敗 | |
| } | |
| }); | |
| promise.then(function(result) { |
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 count = 0; | |
| function hoge() { | |
| return new Promise(function(resolve, reject) { | |
| setTimeout(function() { | |
| if (count < 2) { | |
| resolve(count); | |
| console.log((new Date()).getTime()); | |
| } else { |
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 | |
| namespace Foo9\Img; | |
| use Symfony\Component\Process\Process; | |
| use Symfony\Component\Process\ProcessBuilder; | |
| class Compare | |
| { | |
| /** @var integer */ | |
| private $fuzz; |