?> class Akismet_REST_API { /** * Register the REST API routes. */ public static function init() { if ( ! function_exists( 'register_rest_route' ) ) { // The REST API wasn't integrated into core until 4.4, and we support 4.0+ (for now). return false; } register_rest_route( 'akismet/v1', '/key', array( array( 'methods' => WP_REST_Server::READABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'get_key' ), ), array( 'methods' => WP_REST_Server::EDITABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'set_key' ), 'args' => array( 'key' => array( 'required' => true, 'type' => 'string', 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/get/', 'akismet' ), ), ), ), array( 'methods' => WP_REST_Server::DELETABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'delete_key' ), ) ) ); register_rest_route( 'akismet/v1', '/settings/', array( array( 'methods' => WP_REST_Server::READABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'get_settings' ), ), array( 'methods' => WP_REST_Server::EDITABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'set_boolean_settings' ), 'args' => array( 'akismet_strictness' => array( 'required' => false, 'type' => 'boolean', 'description' => __( 'If true, Akismet will automatically discard the worst spam automatically rather than putting it in the spam folder.', 'akismet' ), ), 'akismet_show_user_comments_approved' => array( 'required' => false, 'type' => 'boolean', 'description' => __( 'If true, show the number of approved comments beside each comment author in the comments list page.', 'akismet' ), ), ), ) ) ); register_rest_route( 'akismet/v1', '/stats', array( 'methods' => WP_REST_Server::READABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'get_stats' ), 'args' => array( 'interval' => array( 'required' => false, 'type' => 'string', 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_interval' ), 'description' => __( 'The time period for which to retrieve stats. Options: 60-days, 6-months, all', 'akismet' ), 'default' => 'all', ), ), ) ); register_rest_route( 'akismet/v1', '/stats/(?P[\w+])', array( 'args' => array( 'interval' => array( 'description' => __( 'The time period for which to retrieve stats. Options: 60-days, 6-months, all', 'akismet' ), 'type' => 'string', ), ), array( 'methods' => WP_REST_Server::READABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'get_stats' ), ) ) ); register_rest_route( 'akismet/v1', '/alert', array( array( 'methods' => WP_REST_Server::READABLE, 'permission_callback' => array( 'Akismet_REST_API', 'remote_call_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'get_alert' ), 'args' => array( 'key' => array( 'required' => false, 'type' => 'string', 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/get/', 'akismet' ), ), ), ), array( 'methods' => WP_REST_Server::EDITABLE, 'permission_callback' => array( 'Akismet_REST_API', 'remote_call_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'set_alert' ), 'args' => array( 'key' => array( 'required' => false, 'type' => 'string', 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/get/', 'akismet' ), ), ), ), array( 'methods' => WP_REST_Server::DELETABLE, 'permission_callback' => array( 'Akismet_REST_API', 'remote_call_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'delete_alert' ), 'args' => array( 'key' => array( 'required' => false, 'type' => 'string', 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/get/', 'akismet' ), ), ), ) ) ); } /** * Get the current Akismet API key. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function get_key( $request = null ) { return rest_ensure_response( Akismet::get_api_key() ); } /** * Set the API key, if possible. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function set_key( $request ) { if ( defined( 'WPCOM_API_KEY' ) ) { return rest_ensure_response( new WP_Error( 'hardcoded_key', __( 'This site\'s API key is hardcoded and cannot be changed via the API.', 'akismet' ), array( 'status'=> 409 ) ) ); } $new_api_key = $request->get_param( 'key' ); if ( ! self::key_is_valid( $new_api_key ) ) { return rest_ensure_response( new WP_Error( 'invalid_key', __( 'The value provided is not a valid and registered API key.', 'akismet' ), array( 'status' => 400 ) ) ); } update_option( 'wordpress_api_key', $new_api_key ); return self::get_key(); } /** * Unset the API key, if possible. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function delete_key( $request ) { if ( defined( 'WPCOM_API_KEY' ) ) { return rest_ensure_response( new WP_Error( 'hardcoded_key', __( 'This site\'s API key is hardcoded and cannot be deleted.', 'akismet' ), array( 'status'=> 409 ) ) ); } delete_option( 'wordpress_api_key' ); return rest_ensure_response( true ); } /** * Get the Akismet settings. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function get_settings( $request = null ) { return rest_ensure_response( array( 'akismet_strictness' => ( get_option( 'akismet_strictness', '1' ) === '1' ), 'akismet_show_user_comments_approved' => ( get_option( 'akismet_show_user_comments_approved', '1' ) === '1' ), ) ); } /** * Update the Akismet settings. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function set_boolean_settings( $request ) { foreach ( array( 'akismet_strictness', 'akismet_show_user_comments_approved', ) as $setting_key ) { $setting_value = $request->get_param( $setting_key ); if ( is_null( $setting_value ) ) { // This setting was not specified. continue; } // From 4.7+, WP core will ensure that these are always boolean // values because they are registered with 'type' => 'boolean', // but we need to do this ourselves for prior versions. $setting_value = Akismet_REST_API::parse_boolean( $setting_value ); update_option( $setting_key, $setting_value ? '1' : '0' ); } return self::get_settings(); } /** * Parse a numeric or string boolean value into a boolean. * * @param mixed $value The value to convert into a boolean. * @return bool The converted value. */ public static function parse_boolean( $value ) { switch ( $value ) { case true: case 'true': case '1': case 1: return true; case false: case 'false': case '0': case 0: return false; default: return (bool) $value; } } /** * Get the Akismet stats for a given time period. * * Possible `interval` values: * - all * - 60-days * - 6-months * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function get_stats( $request ) { $api_key = Akismet::get_api_key(); $interval = $request->get_param( 'interval' ); $stat_totals = array(); $response = Akismet::http_post( Akismet::build_query( array( 'blog' => get_option( 'home' ), 'key' => $api_key, 'from' => $interval ) ), 'get-stats' ); if ( ! empty( $response[1] ) ) { $stat_totals[$interval] = json_decode( $response[1] ); } return rest_ensure_response( $stat_totals ); } /** * Get the current alert code and message. Alert codes are used to notify the site owner * if there's a problem, like a connection issue between their site and the Akismet API, * invalid requests being sent, etc. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function get_alert( $request ) { return rest_ensure_response( array( 'code' => get_option( 'akismet_alert_code' ), 'message' => get_option( 'akismet_alert_msg' ), ) ); } /** * Update the current alert code and message by triggering a call to the Akismet server. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function set_alert( $request ) { delete_option( 'akismet_alert_code' ); delete_option( 'akismet_alert_msg' ); // Make a request so the most recent alert code and message are retrieved. Akismet::verify_key( Akismet::get_api_key() ); return self::get_alert( $request ); } /** * Clear the current alert code and message. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function delete_alert( $request ) { delete_option( 'akismet_alert_code' ); delete_option( 'akismet_alert_msg' ); return self::get_alert( $request ); } private static function key_is_valid( $key ) { $response = Akismet::http_post( Akismet::build_query( array( 'key' => $key, 'blog' => get_option( 'home' ) ) ), 'verify-key' ); if ( $response[1] == 'valid' ) { return true; } return false; } public static function privileged_permission_callback() { return current_user_can( 'manage_options' ); } /** * For calls that Akismet.com makes to the site to clear outdated alert codes, use the API key for authorization. */ public static function remote_call_permission_callback( $request ) { $local_key = Akismet::get_api_key(); return $local_key && ( strtolower( $request->get_param( 'key' ) ) === strtolower( $local_key ) ); } public static function sanitize_interval( $interval, $request, $param ) { $interval = trim( $interval ); $valid_intervals = array( '60-days', '6-months', 'all', ); if ( ! in_array( $interval, $valid_intervals ) ) { $interval = 'all'; } return $interval; } public static function sanitize_key( $key, $request, $param ) { return trim( $key ); } } /** * Twenty Twenty-Five functions and definitions. * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package WordPress * @subpackage Twenty_Twenty_Five * @since Twenty Twenty-Five 1.0 */ if ( ! function_exists( 'twentytwentyfive_post_format_setup' ) ) : /** * Adds theme support for post formats. * * @since Twenty Twenty-Five 1.0 * * @return void */ function twentytwentyfive_post_format_setup() { add_theme_support( 'post-formats', array( 'aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video' ) ); } endif; add_action( 'after_setup_theme', 'twentytwentyfive_post_format_setup' ); if ( ! function_exists( 'twentytwentyfive_editor_style' ) ) : /** * Enqueues editor-style.css in the editors. * * @since Twenty Twenty-Five 1.0 * * @return void */ function twentytwentyfive_editor_style() { add_editor_style( 'assets/css/editor-style.css' ); } endif; add_action( 'after_setup_theme', 'twentytwentyfive_editor_style' ); if ( ! function_exists( 'twentytwentyfive_enqueue_styles' ) ) : /** * Enqueues the theme stylesheet on the front. * * @since Twenty Twenty-Five 1.0 * * @return void */ function twentytwentyfive_enqueue_styles() { $suffix = SCRIPT_DEBUG ? '' : '.min'; $src = 'style' . $suffix . '.css'; wp_enqueue_style( 'twentytwentyfive-style', get_parent_theme_file_uri( $src ), array(), wp_get_theme()->get( 'Version' ) ); wp_style_add_data( 'twentytwentyfive-style', 'path', get_parent_theme_file_path( $src ) ); } endif; add_action( 'wp_enqueue_scripts', 'twentytwentyfive_enqueue_styles' ); if ( ! function_exists( 'twentytwentyfive_block_styles' ) ) : /** * Registers custom block styles. * * @since Twenty Twenty-Five 1.0 * * @return void */ function twentytwentyfive_block_styles() { register_block_style( 'core/list', array( 'name' => 'checkmark-list', 'label' => __( 'Checkmark', 'twentytwentyfive' ), 'inline_style' => ' ul.is-style-checkmark-list { list-style-type: "\2713"; } ul.is-style-checkmark-list li { padding-inline-start: 1ch; }', ) ); } endif; add_action( 'init', 'twentytwentyfive_block_styles' ); if ( ! function_exists( 'twentytwentyfive_pattern_categories' ) ) : /** * Registers pattern categories. * * @since Twenty Twenty-Five 1.0 * * @return void */ function twentytwentyfive_pattern_categories() { register_block_pattern_category( 'twentytwentyfive_page', array( 'label' => __( 'Pages', 'twentytwentyfive' ), 'description' => __( 'A collection of full page layouts.', 'twentytwentyfive' ), ) ); register_block_pattern_category( 'twentytwentyfive_post-format', array( 'label' => __( 'Post formats', 'twentytwentyfive' ), 'description' => __( 'A collection of post format patterns.', 'twentytwentyfive' ), ) ); } endif; add_action( 'init', 'twentytwentyfive_pattern_categories' ); if ( ! function_exists( 'twentytwentyfive_register_block_bindings' ) ) : /** * Registers the post format block binding source. * * @since Twenty Twenty-Five 1.0 * * @return void */ function twentytwentyfive_register_block_bindings() { register_block_bindings_source( 'twentytwentyfive/format', array( 'label' => _x( 'Post format name', 'Label for the block binding placeholder in the editor', 'twentytwentyfive' ), 'get_value_callback' => 'twentytwentyfive_format_binding', ) ); } endif; add_action( 'init', 'twentytwentyfive_register_block_bindings' ); if ( ! function_exists( 'twentytwentyfive_format_binding' ) ) : /** * Callback function for the post format name block binding source. * * @since Twenty Twenty-Five 1.0 * * @return string|void Post format name, or nothing if the format is 'standard'. */ function twentytwentyfive_format_binding() { $post_format_slug = get_post_format(); if ( $post_format_slug && 'standard' !== $post_format_slug ) { return get_post_format_string( $post_format_slug ); } } endif; Faith – Five F's of Life https://fivefoflife.com Faith, Fitness, Family, Friends, Finance Tue, 11 Aug 2026 11:22:08 +0000 en-US hourly 1 https://wordpress.org/?v=7.1 What have I learned in 2020 …. https://fivefoflife.com/?p=338&utm_source=rss&utm_medium=rss&utm_campaign=what-have-i-learned-in-2020 Thu, 21 Jan 2021 05:55:09 +0000 http://fivefoflife.com/?p=338 It’s been 3 years since I have blogged. I know I am long over due for one. I will say I am surprised that people have still made comments since I launched the book 10 years ago and people have shared similar thoughts. I do appreciate everyone that has come and visited the site. Anyways, I never imagine by 2020 there would a global pandemic. I am sure everyone will remember where they were when the shutdown happened for their location. For me, it was the day after my birthday in March when the shutdown all began. At first, everyone was extremely scared, but over time society has developed pandemic fatigue. We can see in the numbers that are being published that cases are climbing for the second wave at time of this blog post. Of course, there is a lot of sadness that has occurred with the deaths of over 1 Million+ globally1.

A lot of people have tried to guess when we will get back to normal. If you look back at the Spanish Flu2, it took 2 years from 1918-1920. That would be my best guess for normalcy because history tends to repeat itself. We anticipate we will have vaccines for COVID-19 by December, but it won’t reach the population until the middle of 2021 at the earliest due to the requirements of the vaccine. That’s why it’s important to keep your Fitness up (health) because if you get sick there might not be a full-proof way to treat you.

Where do we go from here?

There is only one place we can go…. forward. It’s going to be hard for many people if they have lost a loved one, but I am sure their loved ones would want them to move forward. I wish I can say things will be ok, but I really don’t know and that’s where Faith comes in. Faith that things will get better even though there is hurt, pain, and suffering from this pandemic. But you have to keep going. We have to remember our ancestor’s survival The Black Plague, Spanish Flu, and many other things throughout history. We will too survive!

Remember to hug your Family and Friends

Remember to hug your family and friends if even virtually.

What I realized I missed the most during 2020 was simply getting a chance to really spend quality time with my Family and Friends. We really don’t know when it will be our last time seeing them or spending time. If you are able to safely, remember to give them a hug. I think there are many benefits from hugging ranging from distressing to regenerating muscles3.

Thoughts on finances for 2020

During the past year, it’s been a struggle for many families since they could not work because of the restrictions. I have put together some links for us here:

https://www.usa.gov/help-with-bills
https://www.usa.gov/disaster-help-food-housing-bills

But you can do a quick google search to see if there are locate programs available in your area. Don’t be shy asking for help financially. The worst that can happen is that people will say no. But remember you got to put food on the table for yourself and family and people out there will help!

Last Thoughts to close out 2020

Again I know 2020 was not easy for many and myself, but we must keep on going. I will try to write more post as time permits.

References:

(1)Current MORTALITY ANALYSES:
https://coronavirus.jhu.edu/data/mortality

(2)Spanish Flu Info:
https://www.cdc.gov/flu/pandemic-resources/1918-commemoration/1918-pandemic-history.htm

(3) https://www.happify.com/hd/8-reasons-why-you-need-at-least-8-hugs-a-day/

]]>
Life is too short not to go for your dreams https://fivefoflife.com/?p=277&utm_source=rss&utm_medium=rss&utm_campaign=life-is-too-short-not-to-go-for-your-dreams https://fivefoflife.com/?p=277#comments Thu, 30 May 2013 03:37:37 +0000 http://fivefoflife.com/?p=277 3 Things I am happy about:

  • Having a great family that comes visit me
  • Going to the beach with my friends
  • Knowing that there is more to life than work

I am going to keep this simple tonight…It’s important to keep going regardless of whatever happens in your life. You must have grit. Grit to push through life challenges.

I have been M.I.A. due to school and regular work. But I have recognized my true calling now.

Everyone, we all need to think about what our life purpose is if you wake up too many days not knowing what to do with it…

]]>
https://fivefoflife.com/?feed=rss2&p=277 1
Having problems keeping your 2013 Resolutions? https://fivefoflife.com/?p=260&utm_source=rss&utm_medium=rss&utm_campaign=having-problems-keeping-your-2013-resolutions https://fivefoflife.com/?p=260#respond Wed, 02 Jan 2013 07:06:00 +0000 http://fivefoflife.com/?p=260 3 Things I am happy about:

  • Amazon – I get to buy gifts and send them directly and track it for presents
  • Friends to celebrate the New Years with =)
  • Heating inside my house; AC during summer time of course!

