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
Homebrew build logs for homebrew/php/php70-kafka on macOS 10.11.6 | |
Build date: 2016-09-29 12:06:01 |
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
Homebrew build logs for homebrew/php/php70-kafka on macOS 10.11.6 | |
Build date: 2016-09-29 12:06:01 |
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
package main | |
import "fmt" | |
type Fetcher interface { | |
// Fetch returns the body of URL and | |
// a slice of URLs found on that page. | |
Fetch(url string) (body string, urls []string, err error) | |
} |
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
#!/usr/local/bin/python2.7 | |
# encoding: utf-8 | |
''' | |
FindSum -- There is an array with positive integer. given a positive integer S,\ | |
find the total number of combinations in Which the numbers' sum is S. | |
FindSum is a description | |
It defines classes_and_methods |
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
Below is my configration in global.php | |
return array( | |
'service_manager' => array( | |
'abstract_factories' => array( | |
'Zend\Log\LoggerAbstractServiceFactory' | |
) | |
), | |
'log' => array( | |
'Application\Web' => array( |