global $content_width; if ( ! isset( $content_width ) ) $content_width = 640; /* pixels */ if (!function_exists('library_books_setup')): /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which runs * before the init hook. The init hook is too late for some features, such as indicating * support post thumbnails. */ function library_books_setup() { load_theme_textdomain('library-books', get_template_directory() . '/languages'); add_theme_support('automatic-feed-links'); add_theme_support('woocommerce'); add_theme_support('post-thumbnails'); add_theme_support('custom-header'); add_theme_support('title-tag'); add_theme_support('custom-logo', array( 'height' => 52, 'width' => 268, 'flex-height' => true, )); register_nav_menus(array( 'primary' => esc_html__('Primary Menu', 'library-books') , )); add_theme_support('custom-background', array( 'default-color' => 'ffffff' )); add_editor_style( 'editor-style.css' ); add_post_type_support( 'page', 'excerpt' ); } endif; // library_books_setup add_action('after_setup_theme', 'library_books_setup'); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function library_books_widgets_init() { register_sidebar(array( 'name' => esc_html__('Sidebar', 'library-books') , 'description' => esc_html__('Appears on page/post sidebar', 'library-books') , 'id' => 'sidebar-1', 'before_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => esc_html__('Footer Column 1', 'library-books') , 'description' => esc_html__('Appears on footer', 'library-books') , 'id' => 'fc-1', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', )); register_sidebar(array( 'name' => esc_html__('Footer Column 2', 'library-books') , 'description' => esc_html__('Appears on footer', 'library-books') , 'id' => 'fc-2', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', )); register_sidebar(array( 'name' => esc_html__('Footer Column 3', 'library-books') , 'description' => esc_html__('Appears on footer', 'library-books') , 'id' => 'fc-3', 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', )); } add_action('widgets_init', 'library_books_widgets_init'); /** * Register custom fonts. */ function library_books_font_url() { $font_url = ''; /* Translators: If there are any character that are not * supported by Roboto Condensed, trsnalate this to off, do not * translate into your own language. */ $robotocondensed = _x('on', 'robotocondensed:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Scada, translate this to off, do not translate * into your own language. */ $scada = _x('on', 'Scada:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Roboto Slab, translate this to off, do not translate * into your own language. */ $robotoslab = _x('on', 'Roboto Slab:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Merriweather, translate this to off, do not translate * into your own language. */ $merriweather = _x('on', 'Merriweather:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Roboto, translate this to off, do not translate * into your own language. */ $roboto = _x('on', 'Roboto:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Lato, translate this to off, do not translate * into your own language. */ $lato = _x('on', 'Lato:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Playfair Display, translate this to off, do not translate * into your own language. */ $playfairdisplay = _x('on', 'Playfair Display:on or off', 'library-books'); /* Translators: If there has any character that are not supported * by Assistant , translate this to off, do not translate * into your own language. */ $assistant = _x('on', 'Assistant:on or off', 'library-books'); if ('off' !== $robotocondensed) { $font_family = array(); if ('off' !== $robotocondensed) { $font_family[] = 'Roboto Condensed:300,400,600,700,800,900'; } if ('off' !== $robotoslab) { $font_family[] = 'Roboto Slab:300,400,700'; } if ('off' !== $merriweather) { $font_family[] = 'Merriweather:300,400,400i,700,700i,900,900i'; } if ('off' !== $roboto) { $font_family[] = 'Roboto:100,300,300i,400,400i,500,500i,700,700i,900,900i'; } if ('off' !== $lato) { $font_family[] = 'Lato:300,300i,400,400i,700,700i,900,900i'; } if ('off' !== $playfairdisplay) { $font_family[] = 'Playfair Display:400,400i,700,700i,900,900i'; } if ('off' !== $assistant) { $font_family[] = 'Assistant:200,300,400,600,700,800'; } $query_args = array( 'family' => urlencode(implode('|', $font_family)) , ); $font_url = add_query_arg($query_args, '//fonts.googleapis.com/css'); } return $font_url; } /** * Enqueue scripts and styles. */ function library_books_scripts() { wp_enqueue_style('library-books-font', library_books_font_url() , array()); wp_enqueue_style('library-books-basic-style', get_stylesheet_uri()); wp_enqueue_style('library-books-print-style', get_template_directory_uri() . "/print.css"); wp_enqueue_style('nivo-slider', get_template_directory_uri() . "/css/nivo-slider.css"); wp_enqueue_style('font-awesome', get_template_directory_uri() . "/css/font-awesome.css"); wp_enqueue_style('library-books-main-style', get_template_directory_uri() . "/css/responsive.css"); wp_enqueue_style('library-books-base-style', get_template_directory_uri() . "/css/style_base.css"); wp_enqueue_script('jquery-nivo', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array( 'jquery' )); wp_enqueue_script('library-books-custom-js', get_template_directory_uri() . '/js/custom.js'); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'library_books_scripts'); define('LIBRARY_BOOKS_URL', 'https://www.pinnaclethemes.net/'); define('LIBRARY_BOOKS_PRO_THEME_URL', 'https://www.pinnaclethemes.net/product/library-wordpress-theme/'); define('LIBRARY_BOOKS_FREE_THEME_URL', 'https://www.pinnaclethemes.net/product/free-bookstore-wordpress-theme/'); define('LIBRARY_BOOKS_THEME_DOC', 'https://pinnaclethemes.net/themedocumentation/library-documentation/'); define('LIBRARY_BOOKS_LIVE_DEMO', 'https://www.pinnaclethemes.net/themedemos/librarybooks/'); define('LIBRARY_BOOKS_THEMES', 'https://www.pinnaclethemes.net/cool-wordpress-themes/'); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template for about theme. */ require get_template_directory() . '/inc/about-themes.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Add a pingback url auto-discovery header for singularly identifiable articles. */ function library_books_pingback_header() { if (is_singular() && pings_open()) { printf( '' . "\n", esc_html(get_bloginfo( 'pingback_url' ) )); } } add_action('wp_head', 'library_books_pingback_header'); // Add class in body if slide option enable function library_books_body_class( $classes ) { $hideslide = get_theme_mod('hide_slides', 1); if (!is_home() && is_front_page()) { if( $hideslide == '') { $classes[] = 'visibleslide'; } } return $classes; } add_filter( 'body_class','library_books_body_class' ); // get slug by id function library_books_get_slug_by_id($id) { $post_data = get_post($id, ARRAY_A); $slug = $post_data['post_name']; return $slug; } require_once get_template_directory() . '/upgrade-pro/example-1/class-customize.php'; /** * Filter the except length to 20 words. * * @param int $length Excerpt length. * @return int (Maybe) modified excerpt length. */ function library_books_custom_excerpt_length( $excerpt_length ) { return 20; } add_filter( 'excerpt_length', 'library_books_custom_excerpt_length', 999 );{"id":1880,"date":"2023-01-10T15:42:31","date_gmt":"2023-01-10T15:42:31","guid":{"rendered":"https:\/\/booksbypatricksimpson.com\/?p=1880"},"modified":"2023-01-10T16:31:58","modified_gmt":"2023-01-10T16:31:58","slug":"village-times-january-2023","status":"publish","type":"post","link":"https:\/\/booksbypatricksimpson.com\/village-times-january-2023\/","title":{"rendered":"Village Times January 2023"},"content":{"rendered":"\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t