A lot of people including myself have challenges with keeping their NYE resolutions. We have the best intent, but are horrible at the execution. The easy answer is try harder, but the truth is we must convince ourselves that our goals are doable and let ourselves fail in order to get back up. I know my readers out there needs some steps….

Here is an article that I found and will use…

http://www.cbsnews.com/8301-505144_162-57349898/7-ways-to-keep-your-new-years-resolutions/

Best of Luck to Everyone for 2013 and their resolutions!

]]>
https://fivefoflife.com/?feed=rss2&p=260 0
Heading to 2013 New Years after Xmas! https://fivefoflife.com/?p=255&utm_source=rss&utm_medium=rss&utm_campaign=heading-to-2013-new-years-after-xmas https://fivefoflife.com/?p=255#respond Sat, 29 Dec 2012 06:01:15 +0000 http://fivefoflife.com/?p=255 3 Things I am happy about:

  • Watching Xmas movies with Family
  • Warm Weather
  • Dinner with Family & Friends

Every year I go visit my family and friends for the holidays in South Florida. I have notice every year that the focus tends to be more on gifts than recognizing why we celebrate Christmas.  Of course, I had to look up the history of Christmas (Xmas for short).

Here is some info on Xmas:
http://en.wikipedia.org/wiki/Christmas

Regardless of what you believe in, the holidays are the best time to catch up with family and friends over dinner or activities.  For example, I will be taking my sister go-kart racing. It’s always a blast to speed on a race track.

