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":3136,"date":"2024-09-12T11:21:08","date_gmt":"2024-09-12T11:21:08","guid":{"rendered":"https:\/\/booksbypatricksimpson.com\/?p=3136"},"modified":"2024-09-12T11:22:38","modified_gmt":"2024-09-12T11:22:38","slug":"village-times-september-2024","status":"publish","type":"post","link":"https:\/\/booksbypatricksimpson.com\/village-times-september-2024\/","title":{"rendered":"Village Times September 2024"},"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\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\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
<\/div>\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\t\t\t\t

The First American Tycoon-by Richard Smalto<\/strong><\/p>

\u00a0 \u00a0Who was the first American tycoon? Many people familiar with the growth of the American continent say John Jacob Astor. That is incorrect. He was the first tycoon but he was not American. That honor goes to Cornelius Vanderbilt the illiterate boatman from Staten Island or the Commodore Mark Twain called a man without a soul.\u00a0 Astor, a German furrier, bought and sold Manhattan real estate. Vanderbilt built ships and bought railroad cars that transported people all around the world. Vanderbilt was feared, he was envied, he was idolized. Poorly educated a man who could not spell his own name but knew how to make change before he died became the richest man in America.\u00a0\u00a0<\/p>

\u00a0 \u00a0Vanderbilt quit school when he was eleven and went to work when he was sixteen ferrying passengers between Staten Island and Manhattan in New York harbor. His mother not only taught him how to make change she taught him frugality and the value of hard work. By the end of the war of 1812 he had amassed a small fleet of ships and was ferrying passengers and freight between Boston and the Delaware Bay. Although Vanderbilt kept expanding his shipping business wealth did not buy him respectability. \"\" Uncouth and illiterate he shunned society.\u00a0 At the age of 70 despising ostentation and living a simple life the shipping baron turned his attention to railroads. Integrating fragmented lines he made transportation cost effective. In 1871 before he died, he built a monument to his railroad empire. Among the top ten places visited in the world, it is called GRAND CENTRAL STATION.<\/p>

(First published in the Village Times – April 2019, this article bears repeating.)<\/strong><\/p>

\u00a0<\/strong><\/p>

Eevee\u2019s Story\u00a0\u2013 by Phyllis Woolley<\/strong><\/p>

\"\"\u00a0 \u00a0Hello my peoples! It\u2019s been a while since I have talked to you! I have been busy taking care of mom. She\u2019s getting old, you know, and she isn\u2019t accepting old age gracefully. \u00a0I am having to remind her to give me my treats. Thank goodness my kibble feeder puts out my meals or I would probably starve to death. The other day I did everything I knew of to get her to give me a treat. I sat by her chair and stared at her, then I slow blinked with both eyes. She said \u201cNo!\u201d. Then I gave her a one eyed wink. She said, \u201cAll gone!\u201d \u00a0I knew that was a lie because I could see the treat jar. Then I went into the bathroom and knocked the hand soap into the sink. She said, \u201cNo Eevee! I\u2019m going to spank your butt!\u201d \u00a0By that point, I was getting a little angry. So, I gave her one more chance. I tapped her arm gently and gave her my most loving look. \u201cEevee, it\u2019s almost time for your lunch! You cannot have a treat!\u201d \u00a0She had a cup of coffee sitting beside her, so I got in her lap and stood up. Then I put my dirty paw right in her coffee!! \u201cEevee Michelle\u201d, she screamed! \u201cI cannot believe you did that!\u201d Before she could spank my butt, I ran under the bed where I would be safe. Sure hope that old age thing starts working before my lunch kibble comes out. Maybe she\u2019ll forget!!<\/p>

\u00a0<\/strong><\/p>

Fishbait \u2013 by Frank Howes<\/strong><\/p>

\"\"\u00a0 \u00a0My grandfather was fond of fishing with a cane pole. I grew up following him around to little ponds and creeks around Shoe Heel, North Carolina. One thing that I remember is that it was almost as much fun going after the fishbait as it was to actually catch fish. My grandfather used four different types of fishbait: crickets, worms, wasp grubs, and Catalpa worms. Each required a strenuous effort to procure them.<\/p>

\u00a0 \u00a0We got the crickets by rolling over watermelons in my grandfather’s field. Underneath we found crickets along with the black widow spiders that fed on them. When my grandfather saw the black widow spiders,\"\" he would say “hold on a minute son,” and he would kill the black widow spiders with his thumb. Once they were dead, he would allow us to scramble after the crickets.<\/p>

