{"id":66604,"date":"2023-04-24T21:01:43","date_gmt":"2023-04-24T13:01:43","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=66604"},"modified":"2023-05-05T23:45:09","modified_gmt":"2023-05-05T15:45:09","slug":"quick-launch-mac-screen-sharing","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/","title":{"rendered":"How to Quick-launch Screen Sharing in Mac"},"content":{"rendered":"<p>To connect to a nearby computer from your Mac using Screen Sharing in Finder, you need to do the following in sequence:<\/p>\n<ol>\n<li>Open Finder.<\/li>\n<li>Click on \u201cNetwork\u201d.<\/li>\n<li>Double-click on the nearby computer you want to connect with.<\/li>\n<li>Select \u201cShare Screen\u2026\u201d.<\/li>\n<li>Enter your username and password.<\/li>\n<li>Press \u201cEnter\u201d.<\/li>\n<\/ol>\n<p>Doing this repeatedly can be inconvenient. In this article, we will share two ways to simplify the process of connecting to a nearby computer using Screen Share in Finder. These methods allow you to connect with just one or two steps.<\/p>\n<h2>Method 1: Using a Bash Script<\/h2>\n<p>We will be using a simple command-line bash script in this method to connect to a nearby computer of your choice using VNC (Virtual Network Computing).<\/p>\n<h3>Step 1<\/h3>\n<p>Launch Terminal and type the following command and hit <strong>Enter<\/strong>. This will create a new file call <em>\u2018screenshare\u2019<\/em> with the <em>.sh<\/em> extension:<\/p>\n<pre>\r\nnano screenshare.sh\r\n<\/pre>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/quick-launch-mac-screen-sharing\/script-step-1.jpg?2\" alt=\"nano screenshare\" width=\"1179\" height=\"156\"><\/figure>\n<h3>Step 2<\/h3>\n<p>Copy and paste the following script into the editor:<\/p>\n<pre>\r\n#!\/bin\/bash\r\nopen vnc:\/\/192.168.1.1<\/pre>\n<p>Replace <code>192.168.1.1<\/code> with the IP address of the Mac you want to connect to.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/quick-launch-mac-screen-sharing\/script-step-2.jpg?2\" alt=\"oaste script\" width=\"1186\" height=\"223\"><\/figure>\n<div class=\"su-note\" style=\"border-color:#d7d7d7;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;\">\n<div class=\"su-note-inner su-u-clearfix su-u-trim\" style=\"background-color:#f1f1f1;border-color:#ffffff;color:#333333;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;\">\n<div class=\"sue-icon-text\" data-url=\"\" data-target=\"self\" style=\"min-height:34px;padding-left:36px;color:#333333\">\n<div class=\"sue-icon-text-icon\" style=\"color:#333333;font-size:24px;width:24px;height:24px\"><i class=\"sui sui-info-circle\" style=\"font-size:24px;color:#333333\"><\/i><\/div>\n<div class=\"sue-icon-text-content su-u-trim\" style=\"color:#333333\"><strong>Note:<\/strong> You can find the IP address by going to System Preferences &gt; Network and looking for the IP address under the \u201cStatus\u201d section.<\/div>\n<div style=\"clear:both;height:0\"><\/div>\n<\/div>\n<\/div>\n<\/div>\n<h3>Step 3<\/h3>\n<p>Hit <span class=\"key\">Control<\/span> + <span class=\"key\">O<\/span> to save the file, and then press <span class=\"key\">Control<\/span> + <span class=\"key\">X<\/span> to exit nano.<\/p>\n<h3>Step 4<\/h3>\n<p>Next, we will need to make the file executable. Enter the following command and hit Enter.<\/p>\n<pre>\r\nchmod +x screenshare.sh<\/pre>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/quick-launch-mac-screen-sharing\/script-step-4.jpg?2\" alt=\"make script executable\" width=\"1179\" height=\"165\"><\/figure>\n<h3>Step 5<\/h3>\n<p>To run it, enter the command below and hit <strong>Enter<\/strong>.<\/p>\n<pre>\r\n.\/screenshare.sh<\/pre>\n<p>That\u2019s it. The Screen Sharing application should open and connect to the nearby Mac with the IP address set it the bash script.<\/p>\n<h3>Method 2: Using Mac\u2019s Automator<\/h3>\n<p>The last method we talked about requires you to use a bash script, which involves opening the Terminal application and typing a command to run it. If you don\u2019t use Terminal often or find it difficult, don\u2019t worry! We have another method that achieves the same goal and is easier to use.<\/p>\n<p>This method uses Mac\u2019s Automator to create an application that connects to a nearby Mac through screen sharing automatically.<\/p>\n<h3>Step 1<\/h3>\n<p>Open Automator on your Mac, select \u201cApplication\u201d as the document type.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/quick-launch-mac-screen-sharing\/automator-step-1.jpg?2\" alt=\"Automator Application\" width=\"1500\" height=\"896\"><\/figure>\n<h3>Step 2<\/h3>\n<p>In the search bar, type \u201cRun AppleScript\u201d and drag the \u201cRun AppleScript\u201d action to the workflow area on the right.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/quick-launch-mac-screen-sharing\/automator-step-2.jpg?2\" alt=\"Run AppleScript\" width=\"1500\" height=\"536\"><\/figure>\n<h3>Step 3<\/h3>\n<p>In the AppleScript action, replace the default code with the following code:<\/p>\n<pre>\r\non run {input, parameters}\r\n    set remote_ip to \"192.168.1.1\" -- Replace with the IP address of the Mac you want to connect to\r\n    tell application \"Screen Sharing\"\r\n        activate\r\n        delay 1\r\n        tell application \"System Events\"\r\n            keystroke \"c\" using {command down, shift down}\r\n            delay 1\r\n            keystroke \"v\" using {command down}\r\n            keystroke return\r\n            delay 5\r\n            keystroke tab\r\n            keystroke tab\r\n            keystroke return\r\n        end tell\r\n    end tell\r\nend run\r\n<\/pre>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/quick-launch-mac-screen-sharing\/automator-step-3.jpg?2\" alt=\"paste script\" width=\"1500\" height=\"574\"><\/figure>\n<h3>Step 4<\/h3>\n<p>Replace <code>192.168.1.1 <\/code> with the IP address of the Mac you want to connect to.<\/p>\n<h3>Step 5<\/h3>\n<p>Save the workflow and give it a self-descriptive name, for example \u2013 \u2018<em>Auto Connect Screen Sharing<\/em>\u2018.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/quick-launch-mac-screen-sharing\/automator-step-5.jpg?2\" alt=\"save application\" width=\"1500\" height=\"864\"><\/figure>\n<h3>Step 6<\/h3>\n<p>You have completed the necessary steps, but since this program requires keystrokes to run, you need to grant it permission to execute.\u00a0<\/p>\n<p>Here are the steps you need to follow to grant authorization:<\/p>\n<ol>\n<li>Open \u201cSystem Preferences\u201d on your Mac and go to \u201cPrivacy & Security\u201d.<\/li>\n<li>Scroll down and click on \u201cAccessibility\u201d.<\/li>\n<li>Click the plus icon (+) at the bottom, and select the application we created earlier with Automator.<\/li>\n<\/ol>\n<p>That\u2019s it! Now, simply double-click the app and it will automatically open the Screen Sharing application and connect to the computer we have set.<\/p>","protected":false},"excerpt":{"rendered":"<p>If you frequently do screen sharing on your Mac, here&#8217;s a quick tip on how to do it quickly (pun intended).<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3397],"tags":[3933,4669],"topic":[],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Quick-launch Screen Sharing in Mac - Hongkiat<\/title>\n<meta name=\"description\" content=\"If you frequently do screen sharing on your Mac, here&#039;s a quick tip on how to do it quickly (pun intended).\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Quick-launch Screen Sharing in Mac\" \/>\n<meta property=\"og:description\" content=\"If you frequently do screen sharing on your Mac, here&#039;s a quick tip on how to do it quickly (pun intended).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-24T13:01:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-05T15:45:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/quick-launch-mac-screen-sharing\/script-step-1.jpg?2\" \/>\n<meta name=\"author\" content=\"Hongkiat Lim\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hongkiat Lim\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/quick-launch-mac-screen-sharing\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/quick-launch-mac-screen-sharing\\\/\"},\"author\":{\"name\":\"Hongkiat Lim\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e3613a3bf757e4f67770f0b7a339edd0\"},\"headline\":\"How to Quick-launch Screen Sharing in Mac\",\"datePublished\":\"2023-04-24T13:01:43+00:00\",\"dateModified\":\"2023-05-05T15:45:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/quick-launch-mac-screen-sharing\\\/\"},\"wordCount\":528,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/quick-launch-mac-screen-sharing\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/quick-launch-mac-screen-sharing\\\/script-step-1.jpg?2\",\"keywords\":[\"macOS\",\"screen\"],\"articleSection\":[\"Desktop\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/quick-launch-mac-screen-sharing\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/quick-launch-mac-screen-sharing\\\/\",\"name\":\"How to Quick-launch Screen Sharing in Mac - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/quick-launch-mac-screen-sharing\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/quick-launch-mac-screen-sharing\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/quick-launch-mac-screen-sharing\\\/script-step-1.jpg?2\",\"datePublished\":\"2023-04-24T13:01:43+00:00\",\"dateModified\":\"2023-05-05T15:45:09+00:00\",\"description\":\"If you frequently do screen sharing on your Mac, here's a quick tip on how to do it quickly (pun intended).\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/quick-launch-mac-screen-sharing\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/quick-launch-mac-screen-sharing\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/quick-launch-mac-screen-sharing\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/quick-launch-mac-screen-sharing\\\/script-step-1.jpg?2\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/quick-launch-mac-screen-sharing\\\/script-step-1.jpg?2\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/quick-launch-mac-screen-sharing\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Quick-launch Screen Sharing in Mac\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e3613a3bf757e4f67770f0b7a339edd0\",\"name\":\"Hongkiat Lim\",\"description\":\"Founder and Editor in Chief of Hongkiat.com. Hongkiat is also a designer, developer, entrepreneur, and an active investor in the US stock market.\",\"sameAs\":[\"http:\\\/\\\/www.hongkiat.com\\\/blog\"],\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/hongkiat\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Quick-launch Screen Sharing in Mac - Hongkiat","description":"If you frequently do screen sharing on your Mac, here's a quick tip on how to do it quickly (pun intended).","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/","og_locale":"en_US","og_type":"article","og_title":"How to Quick-launch Screen Sharing in Mac","og_description":"If you frequently do screen sharing on your Mac, here's a quick tip on how to do it quickly (pun intended).","og_url":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2023-04-24T13:01:43+00:00","article_modified_time":"2023-05-05T15:45:09+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/quick-launch-mac-screen-sharing\/script-step-1.jpg?2","type":"","width":"","height":""}],"author":"Hongkiat Lim","twitter_card":"summary_large_image","twitter_creator":"@hongkiat","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Hongkiat Lim","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/"},"author":{"name":"Hongkiat Lim","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e3613a3bf757e4f67770f0b7a339edd0"},"headline":"How to Quick-launch Screen Sharing in Mac","datePublished":"2023-04-24T13:01:43+00:00","dateModified":"2023-05-05T15:45:09+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/"},"wordCount":528,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/quick-launch-mac-screen-sharing\/script-step-1.jpg?2","keywords":["macOS","screen"],"articleSection":["Desktop"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/","url":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/","name":"How to Quick-launch Screen Sharing in Mac - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/quick-launch-mac-screen-sharing\/script-step-1.jpg?2","datePublished":"2023-04-24T13:01:43+00:00","dateModified":"2023-05-05T15:45:09+00:00","description":"If you frequently do screen sharing on your Mac, here's a quick tip on how to do it quickly (pun intended).","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/quick-launch-mac-screen-sharing\/script-step-1.jpg?2","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/quick-launch-mac-screen-sharing\/script-step-1.jpg?2"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/quick-launch-mac-screen-sharing\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Quick-launch Screen Sharing in Mac"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e3613a3bf757e4f67770f0b7a339edd0","name":"Hongkiat Lim","description":"Founder and Editor in Chief of Hongkiat.com. Hongkiat is also a designer, developer, entrepreneur, and an active investor in the US stock market.","sameAs":["http:\/\/www.hongkiat.com\/blog"],"url":"https:\/\/www.hongkiat.com\/blog\/author\/hongkiat\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-hkg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/66604","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=66604"}],"version-history":[{"count":2,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/66604\/revisions"}],"predecessor-version":[{"id":66892,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/66604\/revisions\/66892"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=66604"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=66604"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=66604"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=66604"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}