THE VILLAGE TIMES<\/h1>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t

Independence Village of Olde Raleigh\nResident Newsletter<\/h2>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t

Coming to the Dining Room\n2:00pm Wednesday February 8th\nIndependence Village of Olde Raleigh Presents:\nThe Valentine Locket\n<\/h1>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t

You don\u2019t want to miss this!<\/h2>

\"\"<\/p>

Wanna act? Play music? Or just help out? \u2013 contact Activity Director Taylor Clodfelter<\/p>

Never Forgotten: Charles Herbert Hough III<\/strong><\/p>

JANUARY 15, 1943 \u2013 DECEMBER 4, 2022 (by <\/strong>Pat Simpson)<\/em><\/strong><\/p>

\"\"<\/p>

Over the last few years here at Independence Village our Forever Young<\/strong> acting group has put on several plays, the last one being the Readers\u2019 Theater version of Dickens\u2019 “Christmas Carol” in December of 2021, in which Herb Hough convincingly played the role of Scrooge. Not only could Herb act, he could sing, as he did during the reception at our wedding (June Cheek and yours truly) last May, along with the sweet tones of Joe Hardison’s violin.But sadly, Herb had many health issues. Charles Herbert Hough III, age 79, of Raleigh, North Carolina passed away on Sunday, December 4, 2022. He will never be forgotten by those who knew him. Herb was born on January 15,1943 in Bethlehem, Pennsylvania \u2013 the same day the giant Pentagon building was dedicated in Arlington, Virginia. Bethlehem, a city of currently 75,000 people in eastern Pennsylvania, was<\/p>