\u00a0 \u00a0 We dug worms from the place where an old outhouse used to be. There are many things that consider a pile of s\u2026.. a good environment. Among them are politicians and fishing worms.<\/p>

\u00a0 \u00a0We robbed wasp nests for their grubs. My grandfather would knock down a wasp nest with a cane pole. Then he would wait for the wasps to leave and pick up the nest. Inside where the juicy white grubs that fish love so much.<\/p>

\u00a0 \u00a0Finally, there were the Catalpa worms. These were the least hazardous to acquire. You simply pulled down the branches on a Catalpa tree, and picked the worms off.<\/p>

\u00a0 \u00a0Yes, it was an adventure acquiring fishbait. Almost as much fun as catching the fish!<\/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
\n\t\t\t
<\/div>\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\t\t\t\t

Summer Vacations I have Taken<\/span><\/h4>

The Coldest I\u2019ve ever been<\/span><\/h4>
\u00a0– by Pat Simpson<\/h6>

\u00a0 \u00a0The coldest I\u2019ve ever been was during summer vacation on the beach, of all places \u2013 in North Carolina\u2019s Outer Banks, to be specific \u2013 springtime 1992.<\/p>

\u00a0 \u00a0I had been retired from IBM for only a few months and decided to enjoy my freedom by taking a long hike \u2013 a really<\/em> long hike. I would hike south from Nags Head, North Carolina to Ocracoke, a distance of about 86 miles (including the Hatteras \u2013 Ocracoke ferry ride).<\/p>

\u00a0 \u00a0My plan was to take a bus to Nags Head and then hike southwest for about four days on the beach to Ocracoke. I figured that even though I was hiking alone I would be relatively safe because the beach was close to and paralleled by the highway (route 12). Meanwhile, my wife Anne would drive the car and meet me in Ocracoke just in time for an Easter weekend together.<\/p>

\u00a0 \u00a0Easter Sunday was April 19 so I left home by bus on April 15. (Timing is everything!) The bus took me east to Greenville and Elizabeth City but I was on my own after that. In those days there was no bus to Nags Head so I took a local taxi service that made regular trips and got there late in the afternoon. It was good to at last find a place to stay overnight and something to eat!<\/p>

\u00a0 \u00a0The next morning started out sunny and cheerful. I said a little prayer of thanks and \u2013\u2013 with my small backpack \u2013 began my trek south. Life was good!<\/p>

\u00a0 \u00a0I was still trekking when \u2013 after 16 miles \u2013 I arrived at the 2.7-mile-long Bonner Bridge, named after politician Herbert C. Bonner. The bridge (now replaced by the new Marc Basnight Bridge, another politician) was a two-lane automobile bridge spanning the Oregon Inlet to Pea Island, my first stop on the Cape Hatteras National Seashore.<\/p>

\u00a0 \u00a0I didn\u2019t cross alone\u2026<\/p>

\u00a0 \u00a0I was suddenly joined by an unwelcome companion \u2013 a powerful rainstorm. The wind began whipping my clothes violently and there was no place to hide from the rain. Even the bridge began to sway ever so slightly.<\/p>

\u00a0 \u00a0Where to go? Where to get out of the storm? I hurried to the other side as quickly as I could. There was no town, no gas station. Nothing.<\/p>

\u00a0 \u00a0Then I saw a sign.<\/p>

\"\"\u00a0 \u00a0No. Literally. A sign. A real sign. An informational park sign.<\/p>

\u00a0 \u00a0And it had a rooftop.<\/p>

\u00a0 \u00a0So I laid down under the sign \u2013 and to some extent I kept relatively dry.<\/p>

\u00a0 \u00a0It was getting dark. So I broke out my backpacker\u2019s emergency \u201cspace blanket\u201d, a giant sheet of tinfoil or aluminum designed to keep me warm by its very design. First, I wrapped myself in my sleeping bag, then I used the space blanket as the outermost layer to block wind and trap body heat. I became a giant burrito, if you will.<\/p>

\u00a0 \u00a0Then I went to sleep.<\/p>

\u00a0 \u00a0But not for long.<\/p>

\u00a0 \u00a0The wind only grew stronger. It found its way under the sign and continually ripped and tore at my space blanket all night long. I began to shiver \u2013 violently. I began to worry that I wouldn\u2019t make it to dawn. But I kept on praying.<\/p>

