/** * 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":2260,"date":"2021-08-05T17:49:14","date_gmt":"2021-08-05T10:49:14","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=2260"},"modified":"2021-12-20T23:24:59","modified_gmt":"2021-12-20T16:24:59","slug":"duyen-am-la-gi-huong-dan-cat-duyen-am","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/duyen-am-la-gi-huong-dan-cat-duyen-am\/","title":{"rendered":"#1 Duy\u00ean \u00e2m l\u00e0 g\u00ec? H\u01b0\u1edbng d\u1eabn c\u1eaft duy\u00ean \u00e2m"},"content":{"rendered":"

N\u00e9t duy\u00ean l\u00e0 m\u1ed9t th\u1ee9 v\u00f4 h\u00ecnh nh\u01b0ng \u0111\u01b0\u1ee3c cho l\u00e0 s\u1ebd thu h\u00fat ng\u01b0\u1eddi kh\u00e1c gi\u1edbi y\u00eau th\u00edch m\u00ecnh. Ng\u01b0\u1eddi c\u00f3 duy\u00ean s\u1ebd l\u00e0 ng\u01b0\u1eddi \u0111\u00e0o hoa, c\u00f3 nhi\u1ec1u ng\u01b0\u1eddi y\u00eau th\u00edch. Ngo\u00e0i duy\u00ean tr\u1ea7n th\u1ebf, nhi\u1ec1u ng\u01b0\u1eddi hi\u1ec7n nay c\u00f2n g\u1eb7p ph\u1ea3i duy\u00ean \u00e2m, l\u00e0 m\u1ed9t lo\u1ea1i nghi\u1ec7t duy\u00ean gi\u1eefa d\u01b0\u01a1ng th\u1ebf v\u00e0 \u00e2m th\u1ebf, khi\u1ebfn cho ng\u01b0\u1eddi tr\u1ea7n g\u1eb7p tr\u1eafc tr\u1edf trong t\u00ecnh duy\u00ean cu\u1ed9c s\u1ed1ng. \u0110\u1ec3 hi\u1ec3u th\u00eam v\u1ec1 duy\u00ean \u00e2m<\/strong>, b\u1ea1n \u0111\u1ecdc c\u00f9ng Congviennghiatrang.com<\/a> t\u00ecm hi\u1ec3u <\/span>duy\u00ean \u00e2m, h\u01b0\u1edbng d\u1eabn c\u1eaft duy\u00ean \u00e2m <\/strong><\/span>\u1edf b\u00e0i vi\u1ebft d\u01b0\u1edbi \u0111\u00e2y.<\/span><\/p>\n

\"Duy\u00ean
Duy\u00ean \u00e2m l\u00e0 g\u00ec? H\u01b0\u1edbng d\u1eabn c\u1eaft duy\u00ean \u00e2m<\/figcaption><\/figure>\n

Xem th\u00eam >> B\u00e0i v\u0103n kh\u1ea5n c\u00fang gi\u1ed7 \u00f4ng b\u00e0, cha m\u1eb9 m\u1edbi nh\u1ea5t 2021<\/a><\/p>\n

Duy\u00ean \u00e2m l\u00e0 g\u00ec? C\u00f3 th\u1eadt hay kh\u00f4ng?<\/b><\/h2>\n

Duy\u00ean \u00e2m \u0111\u01b0\u1ee3c \u0111\u1ecbnh ngh\u0129a l\u00e0 m\u1ed9t m\u1ed1i nh\u00e2n duy\u00ean s\u00f3t l\u1ea1i c\u1ee7a ng\u01b0\u1eddi c\u00f2n s\u1ed1ng t\u1ea1i d\u01b0\u01a1ng th\u1ebf v\u00e0 nh\u1eefng vong h\u1ed3n \u0111\u00e3 khu\u1ea5t. Nh\u1eefng vong h\u1ed3n n\u00e0y c\u00f3 th\u1ec3 do ch.\u1ebft oan, ch.\u1ebft y\u1ec3u, t.\u1ef1 t.\u1eed, ch.\u1ebft b\u1ea5t \u0111\u1eafc k\u1ef3 t.\u1eed nh\u01b0ng c\u00f2n v\u01b0\u01a1ng v\u1ea5n nh\u00e2n duy\u00ean v\u1edbi ng\u01b0\u1eddi c\u00f2n \u0111ang s\u1ed1ng m\u00e0 kh\u00f4ng th\u1ec3 si\u00eau tho\u00e1t. C\u1ee9 th\u1ebf nh\u1eefng vong h\u1ed3n n\u00e0y b\u00e1m ri\u1ebft l\u1ea5y ng\u01b0\u1eddi s\u1ed1ng, l\u01b0u luy\u1ebfn kh\u00f4ng mu\u1ed1n r\u1eddi \u0111i \u0111\u1ea7u thai, khi\u1ebfn cho nh\u00e2n duy\u00ean tr\u1ea7n th\u1ebf c\u1ee7a ng\u01b0\u1eddi c\u00f2n s\u1ed1ng b\u1ecb \u1ea3nh h\u01b0\u1edfng, c\u1ea3n tr\u1edf h\u00f4n nh\u00e2n, khi\u1ebfn cu\u1ed9c s\u1ed1ng h\u00f4n nh\u00e2n c\u1ee7a ng\u01b0\u1eddi d\u01b0\u01a1ng th\u1ebf g\u1eb7p tr\u1eafc tr\u1edf.<\/span><\/p>\n

Duy\u00ean \u00e2m c\u00f3 th\u1ec3 sinh ra t\u1eeb khi con ng\u01b0\u1eddi b\u1eaft \u0111\u1ea7u \u0111\u01b0\u1ee3c sinh ra \u0111\u00e3 c\u00f3, ho\u1eb7c c\u00f3 th\u1ec3 sinh ra khi m\u1ed9t ng\u01b0\u1eddi c\u00f3 ch\u1ea5p ni\u1ec7m m\u1ea1nh m\u1ebd, gi\u1eefa hai ng\u01b0\u1eddi \u0111ang y\u00eau nhau nh\u01b0ng ch\u1eb3ng may m\u1ed9t ng\u01b0\u1eddi qua \u0111\u1eddi, v\u1eabn c\u00f2n l\u01b0u luy\u1ebfn v\u1edbi m\u1ed1i t\u00ecnh \u1edf tr\u1ea7n th\u1ebf.<\/span><\/p>\n

M\u1eb7t kh\u00e1c, theo kh\u00e1i ni\u1ec7m v\u1ec1 duy\u00ean \u00e2m trong Ph\u1eadt gi\u00e1o<\/a>, duy\u00ean \u00e2m c\u00f3 th\u1ec3 t\u1ed3n t\u1ea1i \u0111\u1ed1i v\u1edbi b\u1ea5t k\u1ef3 ng\u01b0\u1eddi n\u00e0o, \u0111\u01b0\u1ee3c h\u00ecnh th\u00e0nh do nh\u00e2n qu\u1ea3 t\u1eeb ki\u1ebfp tr\u01b0\u1edbc, c\u00f3 th\u1ec3 do h\u1ecd ch\u01b0a \u0111\u01b0\u1ee3c th\u00e0nh to\u00e0n m\u1ed1i t\u00ecnh ki\u1ebfp tr\u01b0\u1edbc. Nh\u1eefng ng\u01b0\u1eddi c\u00f3 duy\u00ean \u00e2m th\u01b0\u1eddng l\u00e0 nh\u1eefng ng\u01b0\u1eddi n\u1eb7ng t\u00ecnh.\u00a0<\/span><\/p>\n

C\u00f3 th\u1ec3 n\u00f3i r\u1eb1ng duy\u00ean \u00e2m l\u00e0 c\u00f3 th\u1eadt, r\u1ea5t nhi\u1ec1u tr\u01b0\u1eddng h\u1ee3p g\u1eb7p ph\u1ea3i, sinh ra v\u00f4 s\u1ed1 r\u1eafc r\u1ed1i khi \u0111\u1ebfn tu\u1ed5i tr\u01b0\u1edfng th\u00e0nh, y\u00eau \u0111\u01b0\u01a1ng v\u00e0 k\u1ebft h\u00f4n. Nhi\u1ec1u ng\u01b0\u1eddi khi g\u1eb7p tr\u1eafc tr\u1edf trong \u0111\u01b0\u1eddng t\u00ecnh duy\u00ean th\u01b0\u1eddng t\u00ecm hi\u1ec3u c\u00e1c \u0111\u1ecba ch\u1ec9 t\u00e2m linh v\u1edbi m\u1ee5c \u0111\u00edch c\u1eaft duy\u00ean \u00e2m, \u0111\u1ec3 cu\u1ed9c s\u1ed1ng h\u00f4n nh\u00e2n \u0111\u01b0\u1ee3c vi\u00ean m\u00e3n, y\u00ean \u1ed5n h\u01a1n.<\/span><\/p>\n

\"Nh\u1eefng
Nh\u1eefng d\u1ea5u hi\u1ec7u \u0111\u1ec3 nh\u1eadn bi\u1ebft duy\u00ean \u00e2m theo<\/figcaption><\/figure>\n

D\u1ea5u hi\u1ec7u nh\u1eadn bi\u1ebft b\u1ea1n c\u00f3 duy\u00ean \u00e2m theo \u0111u\u1ed5i<\/b><\/h2>\n

Nh\u1eefng ng\u01b0\u1eddi g\u1eb7p duy\u00ean \u00e2m th\u01b0\u1eddng c\u00f3 c\u00e1c bi\u1ec3u hi\u1ec7n kh\u00e1c nhau. Nh\u01b0ng chung quy l\u1ea1i h\u1ecd \u0111\u1ec1u c\u00f3 m\u1ed9t trong nh\u1eefng bi\u1ec3u hi\u1ec7n d\u01b0\u1edbi \u0111\u00e2y, kh\u00e1 r\u00f5 r\u00e0ng:<\/span><\/p>\n