/** * Observe how the user enters content into the comment form in order to determine whether it's a bot or not. * * Note that no actual input is being saved here, only counts and timings between events. */ ( function() { // Passive event listeners are guaranteed to never call e.preventDefault(), // but they're not supported in all browsers. Use this feature detection // to determine whether they're available for use. var supportsPassive = false; try { var opts = Object.defineProperty( {}, 'passive', { get : function() { supportsPassive = true; } } ); window.addEventListener( 'testPassive', null, opts ); window.removeEventListener( 'testPassive', null, opts ); } catch ( e ) {} function init() { var input_begin = ''; var keydowns = {}; var lastKeyup = null; var lastKeydown = null; var keypresses = []; var modifierKeys = []; var correctionKeys = []; var lastMouseup = null; var lastMousedown = null; var mouseclicks = []; var mousemoveTimer = null; var lastMousemoveX = null; var lastMousemoveY = null; var mousemoveStart = null; var mousemoves = []; var touchmoveCountTimer = null; var touchmoveCount = 0; var lastTouchEnd = null; var lastTouchStart = null; var touchEvents = []; var scrollCountTimer = null; var scrollCount = 0; var correctionKeyCodes = [ 'Backspace', 'Delete', 'ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'Home', 'End', 'PageUp', 'PageDown' ]; var modifierKeyCodes = [ 'Shift', 'CapsLock' ]; var forms = document.querySelectorAll( 'form[method=post]' ); for ( var i = 0; i < forms.length; i++ ) { var form = forms[i]; var formAction = form.getAttribute( 'action' ); // Ignore forms that POST directly to other domains; these could be things like payment forms. if ( formAction ) { // Check that the form is posting to an external URL, not a path. if ( formAction.indexOf( 'http://' ) == 0 || formAction.indexOf( 'https://' ) == 0 ) { if ( formAction.indexOf( 'http://' + window.location.hostname + '/' ) != 0 && formAction.indexOf( 'https://' + window.location.hostname + '/' ) != 0 ) { continue; } } } form.addEventListener( 'submit', function () { var ak_bkp = prepare_timestamp_array_for_request( keypresses ); var ak_bmc = prepare_timestamp_array_for_request( mouseclicks ); var ak_bte = prepare_timestamp_array_for_request( touchEvents ); var ak_bmm = prepare_timestamp_array_for_request( mousemoves ); var input_fields = { // When did the user begin entering any input? 'bib': input_begin, // When was the form submitted? 'bfs': Date.now(), // How many keypresses did they make? 'bkpc': keypresses.length, // How quickly did they press a sample of keys, and how long between them? 'bkp': ak_bkp, // How quickly did they click the mouse, and how long between clicks? 'bmc': ak_bmc, // How many mouseclicks did they make? 'bmcc': mouseclicks.length, // When did they press modifier keys (like Shift or Capslock)? 'bmk': modifierKeys.join( ';' ), // When did they correct themselves? e.g., press Backspace, or use the arrow keys to move the cursor back 'bck': correctionKeys.join( ';' ), // How many times did they move the mouse? 'bmmc': mousemoves.length, // How many times did they move around using a touchscreen? 'btmc': touchmoveCount, // How many times did they scroll? 'bsc': scrollCount, // How quickly did they perform touch events, and how long between them? 'bte': ak_bte, // How many touch events were there? 'btec' : touchEvents.length, // How quickly did they move the mouse, and how long between moves? 'bmm' : ak_bmm }; var akismet_field_prefix = 'ak_'; if ( this.getElementsByClassName ) { // Check to see if we've used an alternate field name prefix. We store this as an attribute of the container around some of the Akismet fields. var possible_akismet_containers = this.getElementsByClassName( 'akismet-fields-container' ); for ( var containerIndex = 0; containerIndex < possible_akismet_containers.length; containerIndex++ ) { var container = possible_akismet_containers.item( containerIndex ); if ( container.getAttribute( 'data-prefix' ) ) { akismet_field_prefix = container.getAttribute( 'data-prefix' ); break; } } } for ( var field_name in input_fields ) { var field = document.createElement( 'input' ); field.setAttribute( 'type', 'hidden' ); field.setAttribute( 'name', akismet_field_prefix + field_name ); field.setAttribute( 'value', input_fields[ field_name ] ); this.appendChild( field ); } }, supportsPassive ? { passive: true } : false ); form.addEventListener( 'keydown', function ( e ) { // If you hold a key down, some browsers send multiple keydown events in a row. // Ignore any keydown events for a key that hasn't come back up yet. if ( e.key in keydowns ) { return; } var keydownTime = ( new Date() ).getTime(); keydowns[ e.key ] = [ keydownTime ]; if ( ! input_begin ) { input_begin = keydownTime; } // In some situations, we don't want to record an interval since the last keypress -- for example, // on the first keypress, or on a keypress after focus has changed to another element. Normally, // we want to record the time between the last keyup and this keydown. But if they press a // key while already pressing a key, we want to record the time between the two keydowns. var lastKeyEvent = Math.max( lastKeydown, lastKeyup ); if ( lastKeyEvent ) { keydowns[ e.key ].push( keydownTime - lastKeyEvent ); } lastKeydown = keydownTime; }, supportsPassive ? { passive: true } : false ); form.addEventListener( 'keyup', function ( e ) { if ( ! ( e.key in keydowns ) ) { // This key was pressed before this script was loaded, or a mouseclick happened during the keypress, or... return; } var keyupTime = ( new Date() ).getTime(); if ( 'TEXTAREA' === e.target.nodeName || 'INPUT' === e.target.nodeName ) { if ( -1 !== modifierKeyCodes.indexOf( e.key ) ) { modifierKeys.push( keypresses.length - 1 ); } else if ( -1 !== correctionKeyCodes.indexOf( e.key ) ) { correctionKeys.push( keypresses.length - 1 ); } else { // ^ Don't record timings for keys like Shift or backspace, since they // typically get held down for longer than regular typing. var keydownTime = keydowns[ e.key ][0]; var keypress = []; // Keypress duration. keypress.push( keyupTime - keydownTime ); // Amount of time between this keypress and the previous keypress. if ( keydowns[ e.key ].length > 1 ) { keypress.push( keydowns[ e.key ][1] ); } keypresses.push( keypress ); } } delete keydowns[ e.key ]; lastKeyup = keyupTime; }, supportsPassive ? { passive: true } : false ); form.addEventListener( "focusin", function ( e ) { lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); form.addEventListener( "focusout", function ( e ) { lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); } document.addEventListener( 'mousedown', function ( e ) { lastMousedown = ( new Date() ).getTime(); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'mouseup', function ( e ) { if ( ! lastMousedown ) { // If the mousedown happened before this script was loaded, but the mouseup happened after... return; } var now = ( new Date() ).getTime(); var mouseclick = []; mouseclick.push( now - lastMousedown ); if ( lastMouseup ) { mouseclick.push( lastMousedown - lastMouseup ); } mouseclicks.push( mouseclick ); lastMouseup = now; // If the mouse has been clicked, don't record this time as an interval between keypresses. lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'mousemove', function ( e ) { if ( mousemoveTimer ) { clearTimeout( mousemoveTimer ); mousemoveTimer = null; } else { mousemoveStart = ( new Date() ).getTime(); lastMousemoveX = e.offsetX; lastMousemoveY = e.offsetY; } mousemoveTimer = setTimeout( function ( theEvent, originalMousemoveStart ) { var now = ( new Date() ).getTime() - 500; // To account for the timer delay. var mousemove = []; mousemove.push( now - originalMousemoveStart ); mousemove.push( Math.round( Math.sqrt( Math.pow( theEvent.offsetX - lastMousemoveX, 2 ) + Math.pow( theEvent.offsetY - lastMousemoveY, 2 ) ) ) ); if ( mousemove[1] > 0 ) { // If there was no measurable distance, then it wasn't really a move. mousemoves.push( mousemove ); } mousemoveStart = null; mousemoveTimer = null; }, 500, e, mousemoveStart ); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchmove', function ( e ) { if ( touchmoveCountTimer ) { clearTimeout( touchmoveCountTimer ); } touchmoveCountTimer = setTimeout( function () { touchmoveCount++; }, 500 ); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchstart', function ( e ) { lastTouchStart = ( new Date() ).getTime(); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchend', function ( e ) { if ( ! lastTouchStart ) { // If the touchstart happened before this script was loaded, but the touchend happened after... return; } var now = ( new Date() ).getTime(); var touchEvent = []; touchEvent.push( now - lastTouchStart ); if ( lastTouchEnd ) { touchEvent.push( lastTouchStart - lastTouchEnd ); } touchEvents.push( touchEvent ); lastTouchEnd = now; // Don't record this time as an interval between keypresses. lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'scroll', function ( e ) { if ( scrollCountTimer ) { clearTimeout( scrollCountTimer ); } scrollCountTimer = setTimeout( function () { scrollCount++; }, 500 ); }, supportsPassive ? { passive: true } : false ); } /** * For the timestamp data that is collected, don't send more than `limit` data points in the request. * Choose a random slice and send those. */ function prepare_timestamp_array_for_request( a, limit ) { if ( ! limit ) { limit = 100; } var rv = ''; if ( a.length > 0 ) { var random_starting_point = Math.max( 0, Math.floor( Math.random() * a.length - limit ) ); for ( var i = 0; i < limit && i < a.length; i++ ) { rv += a[ random_starting_point + i ][0]; if ( a[ random_starting_point + i ].length >= 2 ) { rv += "," + a[ random_starting_point + i ][1]; } rv += ";"; } } return rv; } if ( document.readyState !== 'loading' ) { init(); } else { document.addEventListener( 'DOMContentLoaded', init ); } })(); Kỳ lạ người phụ nữ vui vẻ chuẩn bị sẵn đất về “cõi tiên”, 77 tuổi vẫn lái ô tô, tập bơi lội

Kỳ lạ người phụ nữ vui vẻ chuẩn bị sẵn đất về “cõi tiên”, 77 tuổi vẫn lái ô tô, tập bơi lội

Người phụ nữ ở tuổi U80 nhưng vô cùng yêu đời, lạc quan, bà luôn chú trọng sức khoẻ, nhưng đã chuẩn bị trước nơi để sau về “cõi tiên”.

Chuẩn bị đất về “cõi tiên” từ gần 15 năm trước

Vào một sáng đẹp trời, bà Lê Thị Bích Hường (sinh năm 1948, tại quận Hoàng Mai, Hà Nội) khoác lên mình bộ quần áo lộng lẫy, ngâm nga những phím đàn, để quay lại những thước phim đẹp nhất ngay tại trước cổng khu đất bà đã chuẩn bị cho bản thân mình nếu có lỡ “nằm xuống” tại Công viên tâm linh Lạc Hồng Viên (Kỳ Sơn, Hòa Bình).
Bà Hường chia sẻ, bà muốn làm thế bởi bà rất yêu nhạc, yêu đàn, và bà muốn ngày tang lễ của mình phải đẹp nhất, con cháu phải vui tươi tiễn bà về “cõi tiên”, thay vì khóc lóc thảm thiết. Đặc biệt, trong ngày tang lễ của mình, bà cũng dặn con cháu không được khóc, không được mặc áo tang, không đeo khăn trắng, con trai mặc comle, con gái mặc quần trắng áo dài.
Đời sống - Kỳ lạ người phụ nữ vui vẻ chuẩn bị sẵn đất về “cõi tiên”, 77 tuổi vẫn lái ô tô, tập bơi lộiDù đã 77 tuổi nhưng bà Hường vẫn luôn lạc quan, yêu đời
“Đám cưới ăn mặc thế nào, đám tang của tôi cũng mặc y như thế. Tôi muốn con cái vui vẻ khi thấy mình về “cõi tiên”, tôi không muốn con rơi nước mắt ngày tôi mất. Với tâm thế là một người mẹ, khi con khóc, con ngã đau mình vô cùng thương vô cùng xót. Đến khi mình nằm xuống, thấy con khóc, con gào mình sẽ vô cùng đau lòng và không đành. Chính vì thế, tôi muốn con tôi hạnh phúc khi tôi hoàn thành nhiệm vụ trên trần”, bà Hường chia sẻ quan điểm sống.
Vì điều đó, bà đã ấp ủ dự định từ lâu, cuối cùng buổi quay đã diễn ra như dự định, ngay trên khuôn viên khu đất rộng 180m2, bà đã mua từ gần 15 năm trước. Giữa khu đất bà đã cho xây một “ngôi nhà” vô cùng rộng rãi và sang trọng. Phía trước, đặt tấm bia khắc cùng bài thơ “Cõi tiên” do chính bà đã sáng tác khi lần đầu tiên đặt chân đến đây.

“Tôi muốn chăm chút cho từng hạng mục ở nơi an nghỉ. May mắn khuôn viên nghĩa trang nơi bà yên nghỉ sau này cỏ cây tươi tốt, các hạng mục xây dựng đã cơ bản hoàn thành”, bà Hường nói.

Có nhiều người đặt câu hỏi: “Tại sao bản thân đang khoẻ mạnh lại đi xây mộ cho chính mình?”, bà chia sẻ, năm 1992 bố bà đột nhiên rời cõi trần, dù có đất tiêu chuẩn cho cán bộ ở nghĩa trang nhưng việc làm thủ tục cũng mất thời gian. Lo xong tang lễ cho bố, bà mới nghĩ tại sao phải đợi đến lúc qua đời mới chuẩn bị chỗ an nghỉ cho mình. Nếu chuẩn bị trước có phải con cháu đỡ khổ.
Nghĩ là làm, bà Hường đi nhiều nơi để tìm mua đất làm khuôn viên, dù khi đó bà mới hơn 40 tuổi. Cuối cùng, sau khi tham khảo và lựa chọn kỹ lưỡng bà đã chọn Hòa Bình là nơi an nghỉ cuối cùng sau khi qua đời.
Đời sống - Kỳ lạ người phụ nữ vui vẻ chuẩn bị sẵn đất về “cõi tiên”, 77 tuổi vẫn lái ô tô, tập bơi lội (Hình 2).Bà quan niệm, chết không đáng sợ, nhưng trước khi chết bản thân phải sống thật ý nghĩa
Bà Hường tâm sự: “Với nhiều người cao tuổi, họ luôn sợ khi nói về cái chết và chẳng mấy ai dám đối diện, hay tự chuẩn bị trước cho sự ra đi của mình. Nhưng với tôi thì hoàn toàn khác. Tôi không bao giờ nghĩ đó là cái chết. Tôi cho rằng, cuộc sống trên cõi trần chỉ là một nhiệm kỳ công tác. Sau khi qua đời có nghĩa là nhiệm kỳ đó đã kết thúc, chuyển sang một nhiệm kỳ công tác mới ở một nơi mới mà thôi. Vì thế, việc chuẩn bị trước cho sự ra đi của mình sẽ khiến mình được thanh thản, thoải mái để tận hưởng cuộc sống trên trần gian”.
Thậm chí, bà còn có quan điểm, bản thân luôn phải đẹp. Mỗi khi ra đường ai cũng muốn mình đẹp, nhưng ở nhà mình cũng phải đẹp vì thời gian ở nhà nhiều hơn ra đường, nên phải chuẩn bị những bộ quần áo đẹp nhất ở nhà. Đặc biệt, khi đi ngủ cũng phải thật đẹp, phải thiết kế những bộ ngủ đẹp nhất.

“Ở cái tuổi này, biết đầu sẽ là một giấc ngủ sâu, sáng mai không dậy nữa, khi đó các con thấy mẹ vẫn đẹp”, bà nói.

77 tuổi tự lái xe, tự học bơi cách nhà hơn 100km

Không chỉ quan điểm sống hơi “lạ”, bà Hường còn tự chủ mọi việc không cần nhờ vả con cháu. 77 tuổi bà vẫn tự mình lái xe cho những chuyến phiêu lưu. Sau cốp xe luôn có 2 vali lớn để quần áo, đồ dùng cá nhân mỗi khi bà di chuyển.
10 năm trước, khi đó bà Hường 67 tuổi mới bắt đầu tham gia học đánh đàn piano. Ngoài tình yêu âm nhạc, mục đích lớn nhất của người phụ nữ này đó là tự tay đánh một bản nhạc được nhạc sĩ phổ từ thơ do chính mình sáng tác, sau đó sẽ dựng thành một MV và phát trong ngày mình ra đi về với cõi phật.
Bà kể rằng, tuổi già học đàn rất khó khi tay cứng, mắt mờ thậm chí phải dùng đến cả kính lúp để nhìn vào bản nhạc. Thế nhưng bằng sự quyết tâm, sau 10 năm bàn tay bà đã đánh được những nốt nhạc uyển chuyển không kém gì những nghệ sĩ.
Đời sống - Kỳ lạ người phụ nữ vui vẻ chuẩn bị sẵn đất về “cõi tiên”, 77 tuổi vẫn lái ô tô, tập bơi lội (Hình 3).Người phụ nữ luôn chủ động mọi thứ trong cuộc sống, không sợ chết nhưng vẫn phải giữ gìn sức khoẻ
Tiếp đó, 10 năm sau, bà quyết định học bơi để chữa bệnh, cũng như rèn luyện sức khoẻ giúp cơ thể dẻo dai.
“Tôi bị thoát vị đĩa đệm từ 6-7 năm trước, tuy nhiên thời gian gần đây tình trạng bệnh nặng lên. Các con tôi làm bác sĩ đã khuyên tôi nên học bơi để cải thiện bệnh. Tôi đã đăng ký khoá học 14 ngày tại Hoà Bình. Sau thời gian, chân đã không đau mà sức khoẻ cũng tốt lên rất nhiều”, bà Hường chia sẻ.

Ở tuổi gần đất xa trời, bà quan niệm, hãy sống vui vẻ tuổi già, khi tuổi già mình làm tròn nhiệm vụ cho các con các cháu, để các cháu góp ích cho sức khỏe. Chết là điều không tránh khỏi, vì thế chúng ta không phải sợ cái chết nhưng điều quan trọng là chúng ta đón nhận nó thế nào. Thậm chí không lấy đó là chuyện buồn.

MR PHƯƠNG 0965.435.666