Quotes table#

The database used here is SQLite. The main data science tricks will not change much depending on the database in use because they all adhere to PEP249 (commonly known as Python DB API 2). For different databases, different third-party Python libraries (such as Psycopg2 for PostgreSQL) must be installed.

Importing libraries and packages#

1# Mathematical operations and data manipulation
2import random
3
4# Database
5import sqlite3

Set paths#

1# Path to datasets directory
2data_path = "./datasets"
3# Path to assets directory (for saving results to)
4assets_path = "./assets"

Connect#

1with sqlite3.connect(f"{assets_path}/discworld.db") as conn:
2    cursor = conn.cursor()

Create quotes table#

 1cursor.execute("PRAGMA foreign_keys = 1")
 2sql = """
 3    CREATE TABLE IF NOT EXISTS quotes (
 4        user_id text,
 5        quotes text,
 6        FOREIGN KEY (user_id) REFERENCES user (email)
 7        ON DELETE CASCADE ON UPDATE NO ACTION
 8    )
 9"""
10cursor.execute(sql)
<sqlite3.Cursor at 0x7fba8f9f52d0>
  1list_quotes = [
  2    "Esme Weatherwax hadn''t done nice. She''d done what was needed.",
  3    (
  4        "If you want to amount to anything as a witch, you got to learn three "
  5        "things. What''s real, what''s not real, and what''s the difference."
  6    ),
  7    ("But I can''t do none of that stuff. That wouldn''t be Right."),
  8    (
  9        "Sin, young man, is when you treat people like things. Including "
 10        "yourself. That''s what sin is."
 11    ),
 12    (
 13        "She''d never mastered the talent for apologizing, but she "
 14        "appreciated it in other people."
 15    ),
 16    (
 17        "People are riddled by Doubt."
 18        "Doubt is the engine that drives people through their lives."
 19    ),
 20    (
 21        "Doubt is the elastic band in the little model aeroplane of people''s"
 22        "soul, and they spend their time winding it up until it knots."
 23    ),
 24    (
 25        "Granny nurtures an implicit belief that everything should get out"
 26        "of her way extended to other witches, very tall trees and, on"
 27        "occasion, mountains."
 28    ),
 29    ("Witches are all equal."),
 30    ("We don''t have things like head witches."),
 31    ("That''s quite against the spirit of witchcraft."),
 32    ("If I''d had to buy you, you wouldn''t be worth the price.",),
 33    (
 34        "You can''t go around building a better world for people."
 35        "Only people can build a better world for people. Otherwise"
 36        "it''s just a cage."
 37    ),
 38    (
 39        "Humans take. They plough with iron. They ravage the land."
 40        "Some do, I''ll grant you that. Others put back more''n they take."
 41        "They put back love. They''ve got soil in their bones."
 42    ),
 43    ("We look to… the edges"),
 44    ("If anyone locked me in a dungeon, there''d be screams."),
 45    (
 46        "There''s a billion places like home. But only one of ''em''s"
 47        "where you live."
 48    ),
 49    ("Pull up a chair and call the cat a bastard"),
 50    ("You''re wondering if I really would slit your throat."),
 51    (
 52        "To tell the truth, I don''t know either, but think of the fun"
 53        "we could have finding out."
 54    ),
 55    (
 56        "Don''t do anything I wouldn''t do, if you ever find anything I"
 57        "wouldn''t do."
 58    ),
 59    ("When you break rules, break ''em good and hard."),
 60    ("Bugger off sweetheart Nanny''s busy"),
 61    (
 62        "An'' once again I have to point out that it is a matter of fine "
 63        "details"
 64    ),
 65    ("You bloated lying blutocat!"),
 66    ("He just painted the showy stuff in the front ..."),
 67    (
 68        "And what about these cherubs? We''re not going to get them too, "
 69        "are we? I don''t like to see little babies flying through the air."
 70    ),
 71    ("Well, they''re not fooling ME."),
 72    (
 73        "Not that I don''t like him, stinky as he is. I''ve always been one "
 74        "for the horns, as you might say. Goats is clever. Sheep ain''t. "
 75        "No offence, my dear."
 76    ),
 77    (
 78        "Nanny Ogg could see the future in the froth on a beer mug. It "
 79        "invariably showed that she was going to enjoy a refreshing drink "
 80        "which she almost certainly was not going to pay for."
 81    ),
 82    ("...she was definitely feeling several twinkles short of a glitter..."),
 83    (
 84        "You wouldn''t be a witch if you couldn''t jump to conclusions, right?"
 85        "Sometimes there isn''t time to do anything else but take a flying"
 86        " leap."
 87    ),
 88    (
 89        "Sometimes you have to trust to experience and intuition and general "
 90        "awareness and take a running jump."
 91    ),
 92    ("You don''t juggle matches in a fireworks factory."),
 93    ("Blessings be on this house."),
 94    (
 95        "People think that stories are shaped by people. In fact, it''s "
 96        "the other way around."
 97    ),
 98    (
 99        "The wages of sin is death but so is the salary of virtue, and at "
100        "least the evil get to go home early on Fridays."
101    ),
102    (
103        "Wisdom is one of the few things that looks bigger the further away"
104        " it is."
105    ),
106    ("Cats gravitate to kitchens like rocks gravitate to gravity."),
107    (
108        "Humanity''s a nice place to visit, but you wouldn''t want to live"
109        " there."
110    ),
111    (
112        "Where''s the pleasure in bein'' the winner if the loser ain''t "
113        "alive to know they''ve lost?"
114    ),
115    (
116        "Good and bad is tricky. I ain''t too certain about where people "
117        "stand. P''raps what matters is which way you face."
118    ),
119    (
120        "Cats are like witches. They don''t fight to kill, but to win. There "
121        "is a difference. There''s no point in killing an opponent. That way, "
122        "they won''t know they''ve lost, and to be a real winner you have to "
123        "have an opponent who is beaten and knows it. There’s no triumph over "
124        "a corpse, but a beaten opponent, who will remain beaten every day of "
125        "the remainder of their sad and wretched life, is something to "
126        "treasure."
127    ),
128]
129print(len(list_quotes))
43
 1cursor.execute("PRAGMA foreign_keys = 1")
 2sql = """INSERT INTO quotes VALUES ('{}', '{}')"""
 3rows = cursor.execute("SELECT * FROM user ORDER BY age")
 4for row in rows:
 5    email = row[0]
 6    print("Going to create rows for {}".format(email))
 7    for i in range(10):
 8        random_quote = random.choice(list_quotes)
 9        conn.cursor().execute(sql.format(email, random_quote))
