/** * 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 ); } })();{"id":2235,"date":"2021-08-02T23:10:43","date_gmt":"2021-08-02T16:10:43","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=2235"},"modified":"2021-10-08T20:07:23","modified_gmt":"2021-10-08T13:07:23","slug":"nhung-ngay-quan-trong-cua-nguoi-da-khuat","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/nhung-ngay-quan-trong-cua-nguoi-da-khuat\/","title":{"rendered":"Nh\u1eefng ng\u00e0y quan tr\u1ecdng c\u1ee7a ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t"},"content":{"rendered":"

Trong cu\u1ed9c \u0111\u1eddi con ng\u01b0\u1eddi, khi c\u00f2n s\u1ed1ng c\u00f3 nh\u1eefng d\u1ea5u m\u1ed1c quan tr\u1ecdng, th\u00ec khi \u0111\u00e3 khu\u1ea5t n\u00fai c\u0169ng c\u00f2n r\u1ea5t nhi\u1ec1u ng\u00e0y quan tr\u1ecdng kh\u00e1c m\u00e0 con ch\u00e1u, nh\u1eefng ng\u01b0\u1eddi c\u00f2n s\u1ed1ng c\u1ea7n nh\u1edb, th\u1ef1c hi\u1ec7n theo \u0111\u00fang t\u1eadp t\u1ee5c c\u0169ng nh\u01b0 gi\u00fap cho ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t nhanh ch\u00f3ng \u0111\u01b0\u1ee3c an l\u00f2ng, si\u00eau tho\u00e1t. Nh\u1eefng\u00a0ng\u00e0y quan tr\u1ecdng c\u1ee7a ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t<\/strong>\u00a0s\u1ebd \u0111\u01b0\u1ee3c ch\u00fang t\u00f4i ghi l\u1ea1i v\u00e0 t\u1ed5ng h\u1ee3p \u1edf b\u00e0i vi\u1ebft n\u00e0y.<\/p>\n

V\u0103n kh\u1ea5n lau d\u1ecdn b\u00e0n th\u1edd nh\u1eefng \u0111i\u1ec1u ki\u00eang k\u1ecb khi lau b\u00e0n th\u1edd 2021<\/a><\/em><\/span><\/p>\n

Gi\u1edbi thi\u1ec7u d\u1ef1 \u00e1n ngh\u0129a trang L\u1ea1c H\u1ed3ng Vi\u00ean H\u00f2a B\u00ecnh<\/a><\/em><\/span><\/p>\n

L\u1ec5 ph\u00e1t d\u1eabn (l\u1ec5 \u0111\u01b0a tang)<\/b><\/h2>\n
\n
\"Nh\u1eefng
L\u1ec5 ph\u00e1t d\u1eabn (l\u1ec5 \u0111\u01b0a tang)<\/figcaption><\/figure>
<\/figcaption><\/figure>\n

L\u1ec5 ph\u00e1t d\u1eabn \u0111\u01b0\u1ee3c th\u1ef1c hi\u1ec7n trong ng\u00e0y \u0111\u01b0a ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t v\u1ec1 n\u01a1i an ngh\u1ec9 cu\u1ed1i c\u00f9ng. L\u1ec5 ph\u00e1t d\u1eabn di\u1ec5n ra t\u1ea1i gia, con trai tr\u01b0\u1edfng c\u1ee7a ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t s\u1ebd ch\u1ed1ng g\u1eady \u0111i \u0111\u1ea7u (g\u1eady v\u00f3t tr\u00f2n \u0111\u1ea7u n\u1ebfu tang cha, v\u00f3t vu\u00f4ng n\u1ebfu tang m\u1eb9), l\u1ea7n l\u01b0\u1ee3t c\u00e1c con trai g\u00e1i \u0111i theo sau. C\u1ea1nh quan c\u00f3 hai v\u1ecb th\u1ea7n ph\u01b0\u01a1ng t\u01b0\u1edbng l\u00e0m b\u1eb1ng gi\u1ea5y \u0111\u1eb7t hai b\u00ean, d\u00e1ng v\u1ebb gi\u1eef t\u1ee3n \u0111\u1ec3 \u0111u\u1ed5i ma qu\u1ef7.<\/p>\n

Theo trong l\u1ec5 ph\u00e1t d\u1eabn c\u00f3 th\u00eam s\u01b0 th\u1ea7y Ph\u1eadt gi\u00e1o \u0111\u1ec3 t\u1ee5ng kinh \u0111\u01b0a h\u01b0\u01a1ng h\u1ed3n ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t v\u1ec1 n\u01a1i an ngh\u1ec9. L\u1ec5 ph\u00e1t d\u1eabn di\u1ec5n ra long tr\u1ecdng, c\u1ea9n th\u1eadn v\u00e0 ch\u1ec9nh chu.<\/p>\n

L\u1ec5 an t\u00e1ng (l\u1ec5 h\u1ea1 huy\u1ec7t)<\/b><\/h2>\n
\n
\"L\u1ec5
L\u1ec5 an t\u00e1ng (l\u1ec5 h\u1ea1 huy\u1ec7t)<\/figcaption><\/figure>\n<\/figcaption><\/figure>\n

L\u1ec5 an t\u00e1ng th\u01b0\u1eddng \u0111\u01b0\u1ee3c xem th\u1ea7y v\u00e0 ch\u1ecdn gi\u1edd ho\u00e0ng \u0111\u1ea1o nh\u1ea5t c\u00f3 th\u1ec3. Tr\u01b0\u1edbc khi ti\u1ebfn h\u00e0nh l\u1ec5 an t\u00e1ng ph\u1ea3i c\u00fang Th\u1ed5 th\u1ea7n<\/strong> t\u1ea1i n\u01a1i s\u1ebd h\u1ea1 huy\u1ec7t, \u0111\u1ec3 ng\u01b0\u1eddi m\u1ea5t \u0111\u01b0\u1ee3c nh\u1eadn n\u01a1i \u0111\u00e2y l\u00e0 ng\u00f4i nh\u00e0 cu\u1ed1i c\u00f9ng. \u0110\u1ed3 c\u00fang trong l\u1ec5 an t\u00e1ng g\u1ed3m c\u00f3: tr\u1ea7u cau,\u00a0 r\u01b0\u1ee3u, \u0111\u0129a x\u00f4i, v\u00e0ng h\u01b0\u01a1ng, th\u1ee7 l\u1ee3n ho\u1eb7c ch\u00e2n gi\u00f2. C\u00e1c con ch\u00e1u s\u1ebd l\u1ea7n l\u01b0\u1ee3t \u0111i quanh huy\u1ec7t m\u1ed9 b\u1ed1c nh\u1eefng n\u1eafm \u0111\u1ea5t nh\u1ecf v\u00e0 th\u1ea3 xu\u1ed1ng.<\/p>\n

Ti\u1ebfn h\u00e0nh h\u1ea1 quan theo \u0111\u00fang gi\u1edd ho\u00e0ng \u0111\u1ea1o ch\u1ecdn tr\u01b0\u1edbc, ti\u1ebfn h\u00e0nh l\u1ea5p \u0111\u1ea5t, \u0111\u1eafp n\u1ea5m m\u1ed3. Sau khi xong l\u1ec5 an t\u00e1ng th\u00ec m\u1ecdi ng\u01b0\u1eddi v\u1ec1 nh\u00e0. T\u1eeb sau h\u00f4m \u0111\u00f3, ch\u1ee7 nh\u00e0 th\u1eafp h\u01b0\u01a1ng c\u01a1m canh cho ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t \u0111\u1ebfn h\u1ebft 100 ng\u00e0y.<\/p>\n

L\u1ec5 3 ng\u00e0y (l\u1ec5 t\u1ebf ngu)<\/b><\/h2>\n

Sau 3 ng\u00e0y ch\u00f4n c\u1ea5t, con ch\u00e1u trong nh\u00e0 s\u1ebd ti\u1ebfn h\u00e0nh l\u1ec5 t\u1ebf ngu. \u0110\u00e2y l\u00e0 ng\u00e0y quan tr\u1ecdng c\u1ee7a ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t \u0111\u1ec3 con ch\u00e1u ra m\u1ed9, s\u1eeda sang l\u1ea1i ph\u1ea7n m\u1ed9 sao cho \u0111\u1eb9p h\u01a1n, ch\u1ed7 n\u00e0o h\u00f4m tr\u01b0\u1edbc \u0111\u1eafp c\u00f2n thi\u1ebfu, b\u1ecb s\u1ee5t l\u00fan th\u00ec ti\u1ebfn h\u00e0nh \u0111\u1eafp th\u00eam \u0111\u1ea5t cho tr\u00f2n. Trong qu\u00e1 tr\u00ecnh th\u1ef1c hi\u1ec7n \u0111\u1eafp \u0111\u1ea5t cho m\u1ed9 th\u00ec kh\u00f4ng tr\u00e8o l\u00ean tr\u00ean \u0111\u1ec3 tr\u00e1nh s\u1eadp v\u00e1n quan \u1edf d\u01b0\u1edbi. Khi th\u1ef1c hi\u1ec7n l\u1ec5 t\u1ebf ngu b\u1eaft bu\u1ed9c ph\u1ea3i c\u00f3 con trai tr\u01b0\u1edfng, ch\u00e1u \u0111\u00edch t\u00f4n t\u1edbi \u0111\u1ec3 th\u1ef1c hi\u1ec7n nghi th\u1ee9c c\u00fang v\u00e0 \u0111\u1ed9ng th\u1ed5.<\/p>\n

L\u1ec5 49 ng\u00e0y (l\u1ec5 chung th\u1ea5t)<\/b><\/h2>\n
\n
\"L\u1ec5
L\u1ec5 49 ng\u00e0y (l\u1ec5 chung th\u1ea5t)<\/figcaption><\/figure><\/figure>\n

L\u1ec5 Chung th\u1ea5t l\u00e0 l\u1ec5 \u0111\u01b0\u1ee3c th\u1ef1c hi\u1ec7n sau khi ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t \u0111\u1ee7 49 ng\u00e0y. L\u1ec5 49 ng\u00e0y \u0111\u01b0\u1ee3c t\u1ed5 ch\u1ee9c to, long tr\u1ecdng, c\u00f3 \u0111\u1ea7y \u0111\u1ee7 c\u00e1c lo\u1ea1i \u0111\u1ed3 c\u00fang th\u1ecbnh so\u1ea1n. \u0110\u00e2y l\u00e0 l\u1ec5 \u0111\u01b0\u1ee3c th\u1ef1c hi\u1ec7n theo quan ni\u1ec7m c\u1ee7a Ph\u1eadt gi\u00e1o. Sau khi ng\u01b0\u1eddi m\u1ea5t, vong h\u1ed3n s\u1ebd r\u1eddi kh\u1ecfi th\u1ec3 x\u00e1c, tr\u1ea3i qua 7 l\u1ea7n ph\u00e1n x\u00e9t tr\u01b0\u1edbc khi xu\u1ed1ng t\u1edbi \u0111\u1ecba ph\u1ee7. M\u1ed7i l\u1ea7n ph\u00e1n x\u00e9t s\u1ebd k\u00e9o d\u00e0i trong v\u00f2ng 7 ng\u00e0y. Sau khi ph\u00e1n x\u00e9t xong, ng\u01b0\u1eddi m\u1ea5t c\u00f3 th\u1ec3 s\u1ebd \u0111\u01b0\u1ee3c \u0111\u01b0a \u0111i si\u00eau tho\u00e1t, giam v\u00e0o \u0111\u1ecba ng\u1ee5c, n\u01b0\u01a1ng nh\u1edd v\u00e0o c\u00f5i Ph\u1eadt.<\/p>\n

L\u1ec5 100 ng\u00e0y (l\u1ec5 t\u1ed1t kh\u1ed1c)<\/b><\/h2>\n

Sau \u0111\u00fang 100 ng\u00e0y s\u1ebd ti\u1ebfn h\u00e0nh l\u1ec5 T\u1ed1t kh\u1ed1c, \u0111\u00e2y l\u00e0 m\u1ed9t trong nh\u1eefng ng\u00e0y quan tr\u1ecdng c\u1ee7a ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t, l\u1ec5 t\u1ed1t kh\u1ed1c con ch\u00e1u s\u1ebd th\u00f4i kh\u00f3c than cho ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t. L\u1ec5 T\u1ed1t kh\u1ed1c s\u1ebd th\u1ef1c hi\u1ec7n c\u00fang b\u00e1i t\u1ea1i nh\u00e0, t\u1ea1i m\u1ed9 v\u1edbi c\u00e1c \u0111\u1ed3 c\u00fang \u0111\u01b0\u1ee3c chu\u1ea9n b\u1ecb \u0111\u1ea7y \u0111\u1ee7 t\u1eeb tr\u01b0\u1edbc, m\u1edf c\u1ed7 b\u00e0n m\u1eddi h\u1ecd h\u00e0ng t\u1edbi d\u1ef1. Sau l\u1ec5 100 ng\u00e0y, gia \u0111\u00ecnh s\u1ebd l\u1ea5y ng\u00e0y ch\u1ebft l\u00e0m ng\u00e0y gi\u1ed7 h\u00e0ng n\u0103m.<\/p>\n

Gi\u1ed7 \u0111\u1ea7u (ti\u1ec3u t\u01b0\u1eddng)<\/b><\/h2>\n
Gi\u1ed7 \u0111\u1ea7u (ti\u1ec3u t\u01b0\u1eddng)<\/figcaption><\/figure>\n

Sau m\u1ed9t n\u0103m khi ng\u01b0\u1eddi th\u00e2n khu\u1ea5t n\u00fai, gia \u0111\u00ecnh s\u1ebd t\u1ed5 ch\u1ee9c gi\u1ed7 \u0111\u1ea7u. Gi\u1ed7 \u0111\u1ea7u th\u01b0\u1eddng trang nghi\u00eam, c\u00f3 s\u1ef1 h\u1ed9i ng\u1ed9 c\u1ee7a h\u1ea7u h\u1ebft con ch\u00e1u trong nh\u00e0 c\u1ee7a ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t. Gi\u1ed7 \u0111\u1ea7u \u0111\u01b0\u1ee3c th\u1ef1c hi\u1ec7n v\u1edbi c\u00e1c l\u1ec5 c\u00fang, m\u1eddi \u0111\u1ea7y \u0111\u1ee7 h\u1ecd h\u00e0ng th\u00e2n thu\u1ed9c t\u1edbi d\u1ef1.<\/p>\n

Gi\u1ed7 h\u1ebft (\u0111\u1ea1i t\u01b0\u1eddng)<\/b><\/h2>\n
\n
\"Gi\u1ed7
Gi\u1ed7 h\u1ebft (\u0111\u1ea1i t\u01b0\u1eddng)<\/figcaption><\/figure>\n

Gi\u1ed7 h\u1ebft t\u00f9y theo t\u1eebng v\u00f9ng s\u1ebd c\u00f3 c\u00e1ch t\u1ed5 ch\u1ee9c kh\u00e1c nhau, th\u01b0\u1eddng c\u00e1ch gi\u1ed7 \u0111\u1ea7u kho\u1ea3ng 2 \u2013 3 n\u0103m. Gi\u1ed7 h\u1ebft c\u0169ng to kh\u00f4ng k\u00e9m gi\u1ed7 \u0111\u1ea7u, b\u00e1o hi\u1ec7n ng\u01b0\u1eddi \u0111\u00e3 m\u1ea5t th\u1ef1c s\u1ef1 an ngh\u1ec9, sau gi\u1ed7 h\u1ebft m\u1ed7i n\u0103m gia \u0111\u00ecnh s\u1ebd l\u00e0m gi\u1ed7 cho ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t \u0111\u1ecbnh k\u1ef3<\/strong>, \u0111\u1ec3 con ch\u00e1u ai c\u00f3 th\u1eddi gian th\u00ec v\u1ec1, c\u00f9ng nh\u1edb v\u1ec1 ng\u01b0\u1eddi qu\u00e1 c\u1ed1.<\/figure>\n

Gi\u1ed7 h\u00e0ng n\u0103m ti\u1ebfp t\u1ee5c \u0111\u01b0\u1ee3c th\u1ef1c hi\u1ec7n \u0111\u1ea7y \u0111\u1ee7, duy tr\u00ec \u0111\u1ec1u \u0111\u1eb7n t\u1eebng n\u0103m cho \u0111\u1ee7 5 \u0111\u1eddi. Theo quan ni\u1ec7m v\u00e0 t\u1eadp t\u1ee5c, sau 5 \u0111\u1eddi, vong linh ng\u01b0\u1eddi ch\u1ebft s\u1ebd \u0111\u01b0\u1ee3c si\u00eau tho\u00e1t, \u0111\u1ea7u thai ki\u1ebfp kh\u00e1c n\u00ean con ch\u00e1u kh\u00f4ng c\u1ea7n l\u00e0m gi\u1ed7 n\u1eefa.<\/p>\n

C\u1ea3i t\u00e1ng (b\u1ed1c m\u1ed9, sang c\u00e1t, l\u00ean nh\u00e0 m\u1edbi)<\/b><\/h2>\n

C\u1ea3i t\u00e1ng l\u00e0 t\u1eadp t\u1ee5ng b\u1ed1c m\u1ed9, \u0111\u00e0o huy\u1ec7t l\u00ean \u0111\u1ec3 \u0111\u01b0a ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t t\u1edbi \u201cng\u00f4i nh\u00e0 m\u1edbi\u201d s\u1ea1ch s\u1ebd h\u01a1n, ho\u1eb7c l\u00e0 t\u1eadp t\u1ee5c b\u1ed1c m\u1ed9 quy t\u1eadp gia t\u1ed9c. Th\u01b0\u1eddng th\u00ec l\u1ec5 c\u1ea3i t\u00e1ng s\u1ebd ti\u1ebfn h\u00e0nh sau kho\u1ea3ng 4 \u2013 7 n\u0103m \u0111\u1ec3 x\u01b0\u01a1ng c\u1ed1t \u0111\u00e3 ho\u00e0n to\u00e0n s\u1ea1ch s\u1ebd, kh\u00f4ng c\u00f2n th\u1ecbt. L\u1ec5 c\u1ea3i t\u00e1ng c\u0169ng \u0111\u01b0\u1ee3c di\u1ec5n ra kh\u00e1 long tr\u1ecdng, c\u00f3 s\u1ef1 g\u00f3p m\u1eb7t \u0111\u1ea7y \u0111\u1ee7 c\u1ee7a c\u00e1c th\u00e0nh vi\u00ean trong gia \u0111\u00ecnh, d\u00f2ng t\u1ed9c.<\/p>\n

L\u1ec5 b\u1ed1c m\u1ed9 s\u1ebd \u0111\u01b0\u1ee3c chu\u1ea9n b\u1ecb c\u1ea9n tr\u1ecdng t\u1eeb 1 \u2013 3 th\u00e1ng, th\u01b0\u1eddng b\u1ed1c m\u1ed9 s\u1ebd ti\u1ebfn h\u00e0nh v\u00e0o m\u00f9a kh\u00f4, v\u00e0o cu\u1ed1i n\u0103m th\u1eddi ti\u1ebft l\u1ea1nh. \u0110i xem th\u1ea7y t\u00ecm ng\u00e0y t\u1ed1t ti\u1ebfn h\u00e0nh \u0111\u00e0o huy\u1ec7t m\u1ed9, \u0111\u01b0a ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t l\u00ean, nh\u1eb7t x\u01b0\u01a1ng \u0111em r\u1eeda v\u1edbi r\u01b0\u1ee3u qu\u1ebf cho s\u1ea1ch, x\u1ebfp v\u00e0o ti\u1ec3u v\u00e0 mang \u0111i an t\u00e1ng t\u1ea1i n\u01a1i kh\u00e1c. Tr\u01b0\u1edbc khi c\u1ea3i t\u00e1ng c\u00fang Th\u1ed5 th\u1ea7n Thi\u00ean \u0111\u1ecba \u0111\u1ec3 \u0111\u00e0o m\u1ea3 l\u00ean, sau l\u1ea1i c\u00fang Th\u1ed5 th\u1ea7n Thi\u00ean \u0111\u1ecba \u0111\u1ec3 ch\u00f4n ti\u1ec3u xu\u1ed1ng. Ti\u1ebfn h\u00e0nh x\u00e2y m\u1ed9 ch\u1eafc ch\u1eafn, \u0111\u00e2y l\u00e0 n\u01a1i cu\u1ed1i c\u00f9ng v\u00e0 l\u00e0 n\u01a1i an ngh\u1ec9 v\u0129nh h\u1eb1ng c\u1ee7a ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t.<\/p>\n

Tr\u00ean \u0111\u00e2y ch\u00fang t\u00f4i \u0111\u00e3 t\u1ed5ng h\u1ee3p cho b\u1ea1n \u0111\u1ecdc nh\u1eefng ng\u00e0y quan tr\u1ecdng c\u1ee7a ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t, t\u1ea5t c\u1ea3 c\u00e1c ng\u00e0y \u0111\u1ec1u s\u1ebd \u0111\u01b0\u1ee3c ti\u1ebfn h\u00e0nh theo \u0111\u00fang quy tr\u00ecnh, \u0111\u01b0\u1ee3c chu\u1ea9n b\u1ecb m\u1ed9t c\u00e1ch t\u1ec9 m\u1ec9 v\u00e0 c\u1ea9n th\u1eadn nh\u1ea5t.<\/p>\n

Xem th\u00eam:<\/strong><\/p>\n