AUTHOR’S PROFILE – SUSY NIEVES DIANDERAS

Susy is originally from Lima, Peru and has been living in Pensacola since 2005. She is the author of the recently released children’s book, The Boy Who Jumped to the Moon.  The Book is published by TriMark Press. The book is about Michael, a boy who receives a gigantic trampoline…

Susy is originally from Lima, Peru and has been living in Pensacola since 2005.

She is the author of the recently released children’s book, The Boy Who Jumped to the Moon.  The Book is published by TriMark Press.

The book is about Michael, a boy who receives a gigantic trampoline as a birthday gift from his father, and jumps higher and higher until he eventually gets struck in a tree.  After promising his father that he’d never jump again, Michael continues to soar into the sky!  What happens next?  Is the sky finally the limit for Michael?

The book was created from Susy’s own experiences as a parent.  “I was inspired by my children and wanted to share the joy of being a child.”  She says.

Susy has two college age children.  She is a Troy University graduate and holds a Master’s Degree in Counseling and Psychology.  She is a U.S. Navy veteran and was stationed in Hawaii.  In 2007, she became a school teacher and has taught several subjects to pre-kindergarten to 12th grade in different schools in Escambia County, Florida and in Fairfax, Virginia.  She is currently a Spanish teacher.

Susy enjoys spending time with her family and friends and her passion is to read her books to her students.  She hopes to publish more of her books in the near future, including more children’s books, cook books and biographies.

NOTE FROM THE EDITOR:  We ask our readers to support this local area author and purchase her book.  You can find it on Amazon.com

Related posts

JANET Marshall HEADSHOT

FINANCIAL FOCUS® – Vote for solid investment strategies

<?php

global $post;

// Obtén el ID del post actual
$post_id = $post->ID;
// Obtén el contenido del post
$post_content = get_post_field( 'post_content', $post_id );

// Calcula el tiempo de lectura estimado en minutos y segundos
$word_count = str_word_count( strip_tags( $post_content ) );
$reading_time_minutes = floor( $word_count / 200 );
$reading_time_seconds = ceil(($word_count / 200 - $reading_time_minutes) * 60);

// Muestra el tiempo de lectura estimado en minutos y segundos
echo '<p class="read_time">Reading Time: ' . $reading_time_minutes . ':' . $reading_time_seconds . ' min</p>';

?>

FINANCIAL FOCUS – Vote for solid investment strategies This article was written by Edward Jones for use by Janet Marshall your local Edward Jones Financial Advisor at 334-405-0786.  With the…

View post
Black text "LEAN IN" with a red underline beneath "IN" on a white background.

LeanIn.Org publishes the first report on the situation of Latina women in the United States corporate environment

<?php

global $post;

// Obtén el ID del post actual
$post_id = $post->ID;
// Obtén el contenido del post
$post_content = get_post_field( 'post_content', $post_id );

// Calcula el tiempo de lectura estimado en minutos y segundos
$word_count = str_word_count( strip_tags( $post_content ) );
$reading_time_minutes = floor( $word_count / 200 );
$reading_time_seconds = ceil(($word_count / 200 - $reading_time_minutes) * 60);

// Muestra el tiempo de lectura estimado en minutos y segundos
echo '<p class="read_time">Reading Time: ' . $reading_time_minutes . ':' . $reading_time_seconds . ' min</p>';

?>

LeanIn.Org publishes the first report on the situation of Latina women in the United States corporate environment SOURCE LeanIn.Org SAN FRANCISCO /PRNewswire-HISPANIC PR WIRE/ — Recently, LeanIn.Org released its first…

View post
monica_davey

From Impossible Dreams to Achievable Realities:  Breaking the Rental Cycle

<?php

global $post;

// Obtén el ID del post actual
$post_id = $post->ID;
// Obtén el contenido del post
$post_content = get_post_field( 'post_content', $post_id );

// Calcula el tiempo de lectura estimado en minutos y segundos
$word_count = str_word_count( strip_tags( $post_content ) );
$reading_time_minutes = floor( $word_count / 200 );
$reading_time_seconds = ceil(($word_count / 200 - $reading_time_minutes) * 60);

// Muestra el tiempo de lectura estimado en minutos y segundos
echo '<p class="read_time">Reading Time: ' . $reading_time_minutes . ':' . $reading_time_seconds . ' min</p>';

?>

From Impossible Dreams to Achievable Realities:  Breaking the Rental Cycle By Monica Davey, Broker Associate, Real Estate Empowered LLC Moving to a new country always presents challenges, especially when the…

View post
<script>
  /*Source: https://github.com/Krzysztof-Antosik/Two-direction-Sticky-Sidebar*/
  
  // Verificar el ancho de pantalla al cargar y redimensionar
  function checkScreenWidth() {
    if (window.innerWidth <= 767) {
      // Si la pantalla es menor o igual a 676px, no ejecutar el código
      return;
    }

    const stickyElement = document.querySelector('.fb-sidebar__aside');
    const startPosition = stickyElement.getBoundingClientRect().top;

    let endScroll = window.innerHeight - stickyElement.offsetHeight - 500;
    let currPos = window.scrollY;
    let screenHeight = window.innerHeight;
    let stickyElementHeight = stickyElement.offsetHeight;
    let topGap = 40;
    let bottomGap = 40;

    setTimeout(() => {
      if (stickyElement.hasAttribute('data-top-gap')) {
        const dataTopGap = stickyElement.getAttribute('data-top-gap');
        topGap = dataTopGap === 'auto' ? startPosition : parseInt(dataTopGap);
      }

      if (stickyElement.hasAttribute('data-bottom-gap')) {
        bottomGap = parseInt(stickyElement.getAttribute('data-bottom-gap'));
      }
    }, 100);

    stickyElement.style.position = 'sticky';
    stickyElement.style.top = `${topGap}px`;
    stickyElement.style.height = 'fit-content';

    function positionStickySidebar() {
      endScroll = window.innerHeight - stickyElement.offsetHeight - bottomGap;
      const stickyElementTop = parseInt(stickyElement.style.top.replace('px', ''));

      if (stickyElementHeight + topGap + bottomGap > screenHeight) {
        if (window.scrollY < currPos) {
          if (stickyElementTop < topGap) {
            stickyElement.style.top = `${stickyElementTop + currPos - window.scrollY}px`;
          } else if (stickyElementTop >= topGap && stickyElementTop !== topGap) {
            stickyElement.style.top = `${topGap}px`;
          }
        } else {
          if (stickyElementTop > endScroll) {
            stickyElement.style.top = `${stickyElementTop + currPos - window.scrollY}px`;
          } else if (stickyElementTop < endScroll && stickyElementTop !== endScroll) {
            stickyElement.style.top = `${endScroll}px`;
          }
        }
      } else {
        stickyElement.style.top = `${topGap}px`;
      }
      currPos = window.scrollY;
    }

    function stickyElementToMe() {
      stickyElement.style.top = `${topGap}px`;
    }

    function updateSticky() {
      screenHeight = window.innerHeight;
      stickyElementHeight = stickyElement.offsetHeight;
      positionStickySidebar();
    }

    setTimeout(() => {
      window.addEventListener('resize', () => {
        currPos = window.scrollY;
        updateSticky();
      });

      document.addEventListener('scroll', updateSticky, {
        capture: true,
        passive: true
      });
    }, 1000);
  }

  // Verificar el ancho de pantalla al cargar y redimensionar
  window.addEventListener('load', checkScreenWidth);
  window.addEventListener('resize', checkScreenWidth);
</script>