{"id":3141,"date":"2017-11-20T17:15:44","date_gmt":"2017-11-20T15:15:44","guid":{"rendered":"https:\/\/www.systemcodegeeks.com\/?p=3141"},"modified":"2017-11-20T11:37:02","modified_gmt":"2017-11-20T09:37:02","slug":"making-native-language-support-nls-gettext-optional","status":"publish","type":"post","link":"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/","title":{"rendered":"Making Native Language Support (NLS) and gettext Optional"},"content":{"rendered":"<p>I&#8217;ve decided to write this blog post after noticing\u00a0<i>how many <\/i>people were asking me to make <code>gettext <\/code>optional when building <code>fswatch<\/code>. At the beginning I actually thought it <i>was<\/i> optional. And I never dug any deeper into the matter because, apparently, everybody experiencing this problem was building <code>fswatch <\/code>from the repository sources instead of building it from a release tar-ball. I would typically answer to build the release tar-ball instead and I would hear no more complaints.<\/p>\n<p>Making <code>gettext <\/code>optional is easy, and should be a best practice when writing a piece of software. However, I&#8217;ve seen so many questions in the Internet about this topic that I&#8217;ve decided to write a blog post where I would outline the reasons why you should do it and\u00a0<i>how<\/i> you should do it using the GNU Autotools.<\/p>\n<h3>So, What&#8217;s the Issue With Building From Repository Sources?<\/h3>\n<p>Actually there&#8217;s no issue. But probably many people asking that question don&#8217;t know how the Autotools work. Autoconf is a tool whose goal is producing scripts (the ubiquitous<br \/>\n<code>configure <\/code>script) that configure the source code before building it to adapt it to the characteristics of the current system. In a typical flow the user does nothing but running <code>configure<\/code>. The script will run and will test for the presence of all the features requested by the author. The presence of a feature, or its lack thereof, can then be used to parametrise <code>Makefiles<\/code>, or more generally, be used to conditionally drive the execution of other tests or scripts.<\/p>\n<p>The Autotools are\u00a0<i>not<\/i> required by end users. The scripts generated by the Autotools are\u00a0<i>fully<\/i> independent from them. These script are then bundled with the sources (in a<br \/>\n<i>distribution<\/i>) which is often called a\u00a0<i>release tar-ball<\/i>.<\/p>\n<p>As you can see, the goal of the Autotools is making\u00a0<i>users&#8217;<\/i> life simple, not\u00a0<i>maintainers&#8217;<\/i>. In fact, maintainers\u00a0<i>need<\/i> to have the Autotools components they use in order to generate a distribution. These are the sources you typically find in a package repository such as <code>fswatch<\/code>.\u00a0<i>That&#8217;s<\/i> why you don&#8217;t find any <code>configure <\/code>script in the source repository: it&#8217;s created when a release is created and a distribution is packaged.<\/p>\n<p>Perhaps not surprisingly,\u00a0<i>GNU gettext<\/i> is one of the components software authors may use conditionally. <code>configure <\/code>would then check the build environment to detect the availability of all the required <code>gettext <\/code>components and enable\u00a0<i>Native Language Support<\/i> (NLS) if all checks succeed.<\/p>\n<h3>What&#8217;s Special About Gettext?<\/h3>\n<p>This Autotools overview doesn&#8217;t explain, though, what&#8217;s the issue about <code>gettext<\/code>. If it&#8217;s just one of the many configuration checks performed by <code>configure<\/code>, what&#8217;s the relationship with the Autotools and the repository sources? The answer is that <code>gettext\u00a0<\/code>provides a tight integration with the Autotools, in the form of ready to use Autoconf and Automake macros to support the gettext operations during a normal workflow, such as:<\/p>\n<ul>\n<li>Extracting strings from sources.<\/li>\n<li>Creating template files (POT files).<\/li>\n<li>Creating translation files (PO files).<\/li>\n<li>Updating template files.<\/li>\n<li>Merging changes into translation files.<\/li>\n<li>Compiling translation files into message catalogs.<\/li>\n<li>Shipping required files in a distribution.<\/li>\n<li>Installing message catalogs.<\/li>\n<\/ul>\n<p>It goes without saying that the maintainers\u00a0<i>do<\/i>\u00a0need <code>gettext <\/code>installed in their machines in order to be able to use these macros, to create the configuration scripts and to create a package distribution.<\/p>\n<h3>Making gettext Optional<\/h3>\n<p>To make <code>gettext <\/code>optional, we have to perform at least these operations in the Autoconf configuration file <code>(configure.ac)<\/code>:<\/p>\n<ul>\n<li>Use the\u00a0<code>AM_GNU_GETTEX<\/code>T macro to check whether NLS should be used. If it should be used, the <code>USE_NLS<\/code> variable would be set to yes.<\/li>\n<li>Create an Automake conditional to propagate this information to the <code>Makefiles<\/code>, perhaps using something in the lines of:<\/li>\n<\/ul>\n<pre class=\"brush:bash\">AM_GNU_GETTEXT([external])\r\nAM_GNU_GETTEXT_VERSION([0.19.4])\r\nAM_CONDITIONAL([USE_NLS], [test \"x${USE_NLS}\" = \"xyes\"])&lt;\/\u03c0\u03c1\u03b5&gt;\r\nIn the Makefiles, we have to leverage these information to:<\/pre>\n<ul>\n<li style=\"list-style-type: none\">\n<ul>\n<li>Conditionally distribute NLS-related files such as ABOUT-NLS:<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<pre class=\"brush:bash\">if USE_NLS\r\ndist_doc_DATA += ABOUT-NLS\r\nendif<\/pre>\n<ul>\n<li>Conditionally execute NLS-related targets. What I typically do is segregating all NLS-related stuff in a directory (<code>po<\/code>) which is conditionally processed by the <code>Makefile<\/code>:<\/li>\n<\/ul>\n<pre class=\"brush:bash\">if USE_NLS\r\nPO_SUBDIR = po\r\nendif\r\n\r\nSUBDIRS = other_paths $(PO_SUBDIR)<\/pre>\n<p>All the other\u00a0 <code>Makefile <\/code>fragments required to use <code>gettext<\/code>, such as defining the <code>LOCALEDIR <\/code>to load catalog files and linking against <code>libintl<\/code>, do not need to be modified. Even if always adding <code>@LTLIBINTL@<\/code>\u00a0to <code>LDADD <\/code>may seem odd at first, the Autoconf output variable <code>LTLIBINTL <\/code>is documented to expand to an\u00a0<i>empty string<\/i> when NLS is not being used.<\/p>\n<pre class=\"brush:bash\"># Prepare gettext-related symbols used by programs\r\nAM_CPPFLAGS += -DLOCALEDIR=\\\"$(localedir)\\\"\r\n\r\n# Link program against libintl if gettext is being used\r\nprog_LDADD += @LTLIBINTL@<\/pre>\n<h3>Conclusion<\/h3>\n<p>This is all that&#8217;s required to make <code>gettext\u00a0<\/code>optional in your Autotools package. With these few changes, users will now be able to let <code>configure <\/code>automatically determine whether to enable or disable NLS, and even disabling it using the <code>--disable-nls<\/code> option:<\/p>\n<pre class=\"brush:bash\">$ .\/configure --disable-nls<\/pre>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>Published on System Code Geeks with permission by Enrico Crisostomo, partner at our <a href=\"http:\/\/www.systemcodegeeks.com\/join-us\/scg\/\" target=\"_blank\" rel=\"noopener\">SCG program<\/a>. See the original article here: <a href=\"http:\/\/thegreyblog.blogspot.com\/2017\/11\/making-gettext-optional-during-build-of.html\" target=\"_blank\" rel=\"noopener\">Making Native Language Support (NLS) and gettext Optional<\/a><\/p>\n<p>Opinions expressed by System Code Geeks contributors are their own.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>I&#8217;ve decided to write this blog post after noticing\u00a0how many people were asking me to make gettext optional when building fswatch. At the beginning I actually thought it was optional. And I never dug any deeper into the matter because, apparently, everybody experiencing this problem was building fswatch from the repository sources instead of building &hellip;<\/p>\n","protected":false},"author":417,"featured_media":192,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[],"class_list":["post-3141","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Making Native Language Support (NLS) and gettext Optional - System Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"I&#039;ve decided to write this blog post after noticing\u00a0how many people were asking me to make gettext optional when building fswatch. At the beginning I\" \/>\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.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Making Native Language Support (NLS) and gettext Optional - System Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"I&#039;ve decided to write this blog post after noticing\u00a0how many people were asking me to make gettext optional when building fswatch. At the beginning I\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/\" \/>\n<meta property=\"og:site_name\" content=\"System Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/systemcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2017-11-20T15:15:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Enrico Crisostomo\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Enrico Crisostomo\" \/>\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.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/\"},\"author\":{\"name\":\"Enrico Crisostomo\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/36b6c74fd6c100bd3d6026796474efe4\"},\"headline\":\"Making Native Language Support (NLS) and gettext Optional\",\"datePublished\":\"2017-11-20T15:15:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/\"},\"wordCount\":770,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/\",\"name\":\"Making Native Language Support (NLS) and gettext Optional - System Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg\",\"datePublished\":\"2017-11-20T15:15:44+00:00\",\"description\":\"I've decided to write this blog post after noticing\u00a0how many people were asking me to make gettext optional when building fswatch. At the beginning I\",\"breadcrumb\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#primaryimage\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.systemcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/linux\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Making Native Language Support (NLS) and gettext Optional\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"name\":\"System Code Geeks\",\"description\":\"Operating System Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/systemcodegeeks\",\"https:\/\/x.com\/systemcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/36b6c74fd6c100bd3d6026796474efe4\",\"name\":\"Enrico Crisostomo\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1409f69f72e12da95325275f8deb51ba603e158b4464ca3565c814454ee92e5d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1409f69f72e12da95325275f8deb51ba603e158b4464ca3565c814454ee92e5d?s=96&d=mm&r=g\",\"caption\":\"Enrico Crisostomo\"},\"sameAs\":[\"http:\/\/thegreyblog.blogspot.com\/\"],\"url\":\"https:\/\/www.systemcodegeeks.com\/author\/enrico-crisostomo\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Making Native Language Support (NLS) and gettext Optional - System Code Geeks - 2026","description":"I've decided to write this blog post after noticing\u00a0how many people were asking me to make gettext optional when building fswatch. At the beginning I","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.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/","og_locale":"en_US","og_type":"article","og_title":"Making Native Language Support (NLS) and gettext Optional - System Code Geeks - 2026","og_description":"I've decided to write this blog post after noticing\u00a0how many people were asking me to make gettext optional when building fswatch. At the beginning I","og_url":"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/","og_site_name":"System Code Geeks","article_publisher":"https:\/\/www.facebook.com\/systemcodegeeks","article_published_time":"2017-11-20T15:15:44+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg","type":"image\/jpeg"}],"author":"Enrico Crisostomo","twitter_card":"summary_large_image","twitter_creator":"@systemcodegeeks","twitter_site":"@systemcodegeeks","twitter_misc":{"Written by":"Enrico Crisostomo","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#article","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/"},"author":{"name":"Enrico Crisostomo","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/36b6c74fd6c100bd3d6026796474efe4"},"headline":"Making Native Language Support (NLS) and gettext Optional","datePublished":"2017-11-20T15:15:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/"},"wordCount":770,"commentCount":0,"publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/","url":"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/","name":"Making Native Language Support (NLS) and gettext Optional - System Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#primaryimage"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg","datePublished":"2017-11-20T15:15:44+00:00","description":"I've decided to write this blog post after noticing\u00a0how many people were asking me to make gettext optional when building fswatch. At the beginning I","breadcrumb":{"@id":"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#primaryimage","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.systemcodegeeks.com\/linux\/making-native-language-support-nls-gettext-optional\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systemcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Linux","item":"https:\/\/www.systemcodegeeks.com\/category\/linux\/"},{"@type":"ListItem","position":3,"name":"Making Native Language Support (NLS) and gettext Optional"}]},{"@type":"WebSite","@id":"https:\/\/www.systemcodegeeks.com\/#website","url":"https:\/\/www.systemcodegeeks.com\/","name":"System Code Geeks","description":"Operating System Developers Resource Center","publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.systemcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.systemcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/systemcodegeeks","https:\/\/x.com\/systemcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/36b6c74fd6c100bd3d6026796474efe4","name":"Enrico Crisostomo","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1409f69f72e12da95325275f8deb51ba603e158b4464ca3565c814454ee92e5d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1409f69f72e12da95325275f8deb51ba603e158b4464ca3565c814454ee92e5d?s=96&d=mm&r=g","caption":"Enrico Crisostomo"},"sameAs":["http:\/\/thegreyblog.blogspot.com\/"],"url":"https:\/\/www.systemcodegeeks.com\/author\/enrico-crisostomo\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/3141","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/users\/417"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/comments?post=3141"}],"version-history":[{"count":0,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/3141\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media\/192"}],"wp:attachment":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media?parent=3141"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/categories?post=3141"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/tags?post=3141"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}