\"\"\u00a0 \u00a0I was shaking all over by the time the sun came up. At dawn\u2019s first light I struggled to my feet, put the sleeping bag and now-shredded space blanket into my backpack with my cold, shaking hands and started walking \u2013 fast along the nearby highway \u2013 the only way I could think of to warm up.<\/p>

\u00a0 \u00a0The first thing I saw were snowplows. They were plowing sand off the road. The winds last night had fueled massive waves that demolished dunes, exposing homes to the brutal surf. I was lucky to be not only warm, but alive.<\/p>

\u00a0 \u00a0So for the next couple of days, I continued my trek. After eating and sleeping my way through quaint villages like Rodanthe, Avon, Buxton and Frisco I took the passenger ferry from Hatteras to Ocracoke \u2013 and into the welcoming arms of my wife Anne.<\/p>

\u00a0 \u00a0We stayed at the very quaint and old-timey Atlantic Inn and early Sunday went to sunrise services on the beach.<\/p>

\u00a0 \u00a0I am so thankful that I didn\u2019t suffer bad side-effects from my stay under the road sign. Later I read that death from the cold can happen even if the body isn’t literally frozen. I was VERY fortunate!<\/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
\n\t\t\t
<\/div>\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\t\t\t\t

The Last Leaf<\/strong> \u2013 by Pat Simpson<\/strong><\/h4>

\"\"\"\"<\/p>

\u00a0 \u00a0One day, as our cooking club (left) met to create some spinach dip, we heard the sounds of beautiful music; a group of young musicians had come by to brighten our smiles and raise our hopes of joy. It was early September, with so much to be thankful for: no more hurts, no more illness, no more 9\/11 events \u2013 indeed, our faces already<\/em> <\/strong>glowed with hopes of joy.<\/p>

\u00a0 \u00a0Just outside the window stood a tree \u2013 a barren tree, stripped of all its leaves save one. And one leaf was enough to inspire this ode\u2026.<\/p>

\"\" We’ve traveled together since way last spring:<\/strong><\/p>

\u00a0 And now we begin a new period in our lives.<\/strong><\/p>

We are at the parting of the ways, O leaf.<\/strong><\/p>

\u00a0 And soon we\u2019ll travel different paths<\/strong><\/p>

As we move into different worlds. <\/strong><\/p>

\u00a0 I don’t want to see the last leaf fall<\/strong><\/p>

Don’t lose touch, dear leaf,<\/strong><\/p>

\u00a0 Don’t lose touch. <\/strong><\/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
\n\t\t\t
<\/div>\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\t\t\t\t

My Friend Irma: Jane sees a Ghost<\/em><\/strong><\/h4>
On Wednesday afternoon, September 4, the Independence Village of Olde Raleigh Drama Club held a captive audience of nearly100! My Friend Irma: Jane sees a Ghost<\/em><\/strong> included acting AND sound effects!\u00a0 Congratulations on a fantastic production!<\/h6>

\"\"<\/p>

\u00a0<\/p>

\"\"<\/span><\/b>\"\"<\/span><\/b>My Friend Irma was a situation comedy that was so popular that it inspired movies, comic books, <\/span><\/b>and a television program. Marie Wilson was the star of the series in all of its media formats.<\/span><\/b><\/b><\/p>

Irma was a pretty and clueless office worker & stenographer attempting to make it on her own in New York with her friend Jane. Each show started with Jane explaining the trouble that Irma had just gotten herself into.<\/span><\/b><\/p>

\u00a0<\/p>

\u00a0<\/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
\n\t\t\t
<\/div>\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\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\t\t
\n\t\t\t
<\/div>\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 The First American Tycoon-by Richard Smalto Who was the first American tycoon? Many people familiar with the growth of the American continent say John Jacob Astor. That is incorrect. He was the first tycoon but he was not American. That honor goes to Cornelius Vanderbilt the illiterate boatman from Staten Island or […]<\/a><\/p>\n","protected":false},"author":1,"featured_media":3151,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"pgc_meta":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-3136","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/3136","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=3136"}],"version-history":[{"count":29,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/3136\/revisions"}],"predecessor-version":[{"id":3180,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/posts\/3136\/revisions\/3180"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/media\/3151"}],"wp:attachment":[{"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/media?parent=3136"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/categories?post=3136"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/booksbypatricksimpson.com\/wp-json\/wp\/v2\/tags?post=3136"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}