On my last note for this entry. Check out this TED video on having less stuff that will make you happier.

As always, it is the people you meet, the books you read, and resources you spend your time on that will tell you where you are heading in life.

]]>
https://fivefoflife.com/?feed=rss2&p=255 0
Fiscal Cliff and Giving during the Holidays https://fivefoflife.com/?p=232&utm_source=rss&utm_medium=rss&utm_campaign=fiscal-cliff-and-giving-during-the-holidays https://fivefoflife.com/?p=232#respond Thu, 06 Dec 2012 04:00:32 +0000 http://fivefoflife.com/?p=232 3 Things I am happy about:

  • The ability to setup e-commerce in minutes not days
  • Giving Gift bags to the homeless
  • Inspiring others to help others

There is a lot of talk and anger about the “Fiscal Cliff” that could happen very soon. I would encourage you not to keep your faith in people. People have been in this predicament before and will again. The important priorities should be your family and friends and not other distractions.

Challenge for today: Watch the video and then ask yourself what have you done this is meaningful this week?

 

]]>
https://fivefoflife.com/?feed=rss2&p=232 0
Worry & Future https://fivefoflife.com/?p=208&utm_source=rss&utm_medium=rss&utm_campaign=worry-future https://fivefoflife.com/?p=208#comments Tue, 13 Nov 2012 00:16:05 +0000 http://fivefoflife.com/?p=208 3 Things I am happy about:

  • Opportunity to meet Warren Buffet
  • Ability to sleep in an amazing bed
  • Thanksgiving dinner

