/** * 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":2534,"date":"2021-10-04T18:21:49","date_gmt":"2021-10-04T11:21:49","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=2534"},"modified":"2024-03-22T14:37:53","modified_gmt":"2024-03-22T07:37:53","slug":"loi-phat-day-ve-chu-tam","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/loi-phat-day-ve-chu-tam\/","title":{"rendered":"L\u1eddi Ph\u1eadt d\u1ea1y v\u1ec1 ch\u1eef t\u00e2m – c\u00f3 t\u00e2m \u1eaft h\u01b0\u1edfng ph\u00fac l\u00e0nh 2024"},"content":{"rendered":"

Trong cu\u1ed9c s\u1ed1ng c\u00f3 r\u1ea5t nhi\u1ec1u \u0111i\u1ec1u qu\u00fd gi\u00e1 nh\u01b0ng quan tr\u1ecdng nh\u1ea5t l\u00e0 t\u00e2m. T\u00e2m kh\u1edfi ph\u00e1t cho m\u1ecdi kh\u1ed5 \u0111au v\u00e0 h\u1ea1nh ph\u00fac, c\u00f9ng l\u1eafng nghe l\u1eddi Ph\u1eadt d\u1ea1y v\u1ec1 ch\u1eef t\u00e2m \u0111\u1ec3 c\u00f3 th\u00eam nh\u1eefng suy ngh\u0129 \u0111\u00fang \u0111\u1eafn cho con \u0111\u01b0\u1eddng m\u00ecnh \u0111i.<\/p>\n

Nhi\u1ec1u ng\u01b0\u1eddi th\u00edch ti\u1ec1n t\u00e0i, danh v\u1ecdng, v\u1eadt ch\u1ea5t, \u0111i\u1ec1u n\u00e0y kh\u00f4ng sai, \u0111\u00f3 l\u00e0 nhu c\u1ea7u thi\u1ebft th\u1ef1c v\u00e0 \u0111\u00e1ng tr\u00e2n tr\u1ecdng. N\u1ebfu l\u00e0m theo t\u00e2m m\u00ecnh th\u00ec nh\u1eefng th\u1ee9 kia s\u1ebd gi\u00fap cu\u1ed9c s\u1ed1ng tr\u1edf n\u00ean xa hoa, t\u1ed1t \u0111\u1eb9p, tho\u1ea3i m\u00e1i h\u01a1n. Nh\u01b0ng ng\u01b0\u1ee3c l\u1ea1i, l\u00e0m tr\u00e1i t\u00e2m th\u00ec c\u00f3 bao nhi\u00eau c\u0169ng ch\u1ec9 khi\u1ebfn cu\u1ed9c s\u1ed1ng b\u1ebf t\u1eafc, b\u1ea5t h\u1ea1nh h\u01a1n m\u00e0 th\u00f4i.<\/p>\n

L\u1eddi Ph\u1eadt d\u1ea1y <\/strong>v\u1ec1 ch\u1eef t\u00e2m\u00a0\u0111\u01b0\u1ee3c ghi trong kinh s\u00e1ch s\u1ebd b\u00e0y t\u1ecf \u0111\u00f4i \u0111i\u1ec1u v\u1ec1 v\u1ea5n \u0111\u1ec1 t\u01b0\u1edfng \u0111\u01a1n gi\u1ea3n m\u00e0 l\u1ea1i r\u1ea5t r\u1ed9ng l\u1edbn n\u00e0y.<\/p>\n

1. L\u1eddi ph\u1eadt d\u1ea1y Nh\u1ea5t thi\u1ebft duy t\u00e2m t\u1ea1o<\/h2>\n
\"L\u1eddi
L\u1eddi ph\u1eadt d\u1ea1y v\u1ec1 ch\u1eef t\u00e2m<\/figcaption><\/figure>\n
Trong kinh Hoa Nghi\u00eam c\u00f3 vi\u1ebft: nh\u1ea5t thi\u1ebft duy t\u00e2m t\u1ea1o, t\u1ee9c l\u00e0 m\u1ecdi vi\u1ec7c \u0111\u1ec1u do t\u00e2m sinh ra. T\u00e2m l\u00e0 th\u1ee9 \u0111i\u1ec1u khi\u1ec3n v\u00e0 n\u1ea3y sinh ra m\u1ecdi l\u1ebd thi\u1ec7n \u00e1c, m\u1ecdi c\u00f4ng \u0111\u1ee9c nghi\u1ec7p b\u00e1o c\u1ee7a m\u1ed9t \u0111\u1eddi ng\u01b0\u1eddi, quy\u1ebft \u0111\u1ecbnh con ng\u01b0\u1eddi \u1ea5y s\u1ebd s\u1ed1ng \u0111\u1eddi l\u01b0\u01a1ng thi\u1ec7n hay \u0111\u1eddi x\u1ea5u xa, s\u1ebd tr\u1edf n\u00ean h\u1ea1nh ph\u00fac hay \u0111au kh\u1ed5.<\/div>\n
<\/div>\n
T\u00e2m t\u1ed1t t\u1ea1o ra thi\u1ec7n h\u1ea1nh, nghi\u1ec7p l\u00e0nh, h\u01b0\u1edbng con ng\u01b0\u1eddi t\u1edbi nh\u1eefng vi\u1ec7c gi\u1ea3n \u0111\u01a1n, t\u1ed1t \u0111\u1eb9p. T\u00e2m x\u1ea5u th\u00fac \u0111\u1ea9y tham, s\u00e2n, si, t\u1ea5t c\u1ea3 nh\u1eefng t\u1ed9i l\u1ed7i sai l\u1ea7m m\u00e0 ch\u00fang ta g\u00e2y ra \u0111\u1ec1u xu\u1ea5t ph\u00e1t t\u1eeb t\u00e2m kh\u00f4ng trong s\u00e1ng. T\u1eeb trong t\u00e2m s\u1ebd d\u1eabn d\u1eaft h\u00e0nh \u0111\u1ed9ng, t\u1eeb h\u00e0nh \u0111\u1ed9ng m\u00e0 t\u1ea1o ra nh\u00e2n qu\u1ea3.<\/div>\n
\n
L\u1eddi Ph\u1eadt d\u1ea1y v\u1ec1 ch\u1ee9 t\u00e2m nh\u1ea5n m\u1ea1nh t\u1edbi s\u1ef1 t\u1ef1 ch\u1ee7 c\u1ee7a m\u1ed7i ng\u01b0\u1eddi, kh\u00f4ng ph\u1ea3i ho\u00e0n c\u1ea3nh, kh\u00f4ng ph\u1ea3i x\u00e3 h\u1ed9i, kh\u00f4ng ph\u1ea3i cu\u1ed9c \u0111\u1eddi \u0111\u1ea9y ch\u00fang ta t\u1edbi ch\u00e2n t\u01b0\u1eddng, khi\u1ebfn ch\u00fang ta r\u01a1i v\u00e0o v\u00f2ng xo\u00e1y oan nghi\u1ec7t m\u00e0 ch\u00ednh t\u00e2m m\u1edbi quy\u1ebft \u0111\u1ecbnh t\u1ea5t c\u1ea3. Th\u1ebf n\u00ean trong Ph\u1eadt gi\u00e1o m\u1edbi c\u00f3 nh\u1eefng b\u00e0i kinh s\u00e1m h\u1ed1i.<\/div>\n
<\/div>\n
S\u00e1m h\u1ed1i l\u00e0 nh\u00ecn l\u1ea1i t\u00e2m c\u1ee7a m\u00ecnh, ch\u1ee7 \u0111\u1ed9ng th\u1eeba nh\u1eadn nh\u1eefng sai l\u1ea7m kh\u1edfi ph\u00e1t t\u1eeb trong t\u00e2m v\u00e0 c\u1ed1 g\u1eafng thay \u0111\u1ed5i, c\u1ea3i bi\u1ebfn \u0111\u1ec3 l\u01b0\u01a1ng t\u00e2m trong s\u00e1ng, x\u00f3a s\u1ea1ch nh\u01b0ng m\u1edd t\u1ee5c trong t\u00e2m. T\u00e2m sinh t\u00ednh v\u00e0\u00a0t\u00e2m sinh t\u01b0\u1edbng, t\u00e2m t\u1ed1t th\u00ec m\u1ecdi th\u1ee9 \u0111\u1ec1u v\u1eb9n tr\u00f2n..<\/div>\n
\n

2. T\u00f9y\u00a0t\u00e2m bi\u1ec3u hi\u1ec7n<\/h2>\n
Trong kinh Th\u1ee7 L\u0103ng Nghi\u00eam c\u00f3 vi\u1ebft: t\u00f9y t\u00e2m bi\u1ec3u hi\u1ec7n, t\u1ee9c l\u00e0 m\u1ecdi s\u1ef1 thi\u1ec7n \u00e1c l\u00e0nh d\u1eef \u0111\u1ec1u do t\u00e2m bi\u1ec3u hi\u1ec7n ra. Ng\u01b0\u1eddi h\u00e0nh \u0111\u1ed9ng kh\u00f4ng t\u1ed1t, c\u00f3 t\u00ednh b\u1ea1o l\u1ef1c, th\u00f9 \u0111\u1ecbch, d\u1ed1i tr\u00e1 t\u1ee9c l\u00e0 t\u00e2m kh\u00f4ng s\u00e1ng; ng\u01b0\u1eddi d\u1ecbu d\u00e0ng, nho nh\u00e3, thanh l\u1ecbch, th\u1eadt th\u00e0 l\u00e0 bi\u1ec3u hi\u1ec7n c\u1ee7a t\u1ea5m l\u00f2ng t\u1ed1t \u0111\u1eb9p.<\/div>\n
<\/div>\n
Kh\u00f4ng c\u00f3 chuy\u1ec7n t\u00e2m t\u1ed1t m\u00e0 bi\u1ec3u hi\u1ec7n ra x\u1ea5u c\u0169ng kh\u00f4ng c\u00f3 tr\u01b0\u1eddng h\u1ee3p t\u00e2m x\u1ea5u m\u00e0 h\u00e0nh \u0111\u1ed9ng l\u1ea1i t\u1ed1t \u0111\u1eb9p tr\u1eeb khi l\u00e0 gi\u1ea3 t\u1ea1o m\u00e0 c\u00e1i g\u00ec gi\u1ea3 th\u00ec s\u1edbm mu\u1ed9n c\u0169ng b\u1ecb v\u1ea1ch tr\u1ea7n. T\u00e2m v\u00e0 bi\u1ec3u hi\u1ec7n r\u1ea5t nh\u1ea5t qu\u00e1n, c\u00f3 s\u1ef1 t\u01b0\u01a1ng \u0111\u1ed3ng, t\u01b0\u01a1ng th\u00f4ng. V\u00ec th\u1ebf th\u00f4ng qua h\u00e0nh \u0111\u1ed9ng c\u1ee7a m\u1ed9t ng\u01b0\u1eddi c\u00f3 th\u1ec3 th\u1ea5y t\u00e2m t\u00ednh c\u1ee7a ng\u01b0\u1eddi \u0111\u00f3.<\/div>\n

3. Tam gi\u1edbi t\u1eadn t\u00e2m, t\u1ee9c th\u1ecb ni\u1ebft b\u00e0n<\/h2>\n
\n
\n
L\u1eddi Ph\u1eadt d\u1ea1y v\u1ec1 ch\u1eef t\u00e2m<\/em>\u00a0ghi trong kinh A H\u00e0m c\u00f3 \u00fd ngh\u0129a l\u00e0 ch\u1ec9 khi n\u00e0o t\u00e2m s\u1ea1ch ba c\u00f5i, kh\u00f4ng c\u00f2n tham, s\u00e2n, si th\u00ec m\u1edbi th\u1ea5y \u0111\u01b0\u1ee3c Ni\u1ebft B\u00e0n \u2013 c\u00f5i c\u1ef1c l\u1ea1c ti\u00ean c\u1ea3nh.<\/span><\/div>\n<\/div>\n<\/div>\n
<\/div>\n
L\u00f2ng tham n\u1ed5i l\u00ean, con ng\u01b0\u1eddi s\u1ebd ch\u00ecm \u0111\u1eafm trong d\u1ee5c gi\u1edbi, l\u00fac n\u00e0o c\u0169ng ch\u1ec9 mu\u1ed1n th\u1ecfa m\u00e3n l\u00f2ng tham, s\u1eb5n s\u00e0ng l\u00e0m t\u1ea5t c\u1ea3 nh\u1eefng chuy\u1ec7n x\u1ea5u xa \u0111\u1ed3i b\u1ea1i nh\u1ea5t \u0111\u1ec3 \u0111\u1ea1t \u0111\u01b0\u1ee3c m\u1ee5c \u0111\u00edch. M\u00e0 l\u00f2ng tham th\u00ec v\u00f4 \u0111\u00e1y, kh\u00f4ng c\u00f3 \u0111i\u1ec3m d\u1eebng, \u0111\u1ea1t \u0111\u01b0\u1ee3c c\u00e1i n\u00e0y r\u1ed3i l\u1ea1i mu\u1ed1n c\u00e1i kia n\u00ean con ng\u01b0\u1eddi l\u00fac n\u00e0o c\u0169ng v\u1ea5t v\u1ea3, b\u00f4n ba v\u00ec nh\u1eefng th\u1ee9 ch\u01b0a ch\u1eafc \u0111\u00e3 th\u1ef1c s\u1ef1 c\u00f3 \u00fd ngh\u0129a.\u00a0Ph\u1eadt<\/a> d\u1ea1y v\u1ec1 ch\u1eef tham, l\u00f2ng tham v\u00e0 n\u1ed7i kh\u1ed5 v\u00ec tham\u00a0nh\u1ea5t \u0111\u1ecbnh ph\u1ea3i nh\u1edb.<\/div>\n
<\/div>\n
Khi l\u00f2ng s\u00e2n h\u1eadn n\u1ed5i l\u00ean, con ng\u01b0\u1eddi s\u1ebd ch\u00ecm trong s\u1eafc gi\u1edbi, sinh s\u1ef1 b\u1ea5t m\u00e3n, t\u1ef1 m\u00ecnh l\u00e0m kh\u1ed5 m\u00ecnh, d\u00f9 kh\u00f4ng tham nh\u01b0ng c\u00f3 s\u00e2n th\u00ec kh\u00f4ng th\u1ec3 h\u1ebft kh\u1ed5, kh\u00f4ng th\u1ec3 h\u1ebft bu\u1ed3n, d\u1ec5 \u0111\u1ed1 k\u1ecb, ghen t\u1ecb m\u00e0 l\u00e0m vi\u1ec7c \u00e1c.<\/div>\n
<\/div>\n
Khi l\u00f2ng si n\u1ed5i l\u00ean, ngu d\u1ed1t u m\u00ea t\u0103m t\u1ed1i, kh\u00f4ng th\u1ea5y \u0111\u00fang sai, kh\u00f4ng m\u00e0ng ph\u1ea3i tr\u00e1i, kh\u00f4ng c\u00f3 t\u00e2m d\u1eabn \u0111\u01b0\u1eddng, d\u1ec5 m\u00ea l\u1ea7m.<\/div>\n
<\/div>\n

4. Nh\u1ea5t ni\u1ec7m s\u00e2n t\u00e2m kh\u1edfi, b\u00e1ch v\u1ea1n ch\u01b0\u1edbng m\u00f4n khai<\/h2>\n
<\/div>\n
M\u1ed9t khi t\u00e2m ni\u1ec7m t\u1ee9c gi\u1eadn, s\u00e2n h\u1eadn kh\u1edfi l\u00ean m\u00e0 ch\u00fang ta kh\u00f4ng t\u1ef1 ki\u1ec1m ch\u1ebf, kh\u00f4ng t\u1ef1 kh\u1eafc ph\u1ee5c, th\u00ec tr\u0103m ng\u00e0n v\u1ea1n chuy\u1ec7n kh\u00f3 kh\u0103n, \u0111au kh\u1ed5, ch\u01b0\u1edbng ng\u1ea1i ti\u1ebfp n\u1ed1i theo sau \u0111\u00f3. T\u00e2m d\u1eabn \u0111\u01b0\u1eddng h\u00e0nh \u0111\u1ed9ng, t\u00e2m sinh t\u00ednh c\u00e1ch, t\u00e2m l\u00e0m n\u00ean t\u01b0\u1edbng ng\u01b0\u1eddi n\u00ean t\u00e2m x\u1ea5u \u1eaft h\u1eb3n bao chuy\u1ec7n thi\u1ebfu t\u1eed t\u1ebf s\u1ebd di\u1ec5n ra.<\/div>\n
<\/div>\n
L\u1eddi Ph\u1eadt d\u1ea1y v\u1ec1 ch\u1eef t\u00e2m\u00a0th\u1ef1c ra chung quy l\u1ea1i ch\u1ec9 c\u00f3 m\u1ed9t tr\u1ecdng \u0111i\u1ec3m: ch\u1eef t\u00e2m t\u1ea1o n\u00ean cu\u1ed9c \u0111\u1eddi. S\u1ed1ng \u1edf \u0111\u1eddi c\u00f3 th\u1ec3 kh\u00f4ng c\u00f3 ti\u1ec1n, kh\u00f4ng c\u00f3 t\u00e0i nh\u01b0ng nh\u1ea5t \u0111\u1ecbnh ph\u1ea3i c\u00f3 t\u00e2m. Ng\u01b0\u1eddi kh\u00f4ng ti\u1ec1n s\u1ed1ng ngh\u00e8o s\u1ed1ng kh\u1ed5, ng\u01b0\u1eddi kh\u00f4ng t\u00e0i s\u1ed1ng v\u00f4 d\u1ee5ng v\u00e0 nh\u1ecf b\u00e9 nh\u01b0ng ng\u01b0\u1eddi kh\u00f4ng t\u00e2m th\u00ec kh\u00f4ng c\u00f3 cu\u1ed9c s\u1ed1ng.<\/div>\n

D\u1ecbch v\u1ee5 ch\u00fang t\u00f4i cung c\u1ea5p:<\/p>\n