{"id":11380,"date":"2018-10-08T10:06:46","date_gmt":"2018-10-08T08:06:46","guid":{"rendered":"https:\/\/iristech.co\/?p=11380"},"modified":"2019-10-27T00:17:14","modified_gmt":"2019-10-26T22:17:14","slug":"iris-floss-quora","status":"publish","type":"post","link":"https:\/\/iristech.co\/iris-floss-quora\/","title":{"rendered":"Iris FLOSS Quora"},"content":{"rendered":"<p>So I was trying to compile <a href=\"https:\/\/iristech.co\">Iris<\/a> on all Linux distributions for over a month and every time there was something which was not working properly.<\/p>\n<p>Yesterday I became so frustrated that I decided to create open source command-line software for <b>blue light<\/b> and <b>brightness<\/b> reduction only for <b>Linux<\/b> and with the least amount of code.<\/p>\n<p>For those who of you who don\u2019t know about the blue light basically we can\u2019t sleep when we sit late at night, because we have one photoreceptor in the eye called melanopsin which stops the secretion of our sleep hormone when we look at blue light.<\/p>\n<p>But enough with the science. There are several similar softwares like <b>f.lux<\/b> and <b>RedShift<\/b>, but f.lux is super broken and Redshift is super bloated and not supported at all. I remember how before I created <b>Iris<\/b> I wrote to both the developers of f.lux and Redshift several times for one feature of manual Color temperature and they didn\u2019t responded to me.<\/p>\n<p>In the new iOS there is also one feature called <b>Night Shift<\/b> which well Apple just copied from f.lux and didn\u2019t allow their app to the AppStore which was superior and really well made.<\/p>\n<p><b>Android<\/b> and <b>Windows 10<\/b> will also add similar features in their new OS.<\/p>\n<p>So I basically sit for several hours and created full implementation of f.lux and Redshift with <b>10 lines of code<\/b> which run on every Linux distribution out there.<\/p>\n<pre>#include &lt;X11\/extensions\/Xrandr.h&gt;<\/pre>\n<pre>#include &lt;stdlib.h&gt;<\/pre>\n<pre>static float color_temperature[] = { 1.00000000f, 0.00000000f, 0.00000000f, 1.00000000f, 0.01817271f, 0.00000000f, 1.00000000f, 0.03634543f, 0.00000000f, 1.00000000f, 0.05451814f, 0.00000000f, 1.00000000f, 0.07269086f, 0.00000000f, 1.00000000f, 0.09086358f, 0.00000000f, 1.00000000f, 0.10903629f, 0.00000000f, 1.00000000f, 0.12720901f, 0.00000000f, 1.00000000f, 0.14538172f, 0.00000000f, 1.00000000f, 0.16355444f, 0.00000000f, 1.00000000f, 0.18172716f, 0.00000000f, 1.00000000f, 0.25503671f, 0.00000000f, 1.00000000f, 0.30942099f, 0.00000000f, 1.00000000f, 0.35357379f, 0.00000000f, 1.00000000f, 0.39091524f, 0.00000000f, 1.00000000f, 0.42322816f, 0.00000000f, 1.00000000f, 0.45159884f, 0.00000000f, 1.00000000f, 0.47675916f, 0.00000000f, 1.00000000f, 0.49923747f, 0.00000000f, 1.00000000f, 0.51943421f, 0.00000000f, 1.00000000f, 0.54360078f, 0.08679949f, 1.00000000f, 0.56618736f, 0.14065513f, 1.00000000f, 0.58734976f, 0.18362641f, 1.00000000f, 0.60724493f, 0.22137978f, 1.00000000f, 0.62600248f, 0.25591950f, 1.00000000f, 0.64373109f, 0.28819679f, 1.00000000f, 0.66052319f, 0.31873863f, 1.00000000f, 0.67645822f, 0.34786758f, 1.00000000f, 0.69160518f, 0.37579588f, 1.00000000f, 0.70602449f, 0.40267128f, 1.00000000f, 0.71976951f, 0.42860152f, 1.00000000f, 0.73288760f, 0.45366838f, 1.00000000f, 0.74542112f, 0.47793608f, 1.00000000f, 0.75740814f, 0.50145662f, 1.00000000f, 0.76888303f, 0.52427322f, 1.00000000f, 0.77987699f, 0.54642268f, 1.00000000f, 0.79041843f, 0.56793692f, 1.00000000f, 0.80053332f, 0.58884417f, 1.00000000f, 0.81024551f, 0.60916971f, 1.00000000f, 0.81957693f, 0.62893653f, 1.00000000f, 0.82854786f, 0.64816570f, 1.00000000f, 0.83717703f, 0.66687674f, 1.00000000f, 0.84548188f, 0.68508786f, 1.00000000f, 0.85347859f, 0.70281616f, 1.00000000f, 0.86118227f, 0.72007777f, 1.00000000f, 0.86860704f, 0.73688797f, 1.00000000f, 0.87576611f, 0.75326132f, 1.00000000f, 0.88267187f, 0.76921169f, 1.00000000f, 0.88933596f, 0.78475236f, 1.00000000f, 0.89576933f, 0.79989606f, 1.00000000f, 0.90198230f, 0.81465502f, 1.00000000f, 0.90963069f, 0.82838210f, 1.00000000f, 0.91710889f, 0.84190889f, 1.00000000f, 0.92441842f, 0.85523742f, 1.00000000f, 0.93156127f, 0.86836903f, 1.00000000f, 0.93853986f, 0.88130458f, 1.00000000f, 0.94535695f, 0.89404470f, 1.00000000f, 0.95201559f, 0.90658983f, 1.00000000f, 0.95851906f, 0.91894041f, 1.00000000f, 0.96487079f, 0.93109690f, 1.00000000f, 0.97107439f, 0.94305985f, 1.00000000f, 0.97713351f, 0.95482993f, 1.00000000f, 0.98305189f, 0.96640795f, 1.00000000f, 0.98883326f, 0.97779486f, 1.00000000f, 0.99448139f, 0.98899179f, 1.00000000f, 1.00000000f, 1.00000000f, 0.98947904f, 0.99348723f, 1.00000000f, 0.97940448f, 0.98722715f, 1.00000000f, 0.96975025f, 0.98120637f, 1.00000000f, 0.96049223f, 0.97541240f, 1.00000000f, 0.95160805f, 0.96983355f, 1.00000000f, 0.94303638f, 0.96443333f, 1.00000000f, 0.93480451f, 0.95923080f, 1.00000000f, 0.92689056f, 0.95421394f, 1.00000000f, 0.91927697f, 0.94937330f, 1.00000000f, 0.91194747f, 0.94470005f, 1.00000000f, 0.90488690f, 0.94018594f, 1.00000000f, 0.89808115f, 0.93582323f, 1.00000000f, 0.89151710f, 0.93160469f, 1.00000000f, 0.88518247f, 0.92752354f, 1.00000000f, 0.87906581f, 0.92357340f, 1.00000000f, 0.87315640f, 0.91974827f, 1.00000000f, 0.86744421f, 0.91604254f, 1.00000000f, 0.86191983f, 0.91245088f, 1.00000000f, 0.85657444f, 0.90896831f, 1.00000000f, 0.85139976f, 0.90559011f, 1.00000000f, 0.84638799f, 0.90231183f, 1.00000000f, 0.84153180f, 0.89912926f, 1.00000000f, 0.83682430f, 0.89603843f, 1.00000000f, 0.83225897f, 0.89303558f, 1.00000000f, 0.82782969f, 0.89011714f, 1.00000000f, 0.82353066f, 0.88727974f, 1.00000000f, 0.81935641f, 0.88452017f, 1.00000000f, 0.81530175f, 0.88183541f, 1.00000000f, 0.81136180f, 0.87922257f, 1.00000000f, 0.80753191f, 0.87667891f, 1.00000000f, 0.80380769f, 0.87420182f, 1.00000000f, 0.80018497f, 0.87178882f, 1.00000000f, 0.79665980f, 0.86943756f, 1.00000000f, 0.79322843f, 0.86714579f, 1.00000000f, 0.78988728f, 0.86491137f, 1.00000000f};<\/pre>\n<pre><\/pre>\n<pre>int main(int argc, char **argv) {<\/pre>\n<pre><\/pre>\n<pre> int temperature = 3400; if (argc &gt; 1) temperature = (int)atoi(argv[1]); (temperature &lt; 0) ? (temperature = 0) : (temperature &gt; 10000) ? (temperature = 10000) : 0;<\/pre>\n<pre><\/pre>\n<pre> float brightness = 0.80f; if (argc &gt; 2) brightness = (float)atof(argv[2])\/100.f; (brightness &lt; 0.05f) ? (brightness = 0.05f) : (brightness &gt; 1.0f) ? (brightness = 1.0f) : 0;<\/pre>\n<pre><\/pre>\n<pre> int index = ((temperature) \/ 100)*3;<\/pre>\n<pre><\/pre>\n<pre> Display *dpy = XOpenDisplay(NULL); XRRScreenResources *res = XRRGetScreenResourcesCurrent(dpy, RootWindow(dpy, DefaultScreen(dpy)));<\/pre>\n<pre><\/pre>\n<pre> for (int monitor_number = 0; monitor_number &lt; res-&gt;ncrtc; monitor_number++) { XRRCrtcGamma *crtc_gamma = XRRAllocGamma(XRRGetCrtcGammaSize(dpy, res-&gt;crtcs[monitor_number])); for (int i = 0; i &lt; XRRGetCrtcGammaSize(dpy, res-&gt;crtcs[monitor_number]); i++) {\tdouble g = 65535.0 * i \/ XRRGetCrtcGammaSize(dpy, res-&gt;crtcs[monitor_number]); crtc_gamma-&gt;red[i] = g * brightness * color_temperature[index]; crtc_gamma-&gt;green[i] = g * brightness * color_temperature[index+1]; crtc_gamma-&gt;blue[i] = g * brightness * color_temperature[index+2]; } XRRSetCrtcGamma(dpy, res-&gt;crtcs[monitor_number], crtc_gamma); XFree(crtc_gamma); } return 0;<\/pre>\n<pre>}<\/pre>\n<p>Well I know that if I don\u2019t put multiple operators per one line it will be like 40 lines of code, but you know just for fun \ud83d\ude00<\/p>\n<p>I also tried to reduce the file size of the executable bellow <b>10KB<\/b>, but failed. The lowest possible value and the size of the executable with this code is <b>10.2KB<\/b> which is still pretty light.<\/p>\n<p>In order to compile this thing copy the code to some file for example<\/p>\n<pre>iris-floss.c<\/pre>\n<p>and then run<\/p>\n<pre>gcc -o iris-floss iris-floss.c -lX11 -lXrandr<\/pre>\n<p>You can the lower your blue light with<\/p>\n<pre>.\/iris-floss 3400 80<\/pre>\n<p>Will set the Color temperature to 3400K and the brightness of the screen to 80%<\/p>\n<p>You can also check the code in my Github account<\/p>\n<p>danielng01\/iris-floss<\/p>\n<p>This thing is really nice for eye protection and for better sleep and is my coolest 10 liner \ud83d\ude42<\/p>\n<p><a href=\"https:\/\/youtu.be\/cDpC-h928DE\">https:\/\/youtu.be\/cDpC-h928DE<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p class=\"excerpt\">So I was trying to compile Iris on all Linux distributions for over a month and every time there was something which was not working properly. Yesterday I became so frustrated that I decided to create open source command-line software for blue light and brightness reduction only for Linux and with the least amount of code. For those who of &#8230; <a class=\"read-more\" href=\"https:\/\/iristech.co\/iris-floss-quora\/\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":28851,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[132],"tags":[],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Iris FLOSS Quora | IrisTech<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/iristech.co\/iris-floss-quora\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Iris FLOSS Quora | IrisTech\" \/>\n<meta property=\"og:description\" content=\"So I was trying to compile Iris on all Linux distributions for over a month and every time there was something which was not working properly. Yesterday I became so frustrated that I decided to create open source command-line software for blue light and brightness reduction only for Linux and with the least amount of code. For those who of ... Read More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/iristech.co\/iris-floss-quora\/\" \/>\n<meta property=\"og:site_name\" content=\"\ud83d\udca1\ud83d\udc68\u200d\ud83d\udcbb Iris - Software for Eye protection, Health and Productivity \ud83d\udecc\ud83d\udc40\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/iristech.co\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-08T08:06:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-10-26T22:17:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/iristech.co\/wp-content\/uploads\/2020\/02\/11380.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"700\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Daniel Georgiev (CEO)\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@iristech_co\" \/>\n<meta name=\"twitter:site\" content=\"@iristech_co\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Daniel Georgiev (CEO)\" \/>\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:\/\/iristech.co\/iris-floss-quora\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/iristech.co\/iris-floss-quora\/\"},\"author\":{\"name\":\"Daniel Georgiev (CEO)\",\"@id\":\"https:\/\/iristech.co\/#\/schema\/person\/d107297449ed2300603c13d6b1f13130\"},\"headline\":\"Iris FLOSS Quora\",\"datePublished\":\"2018-10-08T08:06:46+00:00\",\"dateModified\":\"2019-10-26T22:17:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/iristech.co\/iris-floss-quora\/\"},\"wordCount\":384,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/iristech.co\/#organization\"},\"articleSection\":[\"Company\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/iristech.co\/iris-floss-quora\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/iristech.co\/iris-floss-quora\/\",\"url\":\"https:\/\/iristech.co\/iris-floss-quora\/\",\"name\":\"Iris FLOSS Quora | IrisTech\",\"isPartOf\":{\"@id\":\"https:\/\/iristech.co\/#website\"},\"datePublished\":\"2018-10-08T08:06:46+00:00\",\"dateModified\":\"2019-10-26T22:17:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/iristech.co\/iris-floss-quora\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/iristech.co\/iris-floss-quora\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/iristech.co\/iris-floss-quora\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Company\",\"item\":\"https:\/\/iristech.co\/category\/company\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Iris FLOSS Quora\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/iristech.co\/#website\",\"url\":\"https:\/\/iristech.co\/\",\"name\":\"\ud83d\udca1\ud83d\udc68\u200d\ud83d\udcbb Iris - Software for Eye protection, Health and Productivity \ud83d\udecc\ud83d\udc40\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/iristech.co\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/iristech.co\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/iristech.co\/#organization\",\"name\":\"Iris\",\"url\":\"https:\/\/iristech.co\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/iristech.co\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/iristech.co\/wp-content\/uploads\/2018\/05\/Logo.png\",\"contentUrl\":\"https:\/\/iristech.co\/wp-content\/uploads\/2018\/05\/Logo.png\",\"width\":150,\"height\":150,\"caption\":\"Iris\"},\"image\":{\"@id\":\"https:\/\/iristech.co\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/iristech.co\/\",\"https:\/\/twitter.com\/iristech_co\",\"https:\/\/www.linkedin.com\/company\/iristech-co\/\",\"https:\/\/www.youtube.com\/channel\/UCwP_fVYN70MgZcIOBzKUD8A\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/iristech.co\/#\/schema\/person\/d107297449ed2300603c13d6b1f13130\",\"name\":\"Daniel Georgiev (CEO)\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/iristech.co\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1e23f99caf43aa234d0ef1a024f1280d?s=96&d=monsterid&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1e23f99caf43aa234d0ef1a024f1280d?s=96&d=monsterid&r=g\",\"caption\":\"Daniel Georgiev (CEO)\"},\"sameAs\":[\"https:\/\/iristech.co\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Iris FLOSS Quora | IrisTech","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:\/\/iristech.co\/iris-floss-quora\/","og_locale":"en_US","og_type":"article","og_title":"Iris FLOSS Quora | IrisTech","og_description":"So I was trying to compile Iris on all Linux distributions for over a month and every time there was something which was not working properly. Yesterday I became so frustrated that I decided to create open source command-line software for blue light and brightness reduction only for Linux and with the least amount of code. For those who of ... Read More","og_url":"https:\/\/iristech.co\/iris-floss-quora\/","og_site_name":"\ud83d\udca1\ud83d\udc68\u200d\ud83d\udcbb Iris - Software for Eye protection, Health and Productivity \ud83d\udecc\ud83d\udc40","article_publisher":"https:\/\/www.facebook.com\/iristech.co\/","article_published_time":"2018-10-08T08:06:46+00:00","article_modified_time":"2019-10-26T22:17:14+00:00","og_image":[{"width":1280,"height":700,"url":"https:\/\/iristech.co\/wp-content\/uploads\/2020\/02\/11380.jpg","type":"image\/jpeg"}],"author":"Daniel Georgiev (CEO)","twitter_card":"summary_large_image","twitter_creator":"@iristech_co","twitter_site":"@iristech_co","twitter_misc":{"Written by":"Daniel Georgiev (CEO)","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/iristech.co\/iris-floss-quora\/#article","isPartOf":{"@id":"https:\/\/iristech.co\/iris-floss-quora\/"},"author":{"name":"Daniel Georgiev (CEO)","@id":"https:\/\/iristech.co\/#\/schema\/person\/d107297449ed2300603c13d6b1f13130"},"headline":"Iris FLOSS Quora","datePublished":"2018-10-08T08:06:46+00:00","dateModified":"2019-10-26T22:17:14+00:00","mainEntityOfPage":{"@id":"https:\/\/iristech.co\/iris-floss-quora\/"},"wordCount":384,"commentCount":0,"publisher":{"@id":"https:\/\/iristech.co\/#organization"},"articleSection":["Company"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/iristech.co\/iris-floss-quora\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/iristech.co\/iris-floss-quora\/","url":"https:\/\/iristech.co\/iris-floss-quora\/","name":"Iris FLOSS Quora | IrisTech","isPartOf":{"@id":"https:\/\/iristech.co\/#website"},"datePublished":"2018-10-08T08:06:46+00:00","dateModified":"2019-10-26T22:17:14+00:00","breadcrumb":{"@id":"https:\/\/iristech.co\/iris-floss-quora\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/iristech.co\/iris-floss-quora\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/iristech.co\/iris-floss-quora\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Company","item":"https:\/\/iristech.co\/category\/company\/"},{"@type":"ListItem","position":2,"name":"Iris FLOSS Quora"}]},{"@type":"WebSite","@id":"https:\/\/iristech.co\/#website","url":"https:\/\/iristech.co\/","name":"\ud83d\udca1\ud83d\udc68\u200d\ud83d\udcbb Iris - Software for Eye protection, Health and Productivity \ud83d\udecc\ud83d\udc40","description":"","publisher":{"@id":"https:\/\/iristech.co\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/iristech.co\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/iristech.co\/#organization","name":"Iris","url":"https:\/\/iristech.co\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/iristech.co\/#\/schema\/logo\/image\/","url":"https:\/\/iristech.co\/wp-content\/uploads\/2018\/05\/Logo.png","contentUrl":"https:\/\/iristech.co\/wp-content\/uploads\/2018\/05\/Logo.png","width":150,"height":150,"caption":"Iris"},"image":{"@id":"https:\/\/iristech.co\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/iristech.co\/","https:\/\/twitter.com\/iristech_co","https:\/\/www.linkedin.com\/company\/iristech-co\/","https:\/\/www.youtube.com\/channel\/UCwP_fVYN70MgZcIOBzKUD8A"]},{"@type":"Person","@id":"https:\/\/iristech.co\/#\/schema\/person\/d107297449ed2300603c13d6b1f13130","name":"Daniel Georgiev (CEO)","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/iristech.co\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1e23f99caf43aa234d0ef1a024f1280d?s=96&d=monsterid&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1e23f99caf43aa234d0ef1a024f1280d?s=96&d=monsterid&r=g","caption":"Daniel Georgiev (CEO)"},"sameAs":["https:\/\/iristech.co\/"]}]}},"wps_subtitle":"","_links":{"self":[{"href":"https:\/\/iristech.co\/wp-json\/wp\/v2\/posts\/11380"}],"collection":[{"href":"https:\/\/iristech.co\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/iristech.co\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/iristech.co\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/iristech.co\/wp-json\/wp\/v2\/comments?post=11380"}],"version-history":[{"count":3,"href":"https:\/\/iristech.co\/wp-json\/wp\/v2\/posts\/11380\/revisions"}],"predecessor-version":[{"id":18999,"href":"https:\/\/iristech.co\/wp-json\/wp\/v2\/posts\/11380\/revisions\/18999"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/iristech.co\/wp-json\/wp\/v2\/media\/28851"}],"wp:attachment":[{"href":"https:\/\/iristech.co\/wp-json\/wp\/v2\/media?parent=11380"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/iristech.co\/wp-json\/wp\/v2\/categories?post=11380"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/iristech.co\/wp-json\/wp\/v2\/tags?post=11380"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}