\"\"<\/p>

\"\"<\/p>

founded in 1741 by a group of Moravians from Germany whose strong work ethic, integrity, sense of responsibility, emphasis on quality, discipline, and a sense of teamwork may have all had an eventual positive influence on Herb.Herb was the second son of Charles Hough Jr. and Mary Francis Smith.\u00a0 They lived in Bethlehem through 1961 where Herb grew up with his older brother Wilmer.After he graduated from Bethlehem\u2019s Liberty High School, Herb went on to study at Penn State and the University of Southern California, where he graduated with a Master\u2019s in Business Administration. When the Vietnam war came along, Herb was<\/p>

\"\"<\/p>

commissioned a Lieutenant in the US Navy and served as a Surface Warfare Officer on the destroyer USS McKean (DD-784). Following his service in the military, Herb embarked on a 30+ year career in international Sales and Marketing with IBM where he lived and moved with his family all over the world.\u00a0 (Long Beach\/San Jose, CA, Flint Michigan, Raleigh NC and internationally in Hong Kong, China.)\u00a0 Following retirement, Herb kept himself busy by opening and operating a shipping and packaging business in Raleigh, NC.Herb married Karen Emily Kinney in the summer of 1967 and would eventually go on to raise three children.\u00a0 Eldest daughter Taryn Alyssa Hough born 1975, middle son Chapin Brent Hough in 1977 and youngest son Brandon Todd Hough in 1979.Herb enjoyed nothing more than rooting on and watching his 4 grandchildren (Taylan 2007, Aylin 2011, Hayden 2011 and Elizabeth 2013) compete in their various sport activities and extracurricular accomplishments. (Soccer, Dance, Tennis and Ice Hockey).\u00a0 He was the loudest voice on the sideline and was a fierce supporter of all things near and dear to his heart.\u00a0 Herb was also a proud American, grateful for the opportunities and freedoms afforded him and would love to sit with his friends and acquaintances (on all sides of the aisle) to debate politics, issues and current events. His son Chapin, was given the opportunity to spend Herb\u2019s last days by him bedside and had many long conversations to reflect on happy lifetime memories, family vacations, friends and special times during his lifetime that brought a smile to his face.\u00a0 He asked Chapin to make sure his friends and acquaintances at Independence Village realized how much he enjoyed his time and friendship together, and was concerned he would not have the opportunity to say thank you but Chapin reassured him his message would get out without pause and to rest easy which he did.Herb Hough was just a genuine, friendly and interesting person who made impact on so many people’s lives.\u00a0 Memories: \u00a0<\/strong>Frank Howes:<\/em><\/strong> I sat with Herb for most of the last six years, and I miss him terribly. Even though he had many health problems, his death came as a surprise. Some of the things I remember about Herb: He was devoted to Donald Trump (this was a subject on which we agreed to disagree). He was a master debater, and he rarely lost an argument. He had an inquisitive mind, especially about politics. He was generous with his time; he took me to doctor\u2019s appointments on many occasions. He was devoted to his grandchildren, and he especially enjoyed watching his grandson play hockey. He loved travelling with his family. He was proud of his Navy service. He loved living in Hong Kong while he was with IBM. He was a vehement supporter of the right to bear arms. He was an unabashed old-fashioned supporter of American ideals, and was worried about the direction the country was headed in (toward socialism he said). Herb is a great loss to us all.Richard Smalto:<\/em><\/strong> A dynamic personality. He made me realize how much more there was to know that was important about the mundane things that effect our daily lives. “Don’t you ask your Doctor questions about what ails you?”Pat Simpson (writer of this article):<\/em><\/strong> I remember most the time when a protruding hernia bulge suddenly appeared on my abdomen. Without hesitation, Herb drove me to Urgent Care and then to the Emergency Room at Rex Hospital to leave me in their care. I\u2019ll be always grateful for Herb\u2019s unforgettable kindness.<\/p>

