{"version":"1.0","provider_name":"Foong Cheng Leong","provider_url":"https:\/\/foongchengleong.com\/wp","author_name":"FCL","author_url":"https:\/\/foongchengleong.com\/wp\/author\/xes\/","title":"\u3010\u66f4\u65b0\u3011\u514d\u6b0a\u76ca\u53d7\u5f71\u97ff\u2027\u6d88\u8cbb\u4eba\u61c9\u56de\u8986\u901a\u77e5\u66f8 - Foong Cheng Leong","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"qPSw3CNxkj\"><a href=\"https:\/\/foongchengleong.com\/wp\/sinchew-pdpa\/\">\u3010\u66f4\u65b0\u3011\u514d\u6b0a\u76ca\u53d7\u5f71\u97ff\u2027\u6d88\u8cbb\u4eba\u61c9\u56de\u8986\u901a\u77e5\u66f8<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/foongchengleong.com\/wp\/sinchew-pdpa\/embed\/#?secret=qPSw3CNxkj\" width=\"600\" height=\"338\" title=\"&#8220;\u3010\u66f4\u65b0\u3011\u514d\u6b0a\u76ca\u53d7\u5f71\u97ff\u2027\u6d88\u8cbb\u4eba\u61c9\u56de\u8986\u901a\u77e5\u66f8&#8221; &#8212; Foong Cheng Leong\" data-secret=\"qPSw3CNxkj\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\/\/# sourceURL=https:\/\/foongchengleong.com\/wp\/wp-includes\/js\/wp-embed.js\n<\/script>\n","description":"I was quoted by Sin Chew Daily in this article &#8220;\u3010\u66f4\u65b0\u3011\u514d\u6b0a\u76ca\u53d7\u5f71\u97ff\u2027\u6d88\u8cbb\u4eba\u61c9\u56de\u8986\u901a\u77e5\u66f8&#8220;. \u3010\u66f4\u65b0\u3011\u514d\u6b0a\u76ca\u53d7\u5f71\u97ff\u2027\u6d88\u8cbb\u4eba\u61c9\u56de\u8986\u901a\u77e5\u66f8 2014-03-04 \uff08\u96ea\u862d\u83aa\u2027\u516b\u6253\u9748\u518d\u4e5f3\u65e5\u8a0a\uff09\u500b\u4eba\u8cc7\u6599\u4fdd\u8b77\u5c40\u548c\u6cd5\u5f8b\u754c\u90fd\u4fc3\u8acb\u6d88\u8cbb\u4eba\u5728\u6536\u5230\u8cc7\u6599\u7528\u6236\uff08data user\uff09\u7684\u901a\u77e5\u66f8\u5f8c\uff0c\u5c65\u884c\u500b\u4eba\u7fa9\u52d9\uff0c\u4e3b\u52d5\u806f\u7d61\u76f8\u95dc\u516c\u53f8\uff0c\u8868\u660e\u540c\u610f\u6216\u4e0d\u540c\u610f\u500b\u4eba\u8cc7\u6599\u88ab\u4f7f\u7528\uff0c\u800c\u975e\u7f6e\u4e4b\u4e0d\u7406\uff0c\u4ee5\u514d\u6b0a\u76ca\u53d7\u5230\u5f71\u97ff\u3002 2010\u5e74\u500b\u4eba\u8cc7\u6599\u4fdd\u8b77\u6cd5\u4ee4\u81ea\u53bb\u5e7411\u670815\u65e5\u8d77\u751f\u6548\uff0c\u5b83\u8981\u6c42\u8655\u7406\u500b\u4eba\u8cc7\u6599\u7684\u516c\u53f8\u5982\u5546\u696d\u9280\u884c\u3001\u96fb\u8a0a\u516c\u53f8\u3001\u623f\u5730\u7522\u5546\u7b49\uff0c\u5728\u9650\u671f\u5167\u901a\u77e5\u5ba2\u6236\uff0c\u544a\u77e5\u5df2\u6536\u96c6\u7684\u500b\u4eba\u8cc7\u6599\u7528\u9014\uff0c\u800c\u5ba2\u6236\u82e5\u6709\u7570\u8b70\uff0c\u5247\u4e0d\u80fd\u518d\u4f7f\u7528\u4ed6\u5011\u8996\u70ba\u96b1\u79c1\u7684\u8cc7\u6599\u3002 \u8fd1\u671f\u5927\u5c0f\u516c\u53f8\u7d1b\u7d1b\u5bc4\u51fa\u901a\u77e5\u66f8\u7d66\u6d88\u8cbb\u4eba\uff0c\u4f46\u5927\u90e8\u4efd\u4eba\u9078\u64c7\u5ffd\u8996\u6216\u4e0d\u63a1\u53d6\u9032\u4e00\u6b65\u884c\u52d5\uff0c\u7b49\u65bc\u6388\u6b0a\u7d66\u76f8\u95dc\u516c\u53f8\u7e7c\u7e8c\u4f7f\u7528\u5176\u8cc7\u6599\u3002 \u99ae\u6b63\u826f\uff1a\u6709\u7570\u8b70\u8005\u500b\u5225\u8655\u7406 \u5409\u9686\u5761\u5f8b\u5e2b\u516c\u6703\u8cc7\u8a0a\u5de5\u85dd\u53ca\u51fa\u7248\u59d4\u54e1\u6703\u4e3b\u5e2d\u99ae\u6b63\u826f\u8868\u793a\uff0c\u88ab\u8996\u70ba\u8cc7\u6599\u7528\u6236\u7684\u5404\u5927\u516c\u53f8\u64c1\u6709\u6210\u5343\u4e0a\u842c\u7684\u500b\u4eba\u8cc7\u6599\uff0c\u4ed6\u5011\u6c92\u6709\u8fa6\u6cd5\u4e00\u4e00\u7b49\u6bcf\u4f4d\u6d88\u8cbb\u4eba\u540c\u610f\u5f8c\uff0c\u624d\u4f7f\u7528\u4ed6\u5011\u7684\u8cc7\u6599\u3002 \u201c\u9019\u6a23\u7684\u65b9\u6cd5\u4e0d\u53ef\u884c\uff0c\u8981\u7b49\u6bcf\u500b\u4eba\u540c\u610f\u53ef\u80fd\u6c92\u8fa6\u6cd5\u505a\u751f\u610f\uff0c\u56e0\u6b64\u4ed6\u5011\u63a1\u53d6\u7684\u65b9\u5f0f\uff0c\u662f\u5bc4\u767c\u901a\u77e5\u66f8\u7d66\u6d88\u8cbb\u4eba\uff0c\u544a\u77e5\u6cd5\u4ee4\u6240\u8981\u6c42\u7684\u4e8b\u52d9\uff0c\u7136\u5f8c\u6709\u7570\u8b70\u8005\u518d\u500b\u5225\u8655\u7406\u3002\u201d \u4ed6\u8aaa\uff0c\u5982\u679c\u6d88\u8cbb\u4eba\u5df2\u8868\u660e\u4e0d\u9858\u500b\u4eba\u8cc7\u6599\u88ab\u4f7f\u7528\uff0c\u904e\u5f8c\u537b\u7e7c\u7e8c\u63a5\u6536\u5230\u96fb\u8a71\u7b49\u8a0a\u606f\uff0c\u53ef\u76f4\u63a5\u5411\u500b\u4eba\u8cc7\u6599\u4fdd\u8b77\u5c40\u6295\u8a34\u3002 \u99ae\u6b63\u826f\u8a8d\u70ba\uff0c\u53d72010\u5e74\u500b\u4eba\u8cc7\u6599\u4fdd\u8b77\u6cd5\u4ee4\u898f\u7bc4\uff0c\u5f71\u97ff\u6700\u5927\u7684\u884c\u696d\u5206\u5225\u70ba\u96fb\u8a0a\u696d\u548c\u9280\u884c\u696d\uff0c\u696d\u8005\u64c1\u6709\u5927\u91cf\u500b\u4eba\u8cc7\u6599\uff0c\u5982\u4eca\u8981\u4e00\u4e00\u901a\u77e5\u3002 \u6240\u8b02\u500b\u4eba\u8cc7\u6599\u5305\u62ec\u540d\u5b57\u3001\u8eab\u4efd\u8b49\u865f\u78bc\u3001\u96fb\u8a71\u865f\u78bc\u3001\u4f4f\u5740\u3001\u96fb\u90f5\u7b49\uff0c\u800c\u8a31\u591a\u6d88\u8cbb\u4eba\u6295\u8a34\u500b\u4eba\u8cc7\u6599\u5916\u6cc4\u6216\u88ab\u8f49\u8ce3\u7d66\u7b2c\u4e09\u65b9\u7684\u884c\u92b7\u516c\u53f8\uff0c\u5e38\u63a5\u5230\u4f86\u6b77\u4e0d\u660e\u7684\u4fc3\u92b7\u96fb\u8a71\u6216\u624b\u6a5f\u7c21\u8a0a\uff0c\u800c\u4e0a\u8ff0\u6cd5\u4ee47\u9805\u539f\u5247\u4e2d\uff0c\u6700\u91cd\u8981\u7684\u4e00\u9805\u662f\u4e0d\u53ef\u5728\u672a\u7d93\u7576\u4e8b\u4eba\u5141\u8a31\u4e0b\uff0c\u8655\u7406\u5176\u79c1\u4eba\u8cc7\u6599\u3002 \u500b\u4eba\u8cc7\u6599\u4fdd\u8b77\u5c40\u7e8c\u8fa6\u9192\u89ba\u904b\u52d5 \u6b64\u5916\uff0c\u500b\u4eba\u8cc7\u6599\u4fdd\u8b77\u5c40\u767c\u8a00\u4eba\u8868\u793a\uff0c\u8a72\u5c40\u672a\u4f86\u5c07\u9678\u7e8c\u8209\u8fa6\u66f4\u591a\u6d88\u8cbb\u4eba\u9192\u89ba\u904b\u52d5\uff0c\u8aaa\u660e\u500b\u4eba\u6b0a\u76ca\uff0c\u6e1b\u5c11\u500b\u4eba\u8cc7\u6599\u88ab\u7528\u4f5c\u5546\u696d\u7528\u9014\u7684\u6a5f\u7387\u3002 \u5979\u4e5f\u4fc3\u8acb\u6d88\u8cbb\u4eba\u63a1\u53d6\u4e3b\u52d5\uff0c\u5728\u6536\u5230\u901a\u77e5\u66f8\u5f8c\uff0c\u82e5\u4e0d\u9858\u610f\u500b\u4eba\u8cc7\u6599\u88ab\u7e7c\u7e8c\u4f7f\u7528\uff0c\u5c31\u806f\u7d61\u76f8\u95dc\u516c\u53f8\u8868\u9054\u610f\u9858\u3002 \u201c\u4e0d\u8981\u6015\u9ebb\u7169\u3002\u201d \u8349\u64ec\u500b\u4eba\u8cc7\u6599\u4fdd\u8b77\u6307\u5357 \u53e6\u4e00\u65b9\u9762\uff0c\u500b\u4eba\u8cc7\u6599\u4fdd\u8b77\u5c40\u4e5f\u7a4d\u6975\u5728\u6536\u96c6\u5404\u754c\u7684\u610f\u898b\u548c\u56de\u994b\uff0c\u6e96\u5099\u8349\u64ec\u9075\u5b882010\u5e74\u500b\u4eba\u8cc7\u6599\u4fdd\u8b77\u6307\u5357\u3002 \u4efb\u4f55\u8cc7\u6599\u7528\u6236\u6216\u500b\u4eba\uff0c\u82e5\u5c0d\u6cd5\u4ee4\u53ca\u8349\u64ec\u4e2d\u7684\u6307\u5357\u6709\u610f\u898b\uff0c\u6b61\u8fce\u4ee5\u66f8\u9762\u65b9\u5f0f\u57283\u670820\u65e5\u4ee5\u524d\u63d0\u51fa\u5efa\u8b70\u3002 \u76f8\u95dc\u4fe1\u4ef6\u9664\u4e86\u53ef\u5bc4\u81f3\u5e03\u57ce\u901a\u8a0a\u90e86\u6a13\u7684\u500b\u4eba\u8cc7\u6599\u4fdd\u8b77\u5c40\u5916\uff0c\u4e5f\u80fd\u96fb\u90f5\u81f3pcpdp@pdp.gov.my\u3002 \u6b64\u5916\uff0c\u8a72\u5c40\u4e5f\u63d0\u9192\u90a3\u4e9b\u88ab\u5217\u5165\u8cc7\u6599\u7528\u6236\u5206\u985e\u901a\u4ee4\uff0c\u4f46\u81f3\u4eca\u4ecd\u672a\u767b\u8a18\u7684\u8cc7\u6599\u7528\u6236\uff0c\u5118\u5feb\u96a8\u8868\u683c\u4e00\u8d77\u63d0\u5448\u5ef6\u8aa4\u89e3\u91cb\u4fe1\u3002 \u8cc7\u6599\u7528\u6236\u7fa4\u7d44\u6307\u4ee4\u6240\u95e1\u660e\u768411\u500b\u5728\u5546\u696d\u4ea4\u6613\u4e2d\u4f7f\u7528\u500b\u4eba\u8cc7\u6599\u7684\u9818\u57df\u70ba\u901a\u8a0a\u3001\u9280\u884c\u53ca\u91d1\u878d\u6a5f\u69cb\u3001\u4fdd\u96aa\u3001\u91ab\u7642\u4fdd\u5065\u3001\u65c5\u904a\u53ca\u9152\u5e97\u3001\u4ea4\u901a\u3001\u6559\u80b2\u3001\u76f4\u92b7\u3001\u670d\u52d9\u3001\u623f\u5730\u7522\u53ca\u516c\u7528\u8a2d\u65bd\uff0c\u6709\u95dc\u767b\u8a18\u671f\u9650\u5df2\u5728\u4e0a\u500b2\u670815\u65e5\u622a\u6b62\u3002 \u6d88\u806f\uff1a\u8490\u96c6\u5206\u4eab\u500b\u4eba\u8cc7\u6599 \u9808\u6d88\u8cbb\u8005\u201c\u660e\u78ba\u540c\u610f\u201d \u99ac\u4f86\u897f\u4e9e\u6d88\u8cbb\u4eba\u5354\u6703\u806f\u5408\u6703\u9996\u5e2d\u57f7\u884c\u54e1\u62ff\u7763\u4fdd\u7f85\u897f\u83ef\u4fc3\u8acb\u500b\u4eba\u8cc7\u6599\u4fdd\u8b77\u59d4\u54e1\u6703\uff0c\u5728\u6709\u95dc\u6cd5\u4ee4\u4e2d\u660e\u6587\u898f\u5b9a\u8cc7\u6599\u7528\u6236\u516c\u53f8\u9700\u7372\u5f97\u6d88\u8cbb\u8005\u7684\u201c\u660e\u78ba\u540c\u610f\u201d\uff0c\u5426\u5247\u5c07\u4e0d\u88ab\u5141\u8a31\u8490\u96c6\u3001\u5229\u7528\u6216\u5206\u4eab\u6d88\u8cbb\u8005\u500b\u4eba\u8cc7\u6599\u3002 \u4ed6\u4eca\u65e5\u53d7\u8a2a\u6642\u8868\u793a\uff0c\u7121\u8ad6\u8cc7\u6599\u7528\u6236\u516c\u53f8\u901a\u904e\u4f55\u7a2e\u7ba1\u9053\u544a\u77e5\u6d88\u8cbb\u8005\u8a72\u516c\u53f8\u7684\u96b1\u79c1\u6b0a\u653f\u7b56\uff0c\u6d88\u8cbb\u8005\u61c9\u88ab\u7d66\u4e88\u660e\u78ba\u9078\u64c7\u540c\u610f\u6216\u4e0d\u540c\u610f\u5176\u500b\u4eba\u8cc7\u6599\u88ab\u6536\u96c6\u3001\u4f7f\u7528\u6216\u62ab\u9732\u7d66\u7b2c\u4e09\u65b9\uff0c\u7c3d\u7f72\u767d\u7d19\u9ed1\u5b57\u7684\u540c\u610f\u66f8\u662f\u5176\u4e2d\u4e00\u500b\u4f8b\u5b50\u3002 \u4ed6\u8868\u793a\uff0c\u8a72\u6703\u4e0d\u80fd\u63a5\u53d7\u4f01\u696d\u901a\u904e\u201c\u9ed8\u8a31\u540c\u610f\u201d\u6216\u201c\u9078\u64c7\u9000\u51fa\u201d\u7684\u540c\u610f\u884c\u4f7f\u6a21\u5f0f\uff0c\u4f01\u5716\u53d6\u5de7\u5730\u907f\u958b\u6709\u95dc\u6cd5\u4ee4\u7684\u9650\u5236\u3002 \u4ed6\u8aaa\uff0c2010\u5e74\u500b\u4eba\u8cc7\u6599\u4fdd\u8b77\u6cd5\u4ee4\u7684\u7b2c\u4e00\u539f\u5247\u5c31\u662f\u201c\u4e0d\u53ef\u5728\u672a\u7d93\u7576\u4e8b\u4eba\u5141\u8a31\u4e0b\uff0c\u8655\u7406\u5176\u79c1\u4eba\u8cc7\u6599\u3002\u201d\uff0c\u4f01\u696d\u73fe\u5728\u7684\u505a\u6cd5\u5df2\u9055\u53cd\u8a72\u6cd5\u4ee4\u7684\u7cbe\u795e\u3002 \u4ed6\u8a8d\u70ba\uff0c\u500b\u4eba\u8cc7\u6599\u4fdd\u8b77\u59d4\u54e1\u6703\u5fc5\u9808\u660e\u6587\u898f\u5b9a\u6240\u8b02\u201c\u540c\u610f\u201d\u5fc5\u9808\u662f\u201c\u660e\u78ba\u540c\u610f\u201d\uff0c\u800c\u4efb\u4f55\u5f62\u5f0f\u7684\uff40\u9ed8\u8a31\u540c\u610f\u2019\u90fd\u4e0d\u88ab\u5141\u8a31\uff0c\u624d\u80fd\u89e3\u6c7a\u76ee\u524d\u7684\u72c0\u6cc1\u3002 \uff08\u661f\u6d32\u65e5\u5831\uff0f\u5831\u9053\uff1a\u76e7\u6167\u83c1\uff09"}