Latest Articles

Sign up for the Guyana, South America Monthly E-Magazine absolutely free!
var rm_pre_data = {"ajax_url":"https://guyanagy.com/people/wp-admin/admin-ajax.php", "rm_nonce_field":"8a8a3cea75"};jQuery.fn.bindFirst = function(name, fn) { // bind as you normally would // don't want to miss out on any jQuery magic this.on(name, fn); var events = this.data('events') || jQuery._data(this[0], 'events'); var handlers = events[name]; // take out the handler we just inserted from the end var handler = handlers.splice(handlers.length - 1)[0]; // move it at the beginning handlers.splice(0, 0, handler); };//Rainmaker var Rainmaker = function() {}Rainmaker.prototype = {init : function(form){ // var that = form;if(jQuery(form).closest('.rainmaker_form').length < 1) return;if(jQuery(form).closest('.rainmaker_form').hasClass('rm_init_done') ) return;if(jQuery(form).find('.rm_required_field, .ig_form_required_field').length < 1){ jQuery(form).append('
'); }jQuery(form).closest('.rainmaker_form').addClass(jQuery(form).closest('.rainmaker_form').data('type') || '');jQuery(form).bindFirst('submit', function(e){ window.rainmaker.addLead(e, jQuery(e.target)); }); // submit Event jQuery(form).closest('.rainmaker_form').addClass('rm_init_done'); },addLead : function(e, form, icg_msg){ var form = form || undefined; if(typeof(form) !== 'undefined'){ if(jQuery(form).closest('.rainmaker_form').length 0; if(!jQuery(fm_parent).hasClass('rm_custom') || (!jQuery(form).attr('action') && !mc4wpform) ){ e.preventDefault(); }if(jQuery(form).find('.rm_required_field').val() || jQuery(form).find('.ig_form_required_field').val()){ jQuery(fm_parent).find('.rm-loader').hide(); form.slideUp("slow"); jQuery(fm_parent).find('div.rm_form_message').show(); return; } var formData = {}; var formData = window.rainmaker.prepareFormData(e, form, icg_msg, formData); action = rm_pre_data.ajax_url + '?action=rm_rainmaker_add_lead'; jQuery(form).trigger( 'add_lead.rm', [formData] );jQuery.ajax({type: 'POST', url: action, data: formData, dataType: 'json', success: function(response){ if(response && typeof response.error !== 'undefined' && response.error !== ""){ jQuery(fm_parent).find('.rm-loader').hide(); jQuery(fm_parent).find('div.rm_form_error_message').text(response.error).show(); jQuery(window).trigger('error.rm', [form, response]); } else if(response && typeof response.success !== 'undefined'){ jQuery(form)[0].reset(); jQuery(form).trigger('success.rm', [form, response]); jQuery(fm_parent).find('.rm-loader').hide(); //TODO :: Later Move this in success callback form_message = jQuery(fm_parent).next('div.rm_form_message').html(); if( typeof form_message !== 'undefined' && form_message.trim() !== ''){ jQuery(fm_parent).slideUp("slow"); jQuery(fm_parent).next('div.rm_form_message').show(); // jQuery(fm_parent).next().next('div.rm_form_error_message').hide(); } //TODO :: Later Move this in success callback var redirection_url = response.redirection_url || ''; redirection_url = redirection_url.trim(); if (typeof(redirection_url) === 'string' && redirection_url != '') { if (!/^https?:\/\//i.test(redirection_url) ) { redirection_url = "http://"+redirection_url; } setTimeout(function(){ window.location.href = redirection_url; }, 200); }}else{ jQuery(fm_parent).find('.rm-loader').hide(); } }, error: function(err){ jQuery(fm_parent).find('.rm-loader').hide(); console.log(err); }, }); } },prepareFormData: function (e, form, icg_msg, formData){ jQuery.each((jQuery(form).serializeArray() || {}), function(i, field){ formData['rmfpx_'+ field.name] = field.value; });formData['rmfpx_added'] = true; formData['rmfpx_rm_nonce_field'] = rm_pre_data.rm_nonce_field; formData['rmfpx_rm_form-id'] = jQuery(form.closest('.rainmaker_form')).data('form-id');// Send Icegram Data To Rainmaker if(typeof icegram !== 'undefined'){ formData['rmfpx_ig_mode'] = icegram.mode; formData['rmfpx_ig_remote_url'] = window.location.href; if(typeof icg_msg === 'undefined'){ var msg_id = (jQuery(form.closest('[id^=icegram_message_]') || {}).attr('id') || '').split('_').pop() || 0 ; icg_msg = icegram.get_message_by_id(msg_id) || {}; } if(typeof icg_msg.data !== 'undefined'){ formData['rmfpx_ig_message_id'] = icg_msg.data.id; formData['rmfpx_ig_campaign_id'] = icg_msg.data.campaign_id; } } return formData; }, };if(typeof window.rainmaker === 'undefined'){ window.rainmaker = new Rainmaker(); }jQuery(document).ready(function(){ jQuery('.rainmaker_form form').each(function(i, v){ window.rainmaker.init(v); }); });// Start : For Icegram Compatibility jQuery( window ).on( "init.icegram", function(e, ig) { // Find and init all RM forms within Icegram messages/divs if(typeof ig !== 'undefined' && typeof ig.messages !== 'undefined' ){ jQuery.each(ig.messages, function(i, msg){ var forms = jQuery(msg.el).find('.rainmaker_form form'); forms.each(function(i, form){ if(!jQuery(form).hasClass('rm_init_done')){ window.rainmaker.init(form); jQuery(form).addClass('rm_init_done'); } }); }); }}); // init.icegram//Handle CTA function(s) after successful submission of form jQuery( window ).off('success.rm'); jQuery( window ).on('success.rm', function(e, form, response) { if( typeof icegram !== 'undefined'){ var msg_id = ((jQuery(e.target).closest('[id^=icegram_message_]') || {}).attr('id') || '').split('_').pop() || 0 ; var msg = icegram.get_message_by_id(msg_id) || undefined; if(typeof msg !== 'undefined'){ //TODO:: test this for contact form. // if(msg.data.cta === 'form_via_ajax' && msg.el.find('.rm_subscription').length > 0){ if(msg.data.cta === 'form_via_ajax' && msg.el.find('.rm_subscription, .rm_contact').length > 0){ // TODO::test this , causing duplicate messages msg.el.trigger('form_success.ig_cta', [msg]); } else if(msg.data.cta === 'form' || !msg.data.cta){ if(msg.data.use_form == undefined){ msg.data.response_text = ''; } response_text = '
'+ (msg.data.response_text || msg.el.find('.rm_form_message').html() || '') +'
'; msg.el.find('.ig_form_container, .ig_message, .ig_headline').hide(); var appendTo = msg.el.filter('.ig_container'); if(jQuery.inArray(msg.data.type, ['interstitial', 'messenger']) !== -1){ appendTo = msg.el.find('.ig_message'); appendTo.show(); msg.el.find('.ig_headline').text('').show(); }else if(msg.data.type === 'tab'){ //TODO :: hide is not working appendTo = msg.el.find('.ig_data'); msg.el.find('.ig_headline').show(); } try{ appendTo.append(response_text); }catch(err){ console.log(err); } } }} }); //success.rm// addLead on IG-CTA form submit event jQuery(window).off('form_submit.ig_cta'); jQuery(window).on('form_submit.ig_cta', window.rainmaker.addLead);

Tafari Layne Turns 19

Earlier this year, we featured Mr. Telford Layne as our father of the year in our article, Mr. Telford Layne Congratulates his Son. Well, it seems that we might have to feature Mr. Telford Layne once again as father of the year after seeing a Facebook post he made about his son, Tafari Layne, turning 19 years old.

Absence Makes the Heart Grow Fonder – by Reanna Nickram (Redirected)

We’ve decided to reprint this beautiful article which was posted on the Facebook Page of the author, Reanna Nickram, because it does an awesome job of illustrating the beauty, diversity, and richness of this great land of ours. For locals, it just reinforces what we already know. Reanna Nickram is a Guyanese citizen who resides with her family in Lethem, Region 9. In this beautiful anecdote, she expresses her profound love and patriotism for her country of birth, Guyana.

Guyana Maps Form in Clouds Over Guyana (Redirected)

Clouds floating in the skies form all sorts of bizarre shapes including animals and even maps. If you look carefully and use your imagination, you can see just about any shape in the clouds above. But such a clear-cut, precise, and indisputable shape of the map of the Guyana forming over the skies over Guyana can be interpreted as a miracle. It can be interpreted as an omen – good or bad, or it could be interpreted as a message from God. That is because the likeliness of such an event is so infinitesimally small that the human mind has a hard time believing it happened just by chance.

Queen Elizabeth II – a Glorious Part of Guyana’s History (Redirected)

Her Royal Highness, Queen Elizabeth II, was born Elizabeth Alexandra Mary on 21st of April, 1926 in Mayfair, London, England at 02:40 hours (GMT), while Guyana was still a British colony and was called British Guiana. She ascended the throne of the British Monarchy on the 6th of February, 1952 after the death of her father, King George VI. Her coronation ceremony took place on June 2, 1953 and was the first televised coronation ceremony in history. Queen Elizabeth II reigned for 70 years until her death on September 8, 2022 after which her son, Prince Charles, became King.

St. Ignatius Arts Student, Geveron Moses, Paints Outstanding Portrait of the Late Queen (Redirected)

A student of St. Ignatius Secondary School in Region 9 has painted an outstanding portrait of the late Queen Elizabeth II of England. The painting is now a world famous one after it went viral after we posted it on the Guyana, South America Facebook Page. In just one hour, the post reached over 10,000 people and received hundreds of congratulations. It is so easy to see that there is an enormous reservoir of hidden talent behind that painting!

Beating the Odds: Travis Marcellino Becomes a Military Leader (Redirected)

Life places some of us in challenges circumstances sometimes. But in these difficult times, we must remember the importance of holding our ground. The story of Travel Marcellino, the young GDF commander from Region 1, is one of principle, integrity, honesty, and most importantly, beating the odds. We hope the sensational success story of Travis Marcellino, who grew up without either parent, will inspire you to always see the silver lining in every dark cloud, and to remember that crime is never an option.

Walking Over Hot Coals – a Religious Tradition (Redirected)

I was told walking over hot coals is part of the celebrations of St. John’s Day in the Rupununi Savannahs as well as other hinterland regions of Guyana. Residents say the Roman Catholic tradition of walking over hot coals on the night of the 24th of June spilled over from neighboring Brazil where the Roman Catholics practice it. However, I did some research and could not come up with any instance of Brazilians walking over hot coals on St. John’s day or night or the evening before referred to as St. John’s Eve.

Meet the Guyanese Woman Whose Passion is Caring for God’s Creatures (Redirected)

Guyanese born Anna Maria Esther Roth (full name: Anna Maria Esther Roth Dias), presently residing in the border town of Bonfim, Brazil, next to Lethem, Region 9, Guyana, has a special passion – a love for animals that she describes as an energy that she was born with. Her love for animals transcends that of the average person, and her charitable works in caring for animals extend way beyond owning a few pets. In fact, Esther has created in her home an animal sanctuary which she refers to as “Animal Paradise.”