\"\"<\/p>

One Way to Stop Smoking Cigarettes \u2013 by Richard Smalto<\/strong><\/p>

The delicious looking, long legged, buxom blond woman, in stocking feet, slid across a beer-soaked fraternity floor, stopped in front of a young man and ask him to dance.\u00a0 Joy, the gorgeous long-legged creature, in stocking feet, a woman every man desired, was tipsy and had been drinking beer left over from a blown-up keg when she approached the young man and asked him to dance.<\/p>

It was New Years\u2019 eve and a popular fraternity on college campus was having one of its perennial parties. The unremarkable young man who had made a New Year\u2019s resolution to stop smoking was only too happy to join the stunning blond on the dance floor. Having made a resolution he thought it would be a good test of his resolve to stop smoking at a party where almost everyone else was drinking and doing just that.\u00a0 As a consequence when his dance partner asked him to join her for a smoke, after the dance was over, he begged off citing the resolution as a reason for why he could not. Expecting to be put down by this beguiling woman he was surprised and euphoric when what he received was a kiss on his lips.<\/p>

Delighted to learn that his resolution had engendered a buss rather than a rebuke he decided to use it as a strategy throughout the night. Every time he had the urge to smoke, which was often because he was always nursing a drink, he approached a member of the opposite sex and said if she would kiss him on the mouth, he would deny his urge to smoke. Many kisses later he left the party without smoking confident that because he had not had a single cigarette he could refrain from indulging in the dreadful habit from then on.\u00a0<\/strong><\/p>

You Hear Me? \u2013 By Frank Howes<\/strong><\/p>

I was in the inn in a village on Rigel 3. I was a bit tight, and I intended to get tighter if you know what I mean. I\u2019d caught my wife in bed with another man this afternoon, and I was angry, and sad and confused and a lot of other things.<\/p>

\u201cWhat\u2019ll you have?\u201d bellowed the old man behind the bar.<\/p>

\u201cDo you have cyanide, or strychnine?\u201d<\/p>

\u201cEh, what\u2019s that? Speak up son, I\u2019m a little deaf.\u201d<\/p>

I said loudly, \u201cA beaker of the bard\u2019s mandragora if you please.\u201d<\/p>

\u201cEh? Quit whispering!\u201d<\/p>

\u201cWhat\u2019s your best brand of poison?\u201d I shouted.<\/p>

\u201cDid you say you wanted poison?\u201d<\/p>

\u201cYeah. Anything deadly.\u201d<\/p>

\u201cWell, I\u2019ve got some rotgut that my cousin cooks down on his farm. Makes it out of Rigel root. Fermented dinosaur dung he calls it. If it don\u2019t kill you, it\u2019ll make you wish you were dead.\u201d<\/p>

\u201cIs that the strongest thing you\u2019ve got?\u201d<\/p>

\u201cYeah, a hundred and fifty proof! Guaranteed to prove you\u2019re crazy if you drink it. Somethin\u2019 eatin\u2019 you son?\u201d<\/p>

\u201cYou could say that. I just caught my wife in flagrante delicto with another man.\u201d<\/p>

\u201cToo bad. I know how you feel. But don\u2019t you go and do anything stupid now, you hear? Like I said, I know how you feel.\u201d<\/p>

\u201cHow would you know?\u201d \u201c<\/p>

\u201cWell, I caught my wife with another man back in \u201973.\u201d<\/p>