I do not know why, but I feel next year will be a great year of change. I will be graduating and I am not completely sure what will happen in the next six months, but it’s going to be great. I found my passion. My passion is to solve problem and help people. It’s very broad and understand it does not fit the typical answer. I realize I have to focus and lay down a plan of action. At the same time, I need to have the faith that God will provide and guide me to his path for me. I am perplex as to why all these wonderful things are happen at one time. All I can say is that I truly appreciate God’s Will for my life.

I went to church this week. Pastor Pete from Crosspoint discussed about worrying. We only worry when we don’t trust God’s will for us. But how can we not worry? I am very content, but I know I can lose everything at any given instance. I am especially reminded of that when I see people in NYC and Jersey.

 

]]>
https://fivefoflife.com/?feed=rss2&p=208 1
Focus on making Dreams into Reality https://fivefoflife.com/?p=198&utm_source=rss&utm_medium=rss&utm_campaign=focus-on-making-dreams-into-reality https://fivefoflife.com/?p=198#respond Thu, 01 Nov 2012 04:30:49 +0000 http://fivefoflife.com/?p=198 3 Things I am happy about:

  • Ability to design and solve problems
  • Coursea that enables me to learn
  • TED b/c it inspires me all the time
I believe I am reaching a cross roads with my life. There are plenty of opportunities out there. The hardest part about the opportunities is making choices.  I think it is through the good and bad times that we must rely on our Faith to get us pass our own doubts. I have been thinking about a deep thought that has shock my inner core. What is your purpose in life? I believe once you can answer that question all other things will fall into place. 
Watch the video and pray for the trapped 27 Million People

]]>
https://fivefoflife.com/?feed=rss2&p=198 0
Lack of Time https://fivefoflife.com/?p=190&utm_source=rss&utm_medium=rss&utm_campaign=lack-of-time https://fivefoflife.com/?p=190#respond Wed, 17 Oct 2012 14:58:37 +0000 http://fivefoflife.com/?p=190 3 Things I am happy about:

  • Ability to travel
  • New iPhone 5
  • Fellowship

