-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1e75881
Showing
6 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
__pycache__/ | ||
*.qmlc | ||
settings.json | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# <img src="https://raw.githack.com/FortAwesome/Font-Awesome/master/svgs/solid/robot.svg" card_color="#40DBB0" width="50" height="50" style="vertical-align:bottom"/> Ann | ||
Phrases from leslie knope to ann perkins | ||
|
||
## About | ||
|
||
|
||
## Examples | ||
* "Oh, ann" | ||
* "Nope says" | ||
|
||
## Credits | ||
EmmaK | ||
|
||
## Category | ||
**Entertainment** | ||
Silly | ||
|
||
## Tags | ||
#Parks and recreation | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from mycroft import MycroftSkill, intent_file_handler | ||
|
||
|
||
class Ann(MycroftSkill): | ||
def __init__(self): | ||
MycroftSkill.__init__(self) | ||
|
||
@intent_file_handler('ann.intent') | ||
def handle_ann(self, message): | ||
self.speak_dialog('ann') | ||
|
||
|
||
def create_skill(): | ||
return Ann() | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
You are a tropical fish | ||
I always forget because you’re so pretty, you’re not used to rejection. | ||
Sweet and beautiful ann has never been dumped before | ||
You beautiful spinster. i will find you love | ||
You’re a beautiful, talented, brilliant, powerful musk-ox. thank you, ox. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Ann | ||
skillMetadata: | ||
sections: | ||
- name: Options << Name of section | ||
fields: | ||
- name: internal_python_variable_name | ||
type: text | ||
label: Setting Friendly Display Name | ||
value: "" | ||
placeholder: demo prompt in the input box | ||
- name: Login << Name of another section | ||
fields: | ||
- type: label | ||
label: Just a little bit of extra info for the user to understand following settings | ||
- name: username | ||
type: text | ||
label: Username | ||
value: "" | ||
- name: password | ||
type: password | ||
label: Password | ||
value: "" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Oh, ann | ||
Nope says |