2015-01-16 14:23:00 -08:00
package DDG::Goodie::IsAwesome::Dronov ;
# ABSTRACT: Dronov's first Goodie
use DDG::Goodie ;
2015-03-07 15:39:30 -08:00
use strict ;
2015-01-16 14:23:00 -08:00
zci answer_type = > "is_awesome_dronov" ;
zci is_cached = > 1 ;
name "Mikhail Dronov" ;
description "http://dronov.net" ;
2015-01-17 04:54:41 -08:00
primary_example_queries "duckduckhack dronov" ;
2015-01-16 14:23:00 -08:00
category "programming" ;
topics "geek" , "programming" ;
code_url "https://github.com/duckduckgo/zeroclickinfo-goodies/blob/master/lib/DDG/Goodie/IsAwesome/Dronov.pm" ;
2015-01-17 04:54:41 -08:00
attribution github = > [ "https://github.com/dronov" , "dronov" ] ,
2015-01-16 14:23:00 -08:00
twitter = > "dronovmm" ;
triggers start = > "duckduckhack dronov" ;
handle remainder = > sub {
return if $ _ ;
2015-01-16 21:55:16 -08:00
return "Mikhail Dronov is awesome and has successfully completed the DuckDuckHack Goodie tutorial! He's saying hello from far cold Russia. Find him at dronov.net" ;
2015-01-16 14:23:00 -08:00
} ;
1 ;