I have been challenge for the last few weeks for time. I argued that I don’t have time, but the truth is that perhaps I am not organizing my time correctly. I have failed to utilize my crossfit opportunities.  I will have to make it more of a priority.

]]>
https://fivefoflife.com/?feed=rss2&p=190 0
Presidential Debate https://fivefoflife.com/?p=181&utm_source=rss&utm_medium=rss&utm_campaign=presidential-debate https://fivefoflife.com/?p=181#respond Thu, 04 Oct 2012 04:19:42 +0000 http://fivefoflife.com/?p=181 3 Things I am happy about:

  • Skype => Talk with a friend in Peru
  • Clam Chowder => Just good stuff
  • Kindle => Reading a book for class

I watched the first Presidential Debate of 2012 tonight. Normally, I just watch the highlights, but tonight I watched the whole thing. Both candidates had their moments, but what was interesting were the topics not covered. All to often we just hit on the main topics. This year it’s about the economy, but what about other topics going on too that have not been discuss? I would challenge people in the U.S. and myself to think about the implications of our votes across the board. In the end, I am happy that we can simply vote  for a new or keep a government instead of bearing arms for a change.

 

]]>
https://fivefoflife.com/?feed=rss2&p=181 0
Tornados Again https://fivefoflife.com/?p=133&utm_source=rss&utm_medium=rss&utm_campaign=tornados-again https://fivefoflife.com/?p=133#respond Thu, 01 Mar 2012 01:14:27 +0000 http://fivefoflife.com/?p=133 3 Things I am happy about:

  • Running after it rains
  • Mexican Food
  • Planning Fun Trips

There were several tornadoes that hit the U.S. again. Several people were killed because of  “Acts of  God”. I know there is nothing I can say will bring comfort to their families right now. But I did pray for them and their families.  I know we have problems in the US. But I also know there are problems outside of the country. Let’s not forgot about the starving kids, human traffic victims, etc… too.

But let’s start with one city at a time….

Something to listen too:

]]>
https://fivefoflife.com/?feed=rss2&p=133 0