10conn.commit()
Going to create rows for swivel@lspace.org
Going to create rows for agnes@lspace.org
Going to create rows for granny@lspace.org
Going to create rows for millie@lspace.org
Going to create rows for grodley@lspace.com
1cursor.execute("PRAGMA foreign_keys = 1")
2sql = """
3    SELECT * FROM quotes
4    JOIN user ON quotes.user_id = user.email
5    WHERE user.email='granny@lspace.org'
6"""
7rows = cursor.execute(sql)
8for row in rows:
9    print(row)
('granny@lspace.org', 'We look to… the edges', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', '...she was definitely feeling several twinkles short of a glitter...', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "We don't have things like head witches.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Blessings be on this house.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "We don't have things like head witches.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Bugger off sweetheart Nanny's busy", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', '...she was definitely feeling several twinkles short of a glitter...', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "If anyone locked me in a dungeon, there'd be screams.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'You bloated lying blutocat!', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Witches are all equal.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'He just painted the showy stuff in the front ...', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You're wondering if I really would slit your throat.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "That's quite against the spirit of witchcraft.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'We look to… the edges', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Blessings be on this house.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Well, they're not fooling ME.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Well, they're not fooling ME.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', '...she was definitely feeling several twinkles short of a glitter...', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "We don't have things like head witches.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Witches are all equal.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'You bloated lying blutocat!', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Witches are all equal.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "That's quite against the spirit of witchcraft.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Bugger off sweetheart Nanny's busy", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Bugger off sweetheart Nanny's busy", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Witches are all equal.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "We don't have things like head witches.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'We look to… the edges', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You're wondering if I really would slit your throat.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'He just painted the showy stuff in the front ...', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "That's quite against the spirit of witchcraft.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'We look to… the edges', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "That's quite against the spirit of witchcraft.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Pull up a chair and call the cat a bastard', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'We look to… the edges', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Well, they're not fooling ME.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "When you break rules, break 'em good and hard.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'We look to… the edges', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Blessings be on this house.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Well, they're not fooling ME.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You don't juggle matches in a fireworks factory.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Pull up a chair and call the cat a bastard', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Bugger off sweetheart Nanny's busy", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "When you break rules, break 'em good and hard.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Bugger off sweetheart Nanny's busy", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Pull up a chair and call the cat a bastard', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "That's quite against the spirit of witchcraft.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "When you break rules, break 'em good and hard.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'He just painted the showy stuff in the front ...', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "When you break rules, break 'em good and hard.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You're wondering if I really would slit your throat.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "We don't have things like head witches.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "We don't have things like head witches.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You're wondering if I really would slit your throat.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "If anyone locked me in a dungeon, there'd be screams.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You don't juggle matches in a fireworks factory.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Pull up a chair and call the cat a bastard', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', '...she was definitely feeling several twinkles short of a glitter...', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Witches are all equal.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Witches are all equal.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Well, they're not fooling ME.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'You bloated lying blutocat!', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You don't juggle matches in a fireworks factory.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You're wondering if I really would slit your throat.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'He just painted the showy stuff in the front ...', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "If anyone locked me in a dungeon, there'd be screams.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Pull up a chair and call the cat a bastard', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'You bloated lying blutocat!', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "That's quite against the spirit of witchcraft.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You don't juggle matches in a fireworks factory.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "That's quite against the spirit of witchcraft.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'You bloated lying blutocat!', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "We don't have things like head witches.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', '...she was definitely feeling several twinkles short of a glitter...', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "When you break rules, break 'em good and hard.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Pull up a chair and call the cat a bastard', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Blessings be on this house.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "When you break rules, break 'em good and hard.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "That's quite against the spirit of witchcraft.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "That's quite against the spirit of witchcraft.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "If anyone locked me in a dungeon, there'd be screams.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', '...she was definitely feeling several twinkles short of a glitter...', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You're wondering if I really would slit your throat.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "That's quite against the spirit of witchcraft.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'You bloated lying blutocat!', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You don't juggle matches in a fireworks factory.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You're wondering if I really would slit your throat.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'We look to… the edges', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'You bloated lying blutocat!', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'We look to… the edges', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Bugger off sweetheart Nanny's busy", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'We look to… the edges', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'Pull up a chair and call the cat a bastard', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "When you break rules, break 'em good and hard.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Well, they're not fooling ME.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "If anyone locked me in a dungeon, there'd be screams.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "That's quite against the spirit of witchcraft.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "If anyone locked me in a dungeon, there'd be screams.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.', 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('granny@lspace.org', "That's quite against the spirit of witchcraft.", 'granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')

Deleting a user#

1cursor.execute("PRAGMA foreign_keys = 1")
2cursor.execute("DELETE FROM user WHERE email='millie@lspace.org'")
3conn.commit()
1# Check results
2rows = cursor.execute("SELECT * FROM user")
3for row in rows:
4    print(row)
('agnes@lspace.org', 'Agnes', 'Nitt', '123 Amper Sands, Mad Stoat', 31, 'F')
('granny@lspace.org', 'Esmeralda', 'Weatherwax', 'The cottage, Bad Ass', 31, 'F')
('grodley@lspace.com', 'Sister', 'Grodley', '456 Le Foie Heureux, Slice', 39, 'F')
('swivel@lspace.org', 'Geoffrey', 'Swivel', 'The Shires', 20, 'M')
1# Check the cascade
2rows = cursor.execute("SELECT * FROM quotes")
3for row in rows:
4    print(row)
('swivel@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('swivel@lspace.org', "That's quite against the spirit of witchcraft.")
('swivel@lspace.org', 'You bloated lying blutocat!')
('swivel@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('swivel@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('swivel@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('swivel@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('swivel@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('swivel@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('swivel@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('agnes@lspace.org', 'Witches are all equal.')
('agnes@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('agnes@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('agnes@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('agnes@lspace.org', "You're wondering if I really would slit your throat.")
('agnes@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('agnes@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('agnes@lspace.org', 'We look to… the edges')
('agnes@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('agnes@lspace.org', 'We look to… the edges')
('granny@lspace.org', 'We look to… the edges')
('granny@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('granny@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('granny@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('granny@lspace.org', "We don't have things like head witches.")
('granny@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('granny@lspace.org', 'Blessings be on this house.')
('granny@lspace.org', "We don't have things like head witches.")
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('grodley@lspace.com', "When you break rules, break 'em good and hard.")
('grodley@lspace.com', 'You bloated lying blutocat!')
('grodley@lspace.com', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('grodley@lspace.com', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('grodley@lspace.com', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('grodley@lspace.com', 'He just painted the showy stuff in the front ...')
('grodley@lspace.com', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('grodley@lspace.com', "When you break rules, break 'em good and hard.")
('grodley@lspace.com', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('grodley@lspace.com', "You're wondering if I really would slit your throat.")
('swivel@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('swivel@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('swivel@lspace.org', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('swivel@lspace.org', "Bugger off sweetheart Nanny's busy")
('swivel@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('swivel@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('swivel@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('swivel@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('swivel@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('swivel@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('agnes@lspace.org', 'He just painted the showy stuff in the front ...')
('agnes@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('agnes@lspace.org', "You don't juggle matches in a fireworks factory.")
('agnes@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('agnes@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('agnes@lspace.org', "We don't have things like head witches.")
('agnes@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('agnes@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('agnes@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('agnes@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('granny@lspace.org', "Bugger off sweetheart Nanny's busy")
('granny@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('granny@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('granny@lspace.org', 'You bloated lying blutocat!')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('granny@lspace.org', 'Witches are all equal.')
('granny@lspace.org', 'He just painted the showy stuff in the front ...')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('granny@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('grodley@lspace.com', 'You bloated lying blutocat!')
('grodley@lspace.com', 'Blessings be on this house.')
('grodley@lspace.com', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('grodley@lspace.com', 'You bloated lying blutocat!')
('grodley@lspace.com', 'We look to… the edges')
('grodley@lspace.com', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('grodley@lspace.com', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('grodley@lspace.com', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('grodley@lspace.com', "An' once again I have to point out that it is a matter of fine details")
('grodley@lspace.com', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('swivel@lspace.org', "Well, they're not fooling ME.")
('swivel@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('swivel@lspace.org', "You're wondering if I really would slit your throat.")
('swivel@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('swivel@lspace.org', "Bugger off sweetheart Nanny's busy")
('swivel@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('swivel@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('swivel@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('swivel@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('swivel@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('agnes@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('agnes@lspace.org', "That's quite against the spirit of witchcraft.")
('agnes@lspace.org', "You don't juggle matches in a fireworks factory.")
('agnes@lspace.org', 'Blessings be on this house.')
('agnes@lspace.org', 'He just painted the showy stuff in the front ...')
('agnes@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('agnes@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('agnes@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('agnes@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('agnes@lspace.org', 'Blessings be on this house.')
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('granny@lspace.org', "You're wondering if I really would slit your throat.")
('granny@lspace.org', "That's quite against the spirit of witchcraft.")
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('granny@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('granny@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('granny@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('granny@lspace.org', 'We look to… the edges')
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('grodley@lspace.com', "But I can't do none of that stuff. That wouldn't be Right.")
('grodley@lspace.com', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('grodley@lspace.com', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('grodley@lspace.com', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('grodley@lspace.com', "But I can't do none of that stuff. That wouldn't be Right.")
('grodley@lspace.com', "That's quite against the spirit of witchcraft.")
('grodley@lspace.com', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('grodley@lspace.com', "Bugger off sweetheart Nanny's busy")
('grodley@lspace.com', "You're wondering if I really would slit your throat.")
('grodley@lspace.com', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', 'Witches are all equal.')
('swivel@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('swivel@lspace.org', "When you break rules, break 'em good and hard.")
('swivel@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('swivel@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('swivel@lspace.org', 'You bloated lying blutocat!')
('swivel@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('swivel@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('swivel@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('agnes@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('agnes@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('agnes@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('agnes@lspace.org', 'He just painted the showy stuff in the front ...')
('agnes@lspace.org', "You're wondering if I really would slit your throat.")
('agnes@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('agnes@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('agnes@lspace.org', 'He just painted the showy stuff in the front ...')
('agnes@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('agnes@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('granny@lspace.org', 'Blessings be on this house.')
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('granny@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('granny@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('granny@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('granny@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('granny@lspace.org', "Well, they're not fooling ME.")
('granny@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('grodley@lspace.com', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('grodley@lspace.com', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('grodley@lspace.com', 'We look to… the edges')
('grodley@lspace.com', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('grodley@lspace.com', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('grodley@lspace.com', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('grodley@lspace.com', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('grodley@lspace.com', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('grodley@lspace.com', "If anyone locked me in a dungeon, there'd be screams.")
('grodley@lspace.com', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('swivel@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('swivel@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('swivel@lspace.org', "Bugger off sweetheart Nanny's busy")
('swivel@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('swivel@lspace.org', "You don't juggle matches in a fireworks factory.")
('swivel@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('swivel@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('swivel@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('swivel@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('agnes@lspace.org', "When you break rules, break 'em good and hard.")
('agnes@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('agnes@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('agnes@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('agnes@lspace.org', 'You bloated lying blutocat!')
('agnes@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('agnes@lspace.org', "We don't have things like head witches.")
('agnes@lspace.org', 'We look to… the edges')
('agnes@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('agnes@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('granny@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('granny@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('granny@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('granny@lspace.org', "Well, they're not fooling ME.")
('granny@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('granny@lspace.org', "We don't have things like head witches.")
('granny@lspace.org', 'Witches are all equal.')
('granny@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('grodley@lspace.com', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('grodley@lspace.com', '...she was definitely feeling several twinkles short of a glitter...')
('grodley@lspace.com', 'Witches are all equal.')
('grodley@lspace.com', 'He just painted the showy stuff in the front ...')
('grodley@lspace.com', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('grodley@lspace.com', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('grodley@lspace.com', 'He just painted the showy stuff in the front ...')
('grodley@lspace.com', 'We look to… the edges')
('grodley@lspace.com', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('grodley@lspace.com', "When you break rules, break 'em good and hard.")
('swivel@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('swivel@lspace.org', 'Witches are all equal.')
('swivel@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('swivel@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('swivel@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('swivel@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('swivel@lspace.org', "When you break rules, break 'em good and hard.")
('swivel@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('swivel@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('agnes@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('agnes@lspace.org', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('agnes@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('agnes@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('agnes@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('agnes@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('agnes@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('agnes@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('agnes@lspace.org', "Bugger off sweetheart Nanny's busy")
('agnes@lspace.org', "When you break rules, break 'em good and hard.")
('granny@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('granny@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('granny@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('granny@lspace.org', 'You bloated lying blutocat!')
('granny@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('granny@lspace.org', 'Witches are all equal.')
('granny@lspace.org', "That's quite against the spirit of witchcraft.")
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('granny@lspace.org', "Bugger off sweetheart Nanny's busy")
('grodley@lspace.com', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('grodley@lspace.com', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('grodley@lspace.com', "An' once again I have to point out that it is a matter of fine details")
('grodley@lspace.com', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('grodley@lspace.com', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('grodley@lspace.com', 'Witches are all equal.')
('grodley@lspace.com', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('grodley@lspace.com', 'Pull up a chair and call the cat a bastard')
('grodley@lspace.com', "Bugger off sweetheart Nanny's busy")
('grodley@lspace.com', 'Wisdom is one of the few things that looks bigger the further away it is.')
('swivel@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('swivel@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('swivel@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('swivel@lspace.org', 'Witches are all equal.')
('swivel@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('swivel@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('swivel@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('swivel@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('swivel@lspace.org', 'Witches are all equal.')
('agnes@lspace.org', 'He just painted the showy stuff in the front ...')
('agnes@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('agnes@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('agnes@lspace.org', "That's quite against the spirit of witchcraft.")
('agnes@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('agnes@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('agnes@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('agnes@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('agnes@lspace.org', 'We look to… the edges')
('agnes@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('granny@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('granny@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('granny@lspace.org', "Bugger off sweetheart Nanny's busy")
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('granny@lspace.org', 'Witches are all equal.')
('granny@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('granny@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('granny@lspace.org', "We don't have things like head witches.")
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('grodley@lspace.com', "Bugger off sweetheart Nanny's busy")
('grodley@lspace.com', "Bugger off sweetheart Nanny's busy")
('grodley@lspace.com', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('grodley@lspace.com', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('grodley@lspace.com', "You don't juggle matches in a fireworks factory.")
('grodley@lspace.com', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('grodley@lspace.com', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('grodley@lspace.com', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('grodley@lspace.com', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('grodley@lspace.com', "Well, they're not fooling ME.")
('swivel@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('swivel@lspace.org', 'Blessings be on this house.')
('swivel@lspace.org', "You're wondering if I really would slit your throat.")
('swivel@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('swivel@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('swivel@lspace.org', "Bugger off sweetheart Nanny's busy")
('swivel@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('swivel@lspace.org', 'Blessings be on this house.')
('swivel@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('swivel@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('agnes@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('agnes@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('agnes@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('agnes@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('agnes@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('agnes@lspace.org', "You don't juggle matches in a fireworks factory.")
('agnes@lspace.org', 'You bloated lying blutocat!')
('agnes@lspace.org', "That's quite against the spirit of witchcraft.")
('agnes@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('agnes@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('granny@lspace.org', 'We look to… the edges')
('granny@lspace.org', "You're wondering if I really would slit your throat.")
('granny@lspace.org', 'He just painted the showy stuff in the front ...')
('granny@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('granny@lspace.org', "That's quite against the spirit of witchcraft.")
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('granny@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('granny@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('granny@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('grodley@lspace.com', 'Pull up a chair and call the cat a bastard')
('grodley@lspace.com', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('grodley@lspace.com', 'You bloated lying blutocat!')
('grodley@lspace.com', "Bugger off sweetheart Nanny's busy")
('grodley@lspace.com', "People think that stories are shaped by people. In fact, it's the other way around.")
('grodley@lspace.com', "But I can't do none of that stuff. That wouldn't be Right.")
('grodley@lspace.com', 'We look to… the edges')
('grodley@lspace.com', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('grodley@lspace.com', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('grodley@lspace.com', '...she was definitely feeling several twinkles short of a glitter...')
('swivel@lspace.org', "You don't juggle matches in a fireworks factory.")
('swivel@lspace.org', "You don't juggle matches in a fireworks factory.")
('swivel@lspace.org', "That's quite against the spirit of witchcraft.")
('swivel@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('swivel@lspace.org', 'We look to… the edges')
('swivel@lspace.org', 'He just painted the showy stuff in the front ...')
('swivel@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('swivel@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', 'You bloated lying blutocat!')
('agnes@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('agnes@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('agnes@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('agnes@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('agnes@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('agnes@lspace.org', 'He just painted the showy stuff in the front ...')
('agnes@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('agnes@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('agnes@lspace.org', "You're wondering if I really would slit your throat.")
('agnes@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('granny@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('granny@lspace.org', 'We look to… the edges')
('granny@lspace.org', "That's quite against the spirit of witchcraft.")
('granny@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('granny@lspace.org', 'Pull up a chair and call the cat a bastard')
('granny@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('granny@lspace.org', 'We look to… the edges')
('granny@lspace.org', "Well, they're not fooling ME.")
('grodley@lspace.com', 'Blessings be on this house.')
('grodley@lspace.com', 'You bloated lying blutocat!')
('grodley@lspace.com', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('grodley@lspace.com', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('grodley@lspace.com', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('grodley@lspace.com', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('grodley@lspace.com', "An' once again I have to point out that it is a matter of fine details")
('grodley@lspace.com', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('grodley@lspace.com', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('grodley@lspace.com', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('swivel@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('swivel@lspace.org', 'You bloated lying blutocat!')
('swivel@lspace.org', 'We look to… the edges')
('swivel@lspace.org', "When you break rules, break 'em good and hard.")
('swivel@lspace.org', 'He just painted the showy stuff in the front ...')
('swivel@lspace.org', 'Blessings be on this house.')
('swivel@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('swivel@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('swivel@lspace.org', "Bugger off sweetheart Nanny's busy")
('swivel@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('agnes@lspace.org', 'We look to… the edges')
('agnes@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('agnes@lspace.org', 'Blessings be on this house.')
('agnes@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('agnes@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('agnes@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('agnes@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('agnes@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('agnes@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('agnes@lspace.org', "We don't have things like head witches.")
('granny@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('granny@lspace.org', "When you break rules, break 'em good and hard.")
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('granny@lspace.org', 'We look to… the edges')
('granny@lspace.org', 'Blessings be on this house.')
('granny@lspace.org', "Well, they're not fooling ME.")
('granny@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('granny@lspace.org', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('granny@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('grodley@lspace.com', "That's quite against the spirit of witchcraft.")
('grodley@lspace.com', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('grodley@lspace.com', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('grodley@lspace.com', 'He just painted the showy stuff in the front ...')
('grodley@lspace.com', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('grodley@lspace.com', "We don't have things like head witches.")
('grodley@lspace.com', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('grodley@lspace.com', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('grodley@lspace.com', 'Pull up a chair and call the cat a bastard')
('grodley@lspace.com', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('swivel@lspace.org', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('swivel@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('swivel@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('swivel@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('swivel@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('swivel@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('swivel@lspace.org', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('swivel@lspace.org', "Well, they're not fooling ME.")
('swivel@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', 'Blessings be on this house.')
('agnes@lspace.org', "Well, they're not fooling ME.")
('agnes@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('agnes@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('agnes@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('agnes@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('agnes@lspace.org', 'He just painted the showy stuff in the front ...')
('agnes@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('agnes@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('agnes@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('agnes@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('granny@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('granny@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('granny@lspace.org', "You don't juggle matches in a fireworks factory.")
('granny@lspace.org', 'Pull up a chair and call the cat a bastard')
('granny@lspace.org', "Bugger off sweetheart Nanny's busy")
('granny@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('granny@lspace.org', "When you break rules, break 'em good and hard.")
('grodley@lspace.com', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('grodley@lspace.com', "Well, they're not fooling ME.")
('grodley@lspace.com', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('grodley@lspace.com', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('grodley@lspace.com', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('grodley@lspace.com', 'Blessings be on this house.')
('grodley@lspace.com', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('grodley@lspace.com', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('grodley@lspace.com', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('grodley@lspace.com', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('swivel@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('swivel@lspace.org', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('swivel@lspace.org', "You don't juggle matches in a fireworks factory.")
('swivel@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('swivel@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('swivel@lspace.org', 'Pull up a chair and call the cat a bastard')
('swivel@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('swivel@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('swivel@lspace.org', 'Witches are all equal.')
('agnes@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('agnes@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('agnes@lspace.org', "You're wondering if I really would slit your throat.")
('agnes@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('agnes@lspace.org', 'He just painted the showy stuff in the front ...')
('agnes@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('agnes@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('agnes@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('agnes@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('agnes@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('granny@lspace.org', "Bugger off sweetheart Nanny's busy")
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('granny@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('granny@lspace.org', 'Pull up a chair and call the cat a bastard')
('granny@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('granny@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('granny@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('granny@lspace.org', "That's quite against the spirit of witchcraft.")
('grodley@lspace.com', '...she was definitely feeling several twinkles short of a glitter...')
('grodley@lspace.com', "When you break rules, break 'em good and hard.")
('grodley@lspace.com', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('grodley@lspace.com', "Well, they're not fooling ME.")
('grodley@lspace.com', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('grodley@lspace.com', "When you break rules, break 'em good and hard.")
('grodley@lspace.com', 'Pull up a chair and call the cat a bastard')
('grodley@lspace.com', 'You bloated lying blutocat!')
('grodley@lspace.com', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('grodley@lspace.com', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('swivel@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('swivel@lspace.org', "You're wondering if I really would slit your throat.")
('swivel@lspace.org', "We don't have things like head witches.")
('swivel@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('swivel@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('swivel@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('swivel@lspace.org', "Bugger off sweetheart Nanny's busy")
('swivel@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('swivel@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('swivel@lspace.org', "Bugger off sweetheart Nanny's busy")
('agnes@lspace.org', 'He just painted the showy stuff in the front ...')
('agnes@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('agnes@lspace.org', 'We look to… the edges')
('agnes@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('agnes@lspace.org', 'Pull up a chair and call the cat a bastard')
('agnes@lspace.org', "That's quite against the spirit of witchcraft.")
('agnes@lspace.org', "Well, they're not fooling ME.")
('agnes@lspace.org', "You're wondering if I really would slit your throat.")
('agnes@lspace.org', 'We look to… the edges')
('agnes@lspace.org', 'He just painted the showy stuff in the front ...')
('granny@lspace.org', "When you break rules, break 'em good and hard.")
('granny@lspace.org', 'He just painted the showy stuff in the front ...')
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('granny@lspace.org', "When you break rules, break 'em good and hard.")
('granny@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('granny@lspace.org', "You're wondering if I really would slit your throat.")
('granny@lspace.org', "We don't have things like head witches.")
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('grodley@lspace.com', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('grodley@lspace.com', "We don't have things like head witches.")
('grodley@lspace.com', "We don't have things like head witches.")
('grodley@lspace.com', 'Wisdom is one of the few things that looks bigger the further away it is.')
('grodley@lspace.com', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('grodley@lspace.com', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('grodley@lspace.com', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('grodley@lspace.com', "You're wondering if I really would slit your throat.")
('grodley@lspace.com', 'Witches are all equal.')
('grodley@lspace.com', '...she was definitely feeling several twinkles short of a glitter...')
('swivel@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('swivel@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('swivel@lspace.org', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('swivel@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('swivel@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('swivel@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('swivel@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('swivel@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('swivel@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('swivel@lspace.org', 'He just painted the showy stuff in the front ...')
('agnes@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('agnes@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('agnes@lspace.org', "That's quite against the spirit of witchcraft.")
('agnes@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('agnes@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('agnes@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('agnes@lspace.org', 'You bloated lying blutocat!')
('agnes@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('agnes@lspace.org', 'You bloated lying blutocat!')
('agnes@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('granny@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('granny@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('granny@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('granny@lspace.org', "We don't have things like head witches.")
('granny@lspace.org', "You're wondering if I really would slit your throat.")
('granny@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('granny@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('granny@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('granny@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('grodley@lspace.com', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('grodley@lspace.com', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('grodley@lspace.com', "An' once again I have to point out that it is a matter of fine details")
('grodley@lspace.com', "An' once again I have to point out that it is a matter of fine details")
('grodley@lspace.com', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('grodley@lspace.com', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('grodley@lspace.com', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('grodley@lspace.com', 'Witches are all equal.')
('grodley@lspace.com', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('grodley@lspace.com', "If anyone locked me in a dungeon, there'd be screams.")
('swivel@lspace.org', "When you break rules, break 'em good and hard.")
('swivel@lspace.org', 'He just painted the showy stuff in the front ...')
('swivel@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('swivel@lspace.org', 'We look to… the edges')
('swivel@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('swivel@lspace.org', 'Pull up a chair and call the cat a bastard')
('swivel@lspace.org', 'He just painted the showy stuff in the front ...')
('swivel@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('swivel@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('swivel@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('agnes@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('agnes@lspace.org', 'He just painted the showy stuff in the front ...')
('agnes@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('agnes@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('agnes@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('agnes@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('agnes@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('agnes@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('agnes@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('agnes@lspace.org', 'Blessings be on this house.')
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('granny@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('granny@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('granny@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('granny@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('granny@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('granny@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('granny@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('grodley@lspace.com', 'Pull up a chair and call the cat a bastard')
('grodley@lspace.com', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('grodley@lspace.com', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('grodley@lspace.com', '...she was definitely feeling several twinkles short of a glitter...')
('grodley@lspace.com', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('grodley@lspace.com', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('grodley@lspace.com', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('grodley@lspace.com', 'Pull up a chair and call the cat a bastard')
('grodley@lspace.com', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('grodley@lspace.com', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('swivel@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('swivel@lspace.org', 'Blessings be on this house.')
('swivel@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('swivel@lspace.org', 'Witches are all equal.')
('swivel@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('swivel@lspace.org', 'He just painted the showy stuff in the front ...')
('swivel@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('swivel@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('swivel@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', "We don't have things like head witches.")
('agnes@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('agnes@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('agnes@lspace.org', 'Blessings be on this house.')
('agnes@lspace.org', "You don't juggle matches in a fireworks factory.")
('agnes@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('agnes@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('agnes@lspace.org', "That's quite against the spirit of witchcraft.")
('agnes@lspace.org', 'Witches are all equal.')
('agnes@lspace.org', "Bugger off sweetheart Nanny's busy")
('agnes@lspace.org', 'We look to… the edges')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('granny@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('granny@lspace.org', "You don't juggle matches in a fireworks factory.")
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('granny@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('granny@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('granny@lspace.org', 'Pull up a chair and call the cat a bastard')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('grodley@lspace.com', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('grodley@lspace.com', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('grodley@lspace.com', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('grodley@lspace.com', "We don't have things like head witches.")
('grodley@lspace.com', 'Wisdom is one of the few things that looks bigger the further away it is.')
('grodley@lspace.com', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('grodley@lspace.com', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('grodley@lspace.com', 'He just painted the showy stuff in the front ...')
('grodley@lspace.com', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('grodley@lspace.com', 'He just painted the showy stuff in the front ...')
('swivel@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('swivel@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('swivel@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('swivel@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('swivel@lspace.org', "That's quite against the spirit of witchcraft.")
('swivel@lspace.org', "We don't have things like head witches.")
('swivel@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('swivel@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('swivel@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('swivel@lspace.org', 'You bloated lying blutocat!')
('agnes@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('agnes@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('agnes@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('agnes@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('agnes@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('agnes@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('agnes@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('agnes@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('agnes@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('agnes@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('granny@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('granny@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('granny@lspace.org', 'Witches are all equal.')
('granny@lspace.org', 'Witches are all equal.')
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('granny@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('granny@lspace.org', "Well, they're not fooling ME.")
('granny@lspace.org', 'You bloated lying blutocat!')
('grodley@lspace.com', "An' once again I have to point out that it is a matter of fine details")
('grodley@lspace.com', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('grodley@lspace.com', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('grodley@lspace.com', "Bugger off sweetheart Nanny's busy")
('grodley@lspace.com', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('grodley@lspace.com', "If anyone locked me in a dungeon, there'd be screams.")
('grodley@lspace.com', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('grodley@lspace.com', "If anyone locked me in a dungeon, there'd be screams.")
('grodley@lspace.com', "If anyone locked me in a dungeon, there'd be screams.")
('grodley@lspace.com', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('swivel@lspace.org', 'We look to… the edges')
('swivel@lspace.org', 'We look to… the edges')
('swivel@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('swivel@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('swivel@lspace.org', 'He just painted the showy stuff in the front ...')
('swivel@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('swivel@lspace.org', 'He just painted the showy stuff in the front ...')
('swivel@lspace.org', "Well, they're not fooling ME.")
('swivel@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('swivel@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('agnes@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('agnes@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('agnes@lspace.org', "Bugger off sweetheart Nanny's busy")
('agnes@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('agnes@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('agnes@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('agnes@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('agnes@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('agnes@lspace.org', "That's quite against the spirit of witchcraft.")
('agnes@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('granny@lspace.org', "You don't juggle matches in a fireworks factory.")
('granny@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('granny@lspace.org', "You're wondering if I really would slit your throat.")
('granny@lspace.org', 'He just painted the showy stuff in the front ...')
('granny@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('granny@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('granny@lspace.org', 'Pull up a chair and call the cat a bastard')
('granny@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('grodley@lspace.com', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('grodley@lspace.com', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('grodley@lspace.com', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('grodley@lspace.com', 'We look to… the edges')
('grodley@lspace.com', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('grodley@lspace.com', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('grodley@lspace.com', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('grodley@lspace.com', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('grodley@lspace.com', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('grodley@lspace.com', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('swivel@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('swivel@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('swivel@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('swivel@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('swivel@lspace.org', "We don't have things like head witches.")
('swivel@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('swivel@lspace.org', "You don't juggle matches in a fireworks factory.")
('swivel@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('swivel@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('swivel@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('agnes@lspace.org', "We don't have things like head witches.")
('agnes@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('agnes@lspace.org', 'He just painted the showy stuff in the front ...')
('agnes@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('agnes@lspace.org', "That's quite against the spirit of witchcraft.")
('agnes@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('agnes@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('agnes@lspace.org', "We don't have things like head witches.")
('agnes@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('agnes@lspace.org', 'Blessings be on this house.')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('granny@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('granny@lspace.org', 'You bloated lying blutocat!')
('granny@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('granny@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('granny@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('granny@lspace.org', "That's quite against the spirit of witchcraft.")
('grodley@lspace.com', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('grodley@lspace.com', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('grodley@lspace.com', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('grodley@lspace.com', "When you break rules, break 'em good and hard.")
('grodley@lspace.com', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('grodley@lspace.com', "If anyone locked me in a dungeon, there'd be screams.")
('grodley@lspace.com', "You don't juggle matches in a fireworks factory.")
('grodley@lspace.com', '...she was definitely feeling several twinkles short of a glitter...')
('grodley@lspace.com', "You don't juggle matches in a fireworks factory.")
('grodley@lspace.com', "Bugger off sweetheart Nanny's busy")
('swivel@lspace.org', "You don't juggle matches in a fireworks factory.")
('swivel@lspace.org', "You don't juggle matches in a fireworks factory.")
('swivel@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('swivel@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('swivel@lspace.org', "That's quite against the spirit of witchcraft.")
('swivel@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('swivel@lspace.org', "We don't have things like head witches.")
('swivel@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('swivel@lspace.org', 'Witches are all equal.')
('agnes@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('agnes@lspace.org', "You're wondering if I really would slit your throat.")
('agnes@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('agnes@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('agnes@lspace.org', 'He just painted the showy stuff in the front ...')
('agnes@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('agnes@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('agnes@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('agnes@lspace.org', "That's quite against the spirit of witchcraft.")
('agnes@lspace.org', 'You bloated lying blutocat!')
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('granny@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('granny@lspace.org', "You don't juggle matches in a fireworks factory.")
('granny@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('granny@lspace.org', "That's quite against the spirit of witchcraft.")
('granny@lspace.org', 'You bloated lying blutocat!')
('granny@lspace.org', "We don't have things like head witches.")
('granny@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('granny@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('granny@lspace.org', "When you break rules, break 'em good and hard.")
('grodley@lspace.com', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('grodley@lspace.com', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('grodley@lspace.com', "You're wondering if I really would slit your throat.")
('grodley@lspace.com', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('grodley@lspace.com', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('grodley@lspace.com', 'He just painted the showy stuff in the front ...')
('grodley@lspace.com', "There's a billion places like home. But only one of 'em'swhere you live.")
('grodley@lspace.com', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('grodley@lspace.com', '...she was definitely feeling several twinkles short of a glitter...')
('grodley@lspace.com', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('swivel@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('swivel@lspace.org', 'Blessings be on this house.')
('swivel@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('swivel@lspace.org', "Bugger off sweetheart Nanny's busy")
('swivel@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('swivel@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('swivel@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('swivel@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', "Bugger off sweetheart Nanny's busy")
('swivel@lspace.org', "That's quite against the spirit of witchcraft.")
('agnes@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('agnes@lspace.org', 'We look to… the edges')
('agnes@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('agnes@lspace.org', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('agnes@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('agnes@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('agnes@lspace.org', 'Pull up a chair and call the cat a bastard')
('agnes@lspace.org', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('agnes@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('agnes@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('granny@lspace.org', 'Pull up a chair and call the cat a bastard')
('granny@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('granny@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('granny@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('granny@lspace.org', 'Blessings be on this house.')
('granny@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('granny@lspace.org', "When you break rules, break 'em good and hard.")
('granny@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('grodley@lspace.com', "People think that stories are shaped by people. In fact, it's the other way around.")
('grodley@lspace.com', "But I can't do none of that stuff. That wouldn't be Right.")
('grodley@lspace.com', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('grodley@lspace.com', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('grodley@lspace.com', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('grodley@lspace.com', 'Blessings be on this house.')
('grodley@lspace.com', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('grodley@lspace.com', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('grodley@lspace.com', "You're wondering if I really would slit your throat.")
('grodley@lspace.com', "If anyone locked me in a dungeon, there'd be screams.")
('swivel@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('swivel@lspace.org', 'We look to… the edges')
('swivel@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('swivel@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('swivel@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('swivel@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('swivel@lspace.org', "We don't have things like head witches.")
('swivel@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('swivel@lspace.org', 'Nanny Ogg could see the future in the froth on a beer mug. It invariably showed that she was going to enjoy a refreshing drink which she almost certainly was not going to pay for.')
('agnes@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('agnes@lspace.org', "Bugger off sweetheart Nanny's busy")
('agnes@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('agnes@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('agnes@lspace.org', "Bugger off sweetheart Nanny's busy")
('agnes@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('agnes@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('agnes@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('agnes@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('agnes@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('granny@lspace.org', "That's quite against the spirit of witchcraft.")
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('granny@lspace.org', "That's quite against the spirit of witchcraft.")
('granny@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('granny@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('granny@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('granny@lspace.org', "Cats are like witches. They don't fight to kill, but to win. There is a difference. There's no point in killing an opponent. That way, they won't know they've lost, and to be a real winner you have to have an opponent who is beaten and knows it. There’s no triumph over a corpse, but a beaten opponent, who will remain beaten every day of the remainder of their sad and wretched life, is something to treasure.")
('granny@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('granny@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('grodley@lspace.com', "Well, they're not fooling ME.")
('grodley@lspace.com', "When you break rules, break 'em good and hard.")
('grodley@lspace.com', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('grodley@lspace.com', "We don't have things like head witches.")
('grodley@lspace.com', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('grodley@lspace.com', 'Blessings be on this house.')
('grodley@lspace.com', 'Wisdom is one of the few things that looks bigger the further away it is.')
('grodley@lspace.com', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('grodley@lspace.com', 'Wisdom is one of the few things that looks bigger the further away it is.')
('grodley@lspace.com', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('swivel@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('swivel@lspace.org', "When you break rules, break 'em good and hard.")
('swivel@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('swivel@lspace.org', 'We look to… the edges')
('swivel@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('swivel@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('swivel@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('swivel@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('swivel@lspace.org', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('swivel@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('agnes@lspace.org', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('agnes@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('agnes@lspace.org', "When you break rules, break 'em good and hard.")
('agnes@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('agnes@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('agnes@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('agnes@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('agnes@lspace.org', 'Witches are all equal.')
('agnes@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('agnes@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('granny@lspace.org', "You're wondering if I really would slit your throat.")
('granny@lspace.org', "That's quite against the spirit of witchcraft.")
('granny@lspace.org', 'You bloated lying blutocat!')
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('granny@lspace.org', "You don't juggle matches in a fireworks factory.")
('granny@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('granny@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('granny@lspace.org', "You're wondering if I really would slit your throat.")
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('granny@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('grodley@lspace.com', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('grodley@lspace.com', "There's a billion places like home. But only one of 'em'swhere you live.")
('grodley@lspace.com', "There's a billion places like home. But only one of 'em'swhere you live.")
('grodley@lspace.com', "If anyone locked me in a dungeon, there'd be screams.")
('grodley@lspace.com', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('grodley@lspace.com', "You're wondering if I really would slit your throat.")
('grodley@lspace.com', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('grodley@lspace.com', 'Wisdom is one of the few things that looks bigger the further away it is.')
('grodley@lspace.com', "You're wondering if I really would slit your throat.")
('grodley@lspace.com', "Bugger off sweetheart Nanny's busy")
('swivel@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('swivel@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('swivel@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('swivel@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('swivel@lspace.org', '...she was definitely feeling several twinkles short of a glitter...')
('swivel@lspace.org', "Well, they're not fooling ME.")
('swivel@lspace.org', 'Pull up a chair and call the cat a bastard')
('swivel@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('swivel@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('swivel@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('agnes@lspace.org', "But I can't do none of that stuff. That wouldn't be Right.")
('agnes@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('agnes@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('agnes@lspace.org', "When you break rules, break 'em good and hard.")
('agnes@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('agnes@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('agnes@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('agnes@lspace.org', "Well, they're not fooling ME.")
('agnes@lspace.org', "You can't go around building a better world for people.Only people can build a better world for people. Otherwiseit's just a cage.")
('agnes@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('granny@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('granny@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('granny@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('granny@lspace.org', 'Wisdom is one of the few things that looks bigger the further away it is.')
('granny@lspace.org', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('granny@lspace.org', 'We look to… the edges')
('granny@lspace.org', 'You bloated lying blutocat!')
('granny@lspace.org', "Humans take. They plough with iron. They ravage the land.Some do, I'll grant you that. Others put back more'n they take.They put back love. They've got soil in their bones.")
('granny@lspace.org', 'We look to… the edges')
('granny@lspace.org', "Bugger off sweetheart Nanny's busy")
('grodley@lspace.com', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('grodley@lspace.com', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('grodley@lspace.com', "Bugger off sweetheart Nanny's busy")
('grodley@lspace.com', 'We look to… the edges')
('grodley@lspace.com', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('grodley@lspace.com', 'Blessings be on this house.')
('grodley@lspace.com', '...she was definitely feeling several twinkles short of a glitter...')
('grodley@lspace.com', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('grodley@lspace.com', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('grodley@lspace.com', "Esme Weatherwax hadn't done nice. She'd done what was needed.")
('swivel@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('swivel@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('swivel@lspace.org', "You don't juggle matches in a fireworks factory.")
('swivel@lspace.org', "Bugger off sweetheart Nanny's busy")
('swivel@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('swivel@lspace.org', 'Pull up a chair and call the cat a bastard')
('swivel@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('swivel@lspace.org', 'Cats gravitate to kitchens like rocks gravitate to gravity.')
('swivel@lspace.org', "You don't juggle matches in a fireworks factory.")
('swivel@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('agnes@lspace.org', "Bugger off sweetheart Nanny's busy")
('agnes@lspace.org', "That's quite against the spirit of witchcraft.")
('agnes@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('agnes@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('agnes@lspace.org', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('agnes@lspace.org', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('agnes@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('agnes@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('agnes@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('agnes@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('granny@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('granny@lspace.org', 'We look to… the edges')
('granny@lspace.org', 'Pull up a chair and call the cat a bastard')
('granny@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('granny@lspace.org', "Sin, young man, is when you treat people like things. Including yourself. That's what sin is.")
('granny@lspace.org', "You wouldn't be a witch if you couldn't jump to conclusions, right?Sometimes there isn't time to do anything else but take a flying leap.")
('granny@lspace.org', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('granny@lspace.org', "When you break rules, break 'em good and hard.")
('granny@lspace.org', "And what about these cherubs? We're not going to get them too, are we? I don't like to see little babies flying through the air.")
('granny@lspace.org', "Well, they're not fooling ME.")
('grodley@lspace.com', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('grodley@lspace.com', "People think that stories are shaped by people. In fact, it's the other way around.")
('grodley@lspace.com', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('grodley@lspace.com', "When you break rules, break 'em good and hard.")
('grodley@lspace.com', "That's quite against the spirit of witchcraft.")
('grodley@lspace.com', 'Sometimes you have to trust to experience and intuition and general awareness and take a running jump.')
('grodley@lspace.com', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('grodley@lspace.com', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('grodley@lspace.com', "But I can't do none of that stuff. That wouldn't be Right.")
('grodley@lspace.com', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('swivel@lspace.org', 'Witches are all equal.')
('swivel@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('swivel@lspace.org', "There's a billion places like home. But only one of 'em'swhere you live.")
('swivel@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('swivel@lspace.org', "That's quite against the spirit of witchcraft.")
('swivel@lspace.org', "You're wondering if I really would slit your throat.")
('swivel@lspace.org', 'Witches are all equal.')
('swivel@lspace.org', "To tell the truth, I don't know either, but think of the funwe could have finding out.")
('swivel@lspace.org', 'You bloated lying blutocat!')
('swivel@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('agnes@lspace.org', "Bugger off sweetheart Nanny's busy")
('agnes@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('agnes@lspace.org', "An' once again I have to point out that it is a matter of fine details")
('agnes@lspace.org', "Don't do anything I wouldn't do, if you ever find anything Iwouldn't do.")
('agnes@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('agnes@lspace.org', "She'd never mastered the talent for apologizing, but she appreciated it in other people.")
('agnes@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('agnes@lspace.org', "You're wondering if I really would slit your throat.")
('agnes@lspace.org', "If you want to amount to anything as a witch, you got to learn three things. What's real, what's not real, and what's the difference.")
('agnes@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('granny@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('granny@lspace.org', "That's quite against the spirit of witchcraft.")
('granny@lspace.org', "If anyone locked me in a dungeon, there'd be screams.")
('granny@lspace.org', "Humanity's a nice place to visit, but you wouldn't want to live there.")
('granny@lspace.org', 'People are riddled by Doubt.Doubt is the engine that drives people through their lives.')
('granny@lspace.org', "Doubt is the elastic band in the little model aeroplane of people'ssoul, and they spend their time winding it up until it knots.")
('granny@lspace.org', "Where's the pleasure in bein' the winner if the loser ain't alive to know they've lost?")
('granny@lspace.org', "People think that stories are shaped by people. In fact, it's the other way around.")
('granny@lspace.org', "Not that I don't like him, stinky as he is. I've always been one for the horns, as you might say. Goats is clever. Sheep ain't. No offence, my dear.")
('granny@lspace.org', "That's quite against the spirit of witchcraft.")
('grodley@lspace.com', 'The wages of sin is death but so is the salary of virtue, and at least the evil get to go home early on Fridays.')
('grodley@lspace.com', "That's quite against the spirit of witchcraft.")
('grodley@lspace.com', '("If I\'d had to buy you, you wouldn\'t be worth the price.",)')
('grodley@lspace.com', 'Granny nurtures an implicit belief that everything should get outof her way extended to other witches, very tall trees and, onoccasion, mountains.')
('grodley@lspace.com', 'Witches are all equal.')
('grodley@lspace.com', "You don't juggle matches in a fireworks factory.")
('grodley@lspace.com', "Good and bad is tricky. I ain't too certain about where people stand. P'raps what matters is which way you face.")
('grodley@lspace.com', 'We look to… the edges')
('grodley@lspace.com', "Well, they're not fooling ME.")
('grodley@lspace.com', 'You bloated lying blutocat!')
1conn.close()