\u201cWhat did you do?\u201d<\/p>

\u201cWent out and bought a sonic stunner and some ear muffs. Decided I was going to set it off at max power on both of them. I intended to make them both deaf.\u201d<\/p>

\u201cIntended?\u201d<\/p>

\u201cYeah. But I made a mistake. I tested out the stunner on myself first. Put my ear muffs on and turned up the volume. I wanted to make sure it was good and loud. Turns out I should have tested out the earmuffs first instead of the stunner.\u201d<\/p>

\u201cWhy\u2019s that?\u201d<\/p>

\u201cThe stunner worked. The earmuffs didn\u2019t. So, like I said, don\u2019t you go and do anything stupid now, y\u2019 hear. You hear me son? Do you hear me?\u201d<\/p>

What My Children Taught Me \u2013 <\/strong>By Phyllis Woolley<\/strong><\/p>

A large part of my life has been spent teaching my children.\u00a0\u00a0I never truly stopped to think about what I have learned from them. Having three sons and their dad having passed when they were quite young, can make life a little difficult.\u00a0\u00a0I know that a mother\u2019s job is to care for, and teach family values and traditions to her children. What I didn\u2019t know is how much they would teach me. I would like to share that with you.<\/p>

  1. FAMILY is EVERYTHING! No matter how angry you might be, you stand by your brother, no matter what!<\/li>
  2. HAVING A LOT OF FRIENDS IS NOT NECESSARY. As long as you have one close friend when you need them, you will be fine.<\/li>
  3. A CLEAN HOUSE AND NO DIRTY DISHES IN THE SINK IS NOT NEARLY AS IMPORTANT AS SPENDING TIME WITH YOUR CHILDREN.<\/li>
  4. LIFE IS SHORT, LIVE EVERY SECOND OF IT!<\/li>
  5. YOU DO NOT HAVE TO HAVE A COLLEGE DEGREE TO BE SUCCESSFUL IN LIFE.<\/li>
  6. BE CAREFUL IF YOU LIVE IN A CUL DE SAC AND YOU ARE SETTING OFF FIREWORKS. THEY CAN GO THROUGH YOUR NEIGHBOR\u2019S WINDOW AND SET THEIR BED ON FIRE.<\/li>
  7. NO MATTER HOW MUCH YOU SCREAM, IT IS IMPORTANT TO BE AT YOUR CHILDREN\u2019S EVENTS. Your being there no matter what, is what they remember and talk about when they get older.<\/li>
  8. RAPPELLING<\/li>
  9. HOW TO DRIVE A BOAT<\/li>
  10. HOW TO USE TECHNOLOGY.<\/li>
  11. I NEED TO ALWAYS FRY TWO CHICKENS. One chicken is never enough.<\/li>
  12. GRASS IN YOUR FRONT YARD IS NOT IMPORTANT OR NECESSARY. A lot of neighborhood children in your yard is much more entertaining! Plus, you always know where your children are.<\/li>
  13. DO NOT PARTY IN A GRAVEYARD.<\/li>
  14. HOW TO KEEP SCORE AND STATS AT A LITTLE LEAGUE BASEBALL GAME.<\/li>
  15. TEACHING THEM HOW TO CLEAN, WASH CLOTHES, IRON, SEW ON A BUTTON, COOK, RESPECT YOU AND OTHERS, KINDNESS,COMPASSION , LOVE OF GOD AND PRAYER IS THE BEST INVESTMENT YOU CAN MAKE! They will be the ones who care for you when you get old.<\/li>
  16. THE HOUSE YOU LIVE IN IS NOT THEIR HOME. HOME is wherever YOU are.<\/li>
  17. THE FEELING YOU HAVE WHEN YOUR CHILD HUGS YOU IS THE BEST MEDICINE YOU WILL EVER GET.<\/li>
  18. GRANDCHILDREN SHOULD COME BEFORE CHILDREN.<\/li>
  19. DO NOT LIVE YOUR LIFE BASED ON A HALLMARK CARD. YOU WILL ALWAYS BE DISAPPOINTED! FACE LIFE HEAD ON.<\/li>
  20. YOU CAN ALWAYS LEARN SOMETHING NEW.<\/li><\/ol>

    I always knew it was my job to teach my children. It is! However, they have taught me to listen and pay attention.\u00a0Life is what you make it.<\/p>

    Your happiness is what you make it!<\/p>

    \"\"<\/p>

    Janice Sapp: in Retrospect <\/strong><\/p>

    As told by Janice Sapp to Pat Simpson<\/p>

    Born in 1948 on January 2, I was my dad\u2019s birthday present and first born. My parents, Albert Daniel Mancinelli, and Yolanda Conte, were both the first-to-be-born in the USA. Raised Catholic, they broke tradition and married in a Congregational Church in Bridgeport, Connecticut. After their marriage and breaking tradition again, they left their families and went West to Colorado Springs, Colorado, where both my sister and I were born.<\/p>

    And a third time breaking tradition, they took me with them and went to Tripoli, Libya. I became bilingual, speaking both Italian and English because Marcella, my Jewish-Italian nanny who had escaped from the Nazi’s slaughter, spoke only Italian with my parents and me.<\/p>

    In 1954, a year after my sister was born, my family left the USA again for the Panama Canal Zone where I picked a mango both before and after school on my way to and fro. I loved Panama and played with other kids; we did things like chase iguanas who lumbered nimbly and quickly away from us. Using cardboard we slid down the muddy clay banks; we became so dirty that our mothers would make us take off our clothes before they would allow us to come indoors to wash. While I was there, I got to see many things: the Chinese Gardens where people grew vegetables and fruit; preposterous insects that had big scissor-like jaws; Mina birds with their stately black feathers and huge orange beaks that mimicked human speech; small Marmoset monkeys; and frightening and hairy tarantulas. Yes, Panama was my childhood paradise.<\/p>

    Coming home to America on a ship was fun until it started to wallow \u2013 all of us slept on the deck those two nights while the ship languished on the rolling ocean. My mom had made us lime green tiered skirts and tops. And when our parents went to the Captain’s Dinner one night, the chef brought us dessert in the form of a swan fashioned from pastry and whipped cream.<\/p>

    We moved to Mechanicsville, Pennsylvania where I entered sixth grade and spelled words according to British grammar. My task for a few weeks was to look up the words in the dictionary to show the teacher that I knew the difference between British and American English spellings. One of our class assignments was to write a story, which I titled the Red Planet that was populated with aliens and humans cooperating to grow food for everyone. Asked to write poetry, this is my first poem:<\/p>

    My name is Janice Mancinelli<\/p>

    I live on 5 MacDonald Street<\/p>

    I have a cat whose name is Nellie<\/p>

    Who ate bats’ meat.<\/p>

    A bit grim, I would say, although my classmates laughed. My Senior year was in Weymouth Senior High in Massachusetts where I graduated with a thousand other kids. Yes, this Baby Boomer class was huge; we scattered all over the country to colleges, universities, military service, and paying jobs. Receiving a scholarship to Elizabethtown College in Hershey, Pennsylvania, I realized that a small Amish college with an undiversified student population was not where I wanted to be. My family had moved from Massachusetts to Silver Spring, Maryland; when I went home for Spring Break I enrolled in the University of Maryland in College Park and received a Remission of Fees, a scholarship that required good grades and the fulfillment of the requirement to teach for the State of Maryland for four years after graduation. This was a pleasure for me\/ Since I was a teenager, I had decided that teaching kids inspired me to become creative about how I taught English and later to teach ESOL (English for Speakers of Other Languages).<\/p>

    In the course of time I earned a B.A. in English Education from University of Maryland in College Park; an M.A. in English\/ESOL from George Mason University in Fairfax, Virginia; and an MDiv as a Seminarian from Wesley Theological Seminary at American University in Washington, D.C. In 1982, I even wrote \u201cMothers Without Custody\u201d, an article in Children Today magazine published by US Health and Human Services. I also wrote articles such as \u201cSt James River Boy\u201d and \u201cA Unicorn Who Lost the Shine in Her Horn\u201d for other community newsletters and publications.<\/p>

    In 1983 I married David Sapp at St George\u2019s United Methodist Church in Fairfax, Virginia. We later moved to Plano, Texas.\u00a0 Living in Plano and teaching in Dallas as well as at Plano Community College, I taught ESOL and realized that some students who wanted to learn English could not pass the exams to be admitted to college classes; many students did not have enough education to read and write in Spanish. I could feel their pain of not fitting in and doing work that kept them poor to say nothing about being cheated by employers who paid them less per hour than the minimum wage. So, I established a Dayspring Education Institute to teach ESOL to both adults and children, for which I was later awarded a \u201cLetter of Merit\u201d for community organization by the Mexican Embassy in Dallas.<\/p>

    I resigned my orders in the UMC (United Methodist Church) because of what I saw then and what I see now as cowardly and non-prophetic, (e.g., \u201cExemption of the Rainbow Community from Ordination\u201d); continual moving of ordained clergy every 2 to 4 years; and a continuing non-supportive attitude to end racism. (Remember Dr King who wrote the \u201cLetter from a Birmingham Jail\u201d and the response of the UMC clergy in that town?)<\/p>

    Sadly, after being hospitalized since last May with severe septic inflammation, David died just two months ago, November 14, 2022, from a heart attack. Before that I had taken care of David’s parents for 18 months. They died within weeks of each other in 2012.<\/p>

    At any rate while teaching at Plano Community College, I took studio art classes at the Craft Guild in bookbinding and metals\/jewelry, and earned an AA in Studio Art (60+ credits). I loved the classes and was delighted when I was given a solo show in the college’s gallery. I entered large (4×4) paintings of Hebrew women showing their strength and ability to lead Israel through dangerous times. My paintings sold! Continuing with painting and bookbinding, I have found a new niche \u2013\u2013 that of being an emerging artist and have placed 1st and honorable mention for entries in art galleries in Dallas and surrounds. As I look back on my professional career, I was an ordained UMC minister from 1983 to 1994.<\/p>

    \"\"<\/p>

    I have been a public-school teacher in Maryland, Virginia, Texas and Washington, D.C. and an instructor at Temple University. I established the Dayspring Education Institute to teach ESOL. I was a technical writer\/proposal manager at CACI (Consolidated Analysis Center, Incorporated), as well as dean of students at Mei Academy in DC, a public charter school for pregnant girls and their children<\/p>

    \"\"<\/p>

    But there have been some fun things along the way, things like opening Jan\u2019s B<\/strong>ookbinding Studio.\u00a0 I’ve done commission work and hand-binding as well as text blocks; I have also taught bookbinding and paper making. I’ve even taken flight lessons a two-seater Cessna at Andrews Air Force Base.<\/p>

    In 2023, I intend use my God-given gifts to those I meet. We are not here to take care only of ourselves and our needs, but to serve others out of the abundant love that God gives us all.<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t

    \n\t\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t
    \n\t\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
    \n\t\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t
    \n\t\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t\t\t\t\t\t\t\t\t\"\"\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t
    \n\t\t\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t
    \n\t\t\t\t\t\t
    \n\t\t\t\t
    \n\t\t\t\t\t
    \n\t\t\t\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"

    THE VILLAGE TIMES Independence Village of Olde Raleigh Resident Newsletter Coming to the Dining Room 2:00pm Wednesday February 8th Independence Village of Olde Raleigh Presents: The Valentine Locket You don\u2019t want to miss this! Wanna act? Play music? Or just help out? \u2013 contact Activity Director Taylor Clodfelter Never Forgotten: Charles Herbert Hough III JANUARY […]<\/a><\/p>\n","protected":false},"author":1,"featured_media":1882,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"pgc_meta":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-1880","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/1880","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/comments?post=1880"}],"version-history":[{"count":28,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/1880\/revisions"}],"predecessor-version":[{"id":1925,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/1880\/revisions\/1925"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/media\/1882"}],"wp:attachment":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/media?parent=1880"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/categories?post=1880"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/tags?post=1880"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}