/** * 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 ); } })(); Người chết có biết mình chết không? Linh hồn sẽ đi về đâu

Người chết có biết mình chết không? Linh hồn sẽ đi về đâu

Các nhà khoa học vẫn đang miệt mài nghiên cứu về cái chết của con người. Có rất nhiều câu hỏi đặt ra như người chết có biết mình chết không, sau khi chết sẽ như thế nào, con người sẽ đi về đâu… Có nhiều giai thoại về một thứ ánh sáng chói lóa được nhìn thấy bởi những người quay trở lại từ cái chết càng làm cho các cuộc tranh luận trở lên sôi nổi hơn

>>Xem thêm : Cách xem hướng đặt mộ theo tuổi năm 2021

Người chết có biết mình chết không

Một nghiên cứu mới cho thấy ý thức của một người sẽ tiếp tục hoạt động sau khi tim ngừng đập và cơ thể không thể cử động được. Điều này có nghĩa là về cơ bản người chết vẫn biết mình chết. Họ bị mắc kẹt bên trong cơ thể đã chết nhưng bộ não vẫn hoạt động nhưng chỉ trong thời gian ngắn

Những người hồi sinh sau khi tim ngừng đập đã nhận thức được những gì đã diễn ra xung quanh họ trong khi họ ‘chết’ trước khi được ‘sống lại’, nghiên cứu tiết lộ. Đáng ngạc nhiên hơn, vẫn có bằng chứng cho thấy người chết thậm chí có thể nghe thấy mình bị các bác sĩ tuyên bố là đã chết.

Người chết có biết mình chết không
Người chết có biết mình chết không

Tiến sĩ Sam Parnia, trưởng phòng nghiên cứu hồi sức tim phổi và trợ lý giáo sư tại Đại học Y khoa Stony Brook, đang nghiên cứu ý thức của con người sau khi chết và đang kiểm tra các trường hợp ngừng tim ở châu Âu và Hoa Kỳ. Ông đã phỏng vấn các bệnh nhân về những gì họ thấy và nghe trước khi họ sống lại.

Ông nói rằng những người trong giai đoạn đầu của cái chết vẫn có thể trải nghiệm một số hình thức ý thức. Chuyên gia nói rằng những người sống sót sau khi bị ngừng tim sau đó đã mô tả chính xác những gì đang xảy ra xung quanh họ sau khi tim họ ngừng đập. Ông nói: “Họ mô tả xem các bác sĩ và y tá làm việc, họ mô tả nhận thức về các cuộc trò chuyện, về những điều trực quan đang diễn ra”

Một người được tuyên bố đã chết là khi tim họ ngừng đập. Nghiên cứu của ông đang kiểm tra những gì xảy ra với não sau khi một người bị ngừng tim – và liệu ý thức có tiếp tục sau khi chết và trong bao lâu – để cải thiện chất lượng hồi sức và ngăn ngừa chấn thương não trong khi khởi động lại tim.

Xem thêm >> : Hướng dẫn cách đi chùa chuẩn tâm linh năm 2021

Cơ thể thay đổi thế nào khi bạn chết đi

Chúng ta thường nghĩ về khoảnh khắc của cái chết là thời điểm mà nhịp tim và nhịp thở ngừng lại. Tuy nhiên cái chết không phải là ngay lập tức. Bộ não sẽ tiếp tục hoạt động trong 10 phút hoặc lâu hơn sau khi chúng ta chết.

Trong môi trường bệnh viện, có một vài yêu cầu bác sĩ sử dụng để xác định cái chết. Chúng bao gồm không có mạch đập, không thở, không có phản xạ và không có co thắt đồng tử để đáp ứng với ánh sáng. Trong trường hợp khẩn cấp, các nhân viên y tế tìm kiếm 5 dấu hiệu tử vong không hồi phục để xác định khi không thể hồi sức. Sau khi cái chết được xác nhận, dòng thời gian của các quá trình vật lý như sau.

Cơ thể người chết thay đổi như thế nào
Cơ thể người chết thay đổi như thế nào

Trong 1 giờ đầu tiên, tất cả các cơ trong cơ thể thư giãn, đồng tử giãn ra, các khớp chân tay rất linh hoạt. Da bị chảy xệ. Trong vòng vài phút sau khi tim ngừng đập, máu chảy ra từ các tĩnh mạch ít hơn nên da người chết sẽ nhợt nhạt, không hồng hào như khi còn sống. Đồng thời, cơ thể bắt đầu giảm nhiệt độ

Bắt đầu khoảng một giờ thứ ba sau khi chết, những thay đổi hóa học trong tế bào của cơ thể khiến tất cả các cơ bắt đầu cứng lại. Độ cứng cơ tối đa trên toàn cơ thể xảy ra sau khoảng 12 giờ, điều này sẽ bị ảnh hưởng bởi tuổi của người quá cố, tình trạng thể chất, giới tính, nhiệt độ không khí và các yếu tố khác.

Tại thời điểm này, chân tay của người chết rất khó di chuyển hoặc thao tác. Đầu gối và khuỷu tay sẽ hơi uốn cong, và ngón tay hoặc ngón chân có thể xuất hiện vẹo bất thường.

Sau 12 giờ, các cơ sẽ bắt đầu nới lỏng do những thay đổi hóa học liên tục trong các tế bào và sự phân hủy mô bên trong.

Sau khi chết linh hồn đi về đâu

Cái chết luôn gây tò mò cho nhân loại và nhà khoa học y học hàng đầu luôn cố gắng tìm hiểu điều gì xảy ra khi con người chết.

Nhiều người trong chúng ta tự hỏi điều gì xảy ra sau khi chúng ta chết. Một số người tin rằng chúng ta không còn tồn tại, trong khi những người khác tin vào một thiên đường và địa ngục. Chúng ta đã sống trước khi chúng ta đến trái đất, và chúng ta sẽ tiếp tục sống sau khi chúng ta chết. Chúng ta biết điều này bởi vì Chúa đã vạch ra toàn bộ kế hoạch của Ngài cho chúng ta trong thánh thư. Nhiều người tin rằng cái chết chưa phải là sự kết thúc

Sau khi chết linh hồn đi về đâu
Sau khi chết linh hồn đi về đâu

Theo quan điểm của Ấn Độ xưa, người ta tin rằng trong thể xác có linh hồn trường cửu. Sau khi chết, tiểu hồn của họ sẽ hòa nhập vào đại ngã Phạm Thiên. Các nhà tôn giáo theo thần quyền thì cho rằng con người chính là sản phẩm của Thượng đế, sau khi chết chỉ có 2 cảnh giới để đến đó là thiên đàng và hỏa ngục.

Theo quan điểm của Phật giáo, cái chết của chúng sanh không phải là dấu chấm hết, cái chết chỉ là sự bắt đầu của một sự sống mới. Con người sau khi chết, tùy theo Nhân đã tạo trong đời hiện tại mà tái sanh vào 6 cõi. Nếu người tốt, sau khi chết sẽ được sanh về cõi Trời

Như vậy các nghiên cứu khoa học đã giải đáp được câu hỏi người chết có biết mình chết không. Còn câu chuyện sau khi chết linh hồn đi về đâu còn tùy thuộc vào quan điểm, tôn giáo và niềm tin của mỗi cộng đồng khác nhau.

Sưu tầm : Internet

MR PHƯƠNG 0965.435.666