<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Omar G. - Blog]]></title>
		<link>https://omarg.me/</link>
		<description><![CDATA[Omar G. - https://omarg.me]]></description>
		<pubDate>Sun, 26 Jul 2026 05:00:44 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Be cautious of embemding external content]]></title>
			<link>https://omarg.me/thread?public/blog/security-be-cautious-of-embemding-external-content</link>
			<pubDate>Tue, 10 Feb 2026 12:40:24 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/security-be-cautious-of-embemding-external-content</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
If you run a forum, social platform, or any site where people can set external avatars or media, you’ve probably considered letting them use external media sources like <span style="font-style: italic;" class="mycode_i">Imgur</span> or <span style="font-style: italic;" class="mycode_i">Gravatar</span>. It’s convenient, has no storage costs, and is quite simple. <span style="font-weight: bold;" class="mycode_b">But there is a downside: the external (source) has absolute control of your site content</span> and may have access to your user's private information.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Available user information:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">IP Address:</span> The media source can log the IP address of every person who loads the image or video. This could reveal approximate geographic location like the person country, city, or even the Internet Service Provider (<span style="font-style: italic;" class="mycode_i">ISP</span>).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">User Agent:</span> The browser version and operating system which helps external sources <span style="font-style: italic;" class="mycode_i">fingerprint user devices</span>.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Referrer URL:</span> The page on your site where the media was loaded. This can expose <span style="font-style: italic;" class="mycode_i">user navigation patterns</span> within your forum or site.<br />
</li>
</ul>
<br />
<span style="font-weight: bold;" class="mycode_b">Stop trusting external media sources by default.</span><br />
<br />
External media sources are a security and privacy concern. Site scripts (CMS, MyBB, etc) may only check the external media once. For example, when people set an external avatar through a URL. After this original verification, users or the source owner can change the content anytime.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">The most secure and privacy-focused option is to only allow people to upload content and store it on your server.</span> Controlling users media allows you to mitigate tracking, securing the original media content and availability. You will avoid breaking content in your site when external sources go offline, or they decide to block people (i.e: Imgur is blocked in some countries) or your server IP.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Still want to allow external sources?</span><br />
<br />
If you still want to allow embedding external media content (e.g., for user convenience), you <span style="font-weight: bold;" class="mycode_b">must</span> mitigate the risks. Here are your options:<br />
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Proxy external media content:</span> proxy the user media (avatars or posted images) through your server. This allows you to constantly verify the media contents and avoid tracking.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hash and verify:</span> Hash the original media content and verify it constantly to confirm that it matches the current media. If you discover the embedded media was tempered with, you may apply moderation policies for it in your site.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Use Content Security Policies (CSP):</span> Restrict media to trusted sources through a content security policy, limiting the source origin pool.<br />
</li>
</ul>
<br />
For medium to large sized sites, it is possible to leverage costs by using cloud storage or Pull CDN providers. You still would have control over your files when stored in the cloud and save some bandwidth when using CDN to cache media to reduce server load.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Don’t overcomplicate </span>it: for most sites or small communities, proxying could be too complex a setup. Specially for limited and essential user media content like profile pictures or avatars. <span style="font-weight: bold;" class="mycode_b">Just let users upload their avatars and store them locally</span> in your server while setting reasonable limits like file sizes, image dimensions, or video quality.<br />
<br />
For other heavy media where it is not feasible to allow users to upload, like videos, <span style="font-weight: bold;" class="mycode_b">consider limiting embedding to trusted sources</span> like YouTube or Wikipedia.<br />
<br />
<span style="font-style: italic;" class="mycode_i">Originally published on <a href="https://community.ougc.network/entry?be-cautious-of-embemding-external-content" target="_blank" rel="noopener" class="mycode_url">ougcNetwork</a></span><br />
<br />
<span style="font-size: small;" class="mycode_size">Image by <a href="https://www.freepik.com/free-vector/flat-design-data-privacy-facebook-cover_29068342.htm" target="_blank" rel="noopener" class="mycode_url">Freepik</a></span><br /><div class="attachments__attachment attachment">
    <span class="attachment__icon"><img src="https://cdn.omarg.me/image" title="JPG Image" border="0" alt=".jpg" /></span>
    <a href="attachment.php?aid=50" target="_blank" title="" class="attachment__link">7514933.jpg</a>
    <span class="attachment__data">(Size: 72.48 KB / Downloads: 2)</span>
</div>
]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
If you run a forum, social platform, or any site where people can set external avatars or media, you’ve probably considered letting them use external media sources like <span style="font-style: italic;" class="mycode_i">Imgur</span> or <span style="font-style: italic;" class="mycode_i">Gravatar</span>. It’s convenient, has no storage costs, and is quite simple. <span style="font-weight: bold;" class="mycode_b">But there is a downside: the external (source) has absolute control of your site content</span> and may have access to your user's private information.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Available user information:</span><ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">IP Address:</span> The media source can log the IP address of every person who loads the image or video. This could reveal approximate geographic location like the person country, city, or even the Internet Service Provider (<span style="font-style: italic;" class="mycode_i">ISP</span>).<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">User Agent:</span> The browser version and operating system which helps external sources <span style="font-style: italic;" class="mycode_i">fingerprint user devices</span>.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Referrer URL:</span> The page on your site where the media was loaded. This can expose <span style="font-style: italic;" class="mycode_i">user navigation patterns</span> within your forum or site.<br />
</li>
</ul>
<br />
<span style="font-weight: bold;" class="mycode_b">Stop trusting external media sources by default.</span><br />
<br />
External media sources are a security and privacy concern. Site scripts (CMS, MyBB, etc) may only check the external media once. For example, when people set an external avatar through a URL. After this original verification, users or the source owner can change the content anytime.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">The most secure and privacy-focused option is to only allow people to upload content and store it on your server.</span> Controlling users media allows you to mitigate tracking, securing the original media content and availability. You will avoid breaking content in your site when external sources go offline, or they decide to block people (i.e: Imgur is blocked in some countries) or your server IP.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Still want to allow external sources?</span><br />
<br />
If you still want to allow embedding external media content (e.g., for user convenience), you <span style="font-weight: bold;" class="mycode_b">must</span> mitigate the risks. Here are your options:<br />
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Proxy external media content:</span> proxy the user media (avatars or posted images) through your server. This allows you to constantly verify the media contents and avoid tracking.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Hash and verify:</span> Hash the original media content and verify it constantly to confirm that it matches the current media. If you discover the embedded media was tempered with, you may apply moderation policies for it in your site.<br />
<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Use Content Security Policies (CSP):</span> Restrict media to trusted sources through a content security policy, limiting the source origin pool.<br />
</li>
</ul>
<br />
For medium to large sized sites, it is possible to leverage costs by using cloud storage or Pull CDN providers. You still would have control over your files when stored in the cloud and save some bandwidth when using CDN to cache media to reduce server load.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Don’t overcomplicate </span>it: for most sites or small communities, proxying could be too complex a setup. Specially for limited and essential user media content like profile pictures or avatars. <span style="font-weight: bold;" class="mycode_b">Just let users upload their avatars and store them locally</span> in your server while setting reasonable limits like file sizes, image dimensions, or video quality.<br />
<br />
For other heavy media where it is not feasible to allow users to upload, like videos, <span style="font-weight: bold;" class="mycode_b">consider limiting embedding to trusted sources</span> like YouTube or Wikipedia.<br />
<br />
<span style="font-style: italic;" class="mycode_i">Originally published on <a href="https://community.ougc.network/entry?be-cautious-of-embemding-external-content" target="_blank" rel="noopener" class="mycode_url">ougcNetwork</a></span><br />
<br />
<span style="font-size: small;" class="mycode_size">Image by <a href="https://www.freepik.com/free-vector/flat-design-data-privacy-facebook-cover_29068342.htm" target="_blank" rel="noopener" class="mycode_url">Freepik</a></span><br /><div class="attachments__attachment attachment">
    <span class="attachment__icon"><img src="https://cdn.omarg.me/image" title="JPG Image" border="0" alt=".jpg" /></span>
    <a href="attachment.php?aid=50" target="_blank" title="" class="attachment__link">7514933.jpg</a>
    <span class="attachment__data">(Size: 72.48 KB / Downloads: 2)</span>
</div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Request FIDE ban Vladimir Kramnik, and revoke his titles/norms, per ethics standards]]></title>
			<link>https://omarg.me/thread?public/blog/chess-request-fide-ban-vladimir-kramnik-and-revoke-his-titles-norms-per-ethics-standards</link>
			<pubDate>Sat, 25 Oct 2025 01:58:53 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/chess-request-fide-ban-vladimir-kramnik-and-revoke-his-titles-norms-per-ethics-standards</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
Daniel Naroditsky, gran maestro de ajedrez estadounidense, falleció el 19 de octubre de 2025 a los 29 años.<br />
<br />
Vladimir Kramnik, gran maestro y excampeón mundial de origen ruso, de 50 años, ha acusado a varios jugadores de hacer trampa desde 2023, sin evidencia, incluido Daniel Naroditsky.<br />
<br />
Daniel Naroditsky fue víctima por más de 1 año de acusaciones sin fundamento y Vladimir Kramnik continúa insultando su habilidad incluso después de su irreparable perdida.<br />
<br />
<span style="font-style: italic;" class="mycode_i">La popularidad de la IA permite que cualquier acuse a otro sin fundamento, destruyendo por completo su voluntad para crear y disfrutar la creatividad ajena.</span><br />
<br />
<a href="https://c.org/ZNBT8SjxVm" target="_blank" rel="noopener" class="mycode_url">https://c.org/ZNBT8SjxVm</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
Daniel Naroditsky, gran maestro de ajedrez estadounidense, falleció el 19 de octubre de 2025 a los 29 años.<br />
<br />
Vladimir Kramnik, gran maestro y excampeón mundial de origen ruso, de 50 años, ha acusado a varios jugadores de hacer trampa desde 2023, sin evidencia, incluido Daniel Naroditsky.<br />
<br />
Daniel Naroditsky fue víctima por más de 1 año de acusaciones sin fundamento y Vladimir Kramnik continúa insultando su habilidad incluso después de su irreparable perdida.<br />
<br />
<span style="font-style: italic;" class="mycode_i">La popularidad de la IA permite que cualquier acuse a otro sin fundamento, destruyendo por completo su voluntad para crear y disfrutar la creatividad ajena.</span><br />
<br />
<a href="https://c.org/ZNBT8SjxVm" target="_blank" rel="noopener" class="mycode_url">https://c.org/ZNBT8SjxVm</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Software Erosion: A Review]]></title>
			<link>https://omarg.me/thread?public/blog/software-software-erosion-a-review</link>
			<pubDate>Mon, 29 May 2023 22:41:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/software-software-erosion-a-review</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
Software erosion refers to the gradual decline in software performance over time, leading to obsolescence and the need for updates to sustain usability. It occurs due to continuous updates made to the software's operating environment. As software development costs increase, existing software extends its functional lifespan, resulting in frequent architectural changes.<br />
<br />
Several causes contribute to software erosion. Unexpected changes in the operating system can make the software incompatible with the updated environment. The inability to restore software to its functional state, known as "onceability," is another factor. Additionally, specific components within the software may decay due to low usage frequency, and the failure of one component can lead to the failure of others with strong interdependencies.<br />
<br />
Software erosion can be classified into inactive erosion and active erosion. Inactive erosion occurs when software usage decreases, making it unstable and unusable. As the operating environment changes, erosion becomes more likely. Active erosion, on the other hand, happens when software is continuously developed or updated without proper mitigation processes, which can also contribute to erosion.<br />
<br />
However, continuous updates are necessary to address changing technology, user needs, capabilities, security, and unexpected issues. Software reengineering, which involves updating and maintaining software, is often impractical and leads to divergence from the original design, causing performance, maintenance, and quality problems. This deviation, known as software entropy, increases the probability of architecture erosion, demanding active mitigation.<br />
<br />
Software erosion impacts performance, development, maintenance, and software quality. If left untreated, it can result in unstable software, project objectives not being met, increased resource requirements for rewriting, and higher maintenance costs. Preventive measures should be implemented to address system failures caused by software erosion.<br />
<br />
To tackle these challenges, developers should thoroughly understand the causes of errors before attempting to fix them. Thoughtful planning of new features with entropy in mind, as well as communication of architecture evolution within the development team, can reduce erosion caused by divergent changes from the original intended architecture. Maintaining up-to-date documentation is crucial to preserve specific knowledge about software components. Descriptive coding practices, such as using descriptive variables and methods, contribute to effective documentation.<br />
<br />
By considering these factors, developers can mitigate software erosion, ensuring the long-term viability and usability of their software systems.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">References:</span><br />
<a href="https://www.cscjournals.org/manuscript/Journals/IJCSS/Volume14/Issue2/IJCSS-1557.pdf" target="_blank" rel="noopener" class="mycode_url">Software Architecture Erosion: Impacts, Causes, and Management</a><br />
<a href="https://arxiv.org/ftp/arxiv/papers/2112/2112.10934.pdf" target="_blank" rel="noopener" class="mycode_url">Understanding software architecture erosion: A systematic mapping study</a><br />
<a href="https://playgroundai.com/create" target="_blank" rel="noopener" class="mycode_url">Image from PlayGroundAI.com</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
Software erosion refers to the gradual decline in software performance over time, leading to obsolescence and the need for updates to sustain usability. It occurs due to continuous updates made to the software's operating environment. As software development costs increase, existing software extends its functional lifespan, resulting in frequent architectural changes.<br />
<br />
Several causes contribute to software erosion. Unexpected changes in the operating system can make the software incompatible with the updated environment. The inability to restore software to its functional state, known as "onceability," is another factor. Additionally, specific components within the software may decay due to low usage frequency, and the failure of one component can lead to the failure of others with strong interdependencies.<br />
<br />
Software erosion can be classified into inactive erosion and active erosion. Inactive erosion occurs when software usage decreases, making it unstable and unusable. As the operating environment changes, erosion becomes more likely. Active erosion, on the other hand, happens when software is continuously developed or updated without proper mitigation processes, which can also contribute to erosion.<br />
<br />
However, continuous updates are necessary to address changing technology, user needs, capabilities, security, and unexpected issues. Software reengineering, which involves updating and maintaining software, is often impractical and leads to divergence from the original design, causing performance, maintenance, and quality problems. This deviation, known as software entropy, increases the probability of architecture erosion, demanding active mitigation.<br />
<br />
Software erosion impacts performance, development, maintenance, and software quality. If left untreated, it can result in unstable software, project objectives not being met, increased resource requirements for rewriting, and higher maintenance costs. Preventive measures should be implemented to address system failures caused by software erosion.<br />
<br />
To tackle these challenges, developers should thoroughly understand the causes of errors before attempting to fix them. Thoughtful planning of new features with entropy in mind, as well as communication of architecture evolution within the development team, can reduce erosion caused by divergent changes from the original intended architecture. Maintaining up-to-date documentation is crucial to preserve specific knowledge about software components. Descriptive coding practices, such as using descriptive variables and methods, contribute to effective documentation.<br />
<br />
By considering these factors, developers can mitigate software erosion, ensuring the long-term viability and usability of their software systems.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">References:</span><br />
<a href="https://www.cscjournals.org/manuscript/Journals/IJCSS/Volume14/Issue2/IJCSS-1557.pdf" target="_blank" rel="noopener" class="mycode_url">Software Architecture Erosion: Impacts, Causes, and Management</a><br />
<a href="https://arxiv.org/ftp/arxiv/papers/2112/2112.10934.pdf" target="_blank" rel="noopener" class="mycode_url">Understanding software architecture erosion: A systematic mapping study</a><br />
<a href="https://playgroundai.com/create" target="_blank" rel="noopener" class="mycode_url">Image from PlayGroundAI.com</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Reingeniería social: degeneración y supresión de la masculinidad]]></title>
			<link>https://omarg.me/thread?public/blog/sociology-reingenier%C3%ADa-social-degeneraci%C3%B3n-y-supresi%C3%B3n-de-la-masculinidad</link>
			<pubDate>Mon, 02 Mar 2020 03:57:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/sociology-reingenier%C3%ADa-social-degeneraci%C3%B3n-y-supresi%C3%B3n-de-la-masculinidad</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
La ingeniería social es una disciplina en el campo de las ciencias sociales que se refiere a la <span style="font-weight: bold;" class="mycode_b">influencia ejercida para causar actitudes particulares en el comportamiento</span>, especialmente a gran escala. De esta manera podemos entender al sistema educativo y sus programas como un sistema del estado de ingeniera social. Aunque esta puede ser realizada por otros grupos independientes al estado, como puede ser por grupos mediáticos, organizaciones privadas, u otros similares como puede ser un partido político, entre un gran etcétera.<br />
<br />
Un factor clave que se suele negar o simplemente menospreciar es el interés individual dentro de esos grupos de promover y propagar sus ideas. De esta forma, tanto como los integrantes de un partido político, un grupo religioso, o reporteros independientes con enfoque en un movimiento, todos ellos tienen una <span style="font-weight: bold;" class="mycode_b">motivación e interés personal de que sus ideas lleguen y surtan algún efecto sobre los receptores</span>, sea esta de forma directa o indirecta. Estos intereses o motivaciones permean sin lugar a dudas dentro de todos los niveles del grupo. Por ende, el intento organizacional de deslindarse de toda subjetividad no termina siendo otra cosa que un mero engaño, ya sea así mismo o al receptor, consciente o inconscientemente.<br />
<br />
Durante nuestra era se ha intensificado un intento de ingeniera social masivo sin precedentes. Este es el de intentar modificar la conducta sexual de los individuos y el cómo estos se relacionan entre sí dentro de una sociedad moderna. Más específicamente: el intento de modificar la conducta masculina hacia su contraparte femenina.<br />
<br />
<div style="text-align: center;" class="mycode_align">
    <iframe src="//www.youtube-nocookie.com/embed/Cetg4gu0oQQ" frameborder="0" width="560" height="315" allowfullscreen="true"></iframe><br />
<br />
Un TED talk donde hablan de aspectos que no comento aquí pero igualmente a considerar.<br />
</div>
<br />
Durante los últimos años han surgido o han crecido grupos y movimientos en favor de los derechos y paridad de género en pro de la mujer. Estos movimientos sociales están motivados por el sentimiento, muchas veces con sorpresa perpleja de pensar que sean difíciles de comprender, de lograr que los sistemas sociales funciones en igualdad de condiciones sin importar el sexo u otras condiciones. Lamentablemente con frecuencia las soluciones aplicadas a estas demandas son decididas por grupos o incluso individuos que simplemente carecen de la visión, por no decir intelectualidad, para entender realmente lo que se está demandando. Es decir, las soluciones o respuestas a las demandas del movimiento feminista son frecuentemente no carentes, sino totalmente ineficientes para lo que se demanda. Esto solo ha servido para sumar barreras que permitan la exitosa ejecución de la ingeniería social a la que trato de referirme.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">La ingeniería social que se manifiesta</span> en las sociedades modernas, especialmente en los países en vías de desarrollo, <span style="font-weight: bold;" class="mycode_b">es una sin precedentes</span> y con muchos errores. Por una parte, las soluciones ineficaces por el estado o gobierno que suman a la problemática en lugar de ayudar y una sociedad demandante que finalmente busca asignar culpa para así liberar su frustración de una respuesta pronta y efectiva. Sin embargo me gustaría aclarar que en esta publicación no me enfoco el el movimiento feminista como tal, sino de algo mucho más grande y trascendente que la simple búsqueda de la igualdad o paridad de género.<br />
<br />
Me refiero entonces al <span style="font-weight: bold;" class="mycode_b">movimiento de ingenieria social cuya meta es la modificación del comportamiento masculino</span> que busca que el hombre cambie su visión no solo sobre el ser humano de género femenino que ha prevalecido durante cientos de años, sino también hacía su mismo género, a través de las modificaciones sociales a los infantes masculinos. Ya no puede un varón enfrentarse físicamente a su semejante en el jardín de niños o con sus hermanos porque inmediatamente esto se aprecia como un peligro y no como un comportamiento natural, por ejemplo. El varón ya no puede ser fuerte, deportista, o imponente, sino que puede ser débil, artístico, y sumiso.<br />
<br />
También existen posturas extremas como la idea forzada de que cualquiera puede ser hombre u mujer y que las diferencias no pasan de la percepción psicológica o mental. O el considerar al hombre no como parte del problema sino la fuente, causante, y responsable de el y a la solución no como una sugerencia sino como algo incuestionablemente necesario. Pero al igual que el movimiento feminista por si mismo, esto también es un aspecto de la ingeniería social que se intenta llevar a cabo.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">No es mi intención el compartir una postura</span> respecto a las varias y vagas ideas que intento compartir aquí, <span style="font-weight: bold;" class="mycode_b">sino el compartir lo que me parece a mi un evento de gran importancia y complejidad</span> nunca antes visto como lo es este intento de cambiar el comportamiento masculino. <span style="font-weight: bold;" class="mycode_b">No ha existido en la historia un intento de tal magnitud para cambiar el comportamiento social de un grupo en beneficio de otro y que busque soluciones aparentemente inmediatas.</span> Independientemente del resultado es un tema valioso de seguir.<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>We are living history and we are all part of it.</blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Image from:</span> <a href="https://publicdomainvectors.org/en/free-clipart/Male-and-female-yin-and-yang/71154.html" target="_blank" rel="noopener" class="mycode_url">publicdomainvectors.org</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
La ingeniería social es una disciplina en el campo de las ciencias sociales que se refiere a la <span style="font-weight: bold;" class="mycode_b">influencia ejercida para causar actitudes particulares en el comportamiento</span>, especialmente a gran escala. De esta manera podemos entender al sistema educativo y sus programas como un sistema del estado de ingeniera social. Aunque esta puede ser realizada por otros grupos independientes al estado, como puede ser por grupos mediáticos, organizaciones privadas, u otros similares como puede ser un partido político, entre un gran etcétera.<br />
<br />
Un factor clave que se suele negar o simplemente menospreciar es el interés individual dentro de esos grupos de promover y propagar sus ideas. De esta forma, tanto como los integrantes de un partido político, un grupo religioso, o reporteros independientes con enfoque en un movimiento, todos ellos tienen una <span style="font-weight: bold;" class="mycode_b">motivación e interés personal de que sus ideas lleguen y surtan algún efecto sobre los receptores</span>, sea esta de forma directa o indirecta. Estos intereses o motivaciones permean sin lugar a dudas dentro de todos los niveles del grupo. Por ende, el intento organizacional de deslindarse de toda subjetividad no termina siendo otra cosa que un mero engaño, ya sea así mismo o al receptor, consciente o inconscientemente.<br />
<br />
Durante nuestra era se ha intensificado un intento de ingeniera social masivo sin precedentes. Este es el de intentar modificar la conducta sexual de los individuos y el cómo estos se relacionan entre sí dentro de una sociedad moderna. Más específicamente: el intento de modificar la conducta masculina hacia su contraparte femenina.<br />
<br />
<div style="text-align: center;" class="mycode_align">
    <iframe src="//www.youtube-nocookie.com/embed/Cetg4gu0oQQ" frameborder="0" width="560" height="315" allowfullscreen="true"></iframe><br />
<br />
Un TED talk donde hablan de aspectos que no comento aquí pero igualmente a considerar.<br />
</div>
<br />
Durante los últimos años han surgido o han crecido grupos y movimientos en favor de los derechos y paridad de género en pro de la mujer. Estos movimientos sociales están motivados por el sentimiento, muchas veces con sorpresa perpleja de pensar que sean difíciles de comprender, de lograr que los sistemas sociales funciones en igualdad de condiciones sin importar el sexo u otras condiciones. Lamentablemente con frecuencia las soluciones aplicadas a estas demandas son decididas por grupos o incluso individuos que simplemente carecen de la visión, por no decir intelectualidad, para entender realmente lo que se está demandando. Es decir, las soluciones o respuestas a las demandas del movimiento feminista son frecuentemente no carentes, sino totalmente ineficientes para lo que se demanda. Esto solo ha servido para sumar barreras que permitan la exitosa ejecución de la ingeniería social a la que trato de referirme.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">La ingeniería social que se manifiesta</span> en las sociedades modernas, especialmente en los países en vías de desarrollo, <span style="font-weight: bold;" class="mycode_b">es una sin precedentes</span> y con muchos errores. Por una parte, las soluciones ineficaces por el estado o gobierno que suman a la problemática en lugar de ayudar y una sociedad demandante que finalmente busca asignar culpa para así liberar su frustración de una respuesta pronta y efectiva. Sin embargo me gustaría aclarar que en esta publicación no me enfoco el el movimiento feminista como tal, sino de algo mucho más grande y trascendente que la simple búsqueda de la igualdad o paridad de género.<br />
<br />
Me refiero entonces al <span style="font-weight: bold;" class="mycode_b">movimiento de ingenieria social cuya meta es la modificación del comportamiento masculino</span> que busca que el hombre cambie su visión no solo sobre el ser humano de género femenino que ha prevalecido durante cientos de años, sino también hacía su mismo género, a través de las modificaciones sociales a los infantes masculinos. Ya no puede un varón enfrentarse físicamente a su semejante en el jardín de niños o con sus hermanos porque inmediatamente esto se aprecia como un peligro y no como un comportamiento natural, por ejemplo. El varón ya no puede ser fuerte, deportista, o imponente, sino que puede ser débil, artístico, y sumiso.<br />
<br />
También existen posturas extremas como la idea forzada de que cualquiera puede ser hombre u mujer y que las diferencias no pasan de la percepción psicológica o mental. O el considerar al hombre no como parte del problema sino la fuente, causante, y responsable de el y a la solución no como una sugerencia sino como algo incuestionablemente necesario. Pero al igual que el movimiento feminista por si mismo, esto también es un aspecto de la ingeniería social que se intenta llevar a cabo.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">No es mi intención el compartir una postura</span> respecto a las varias y vagas ideas que intento compartir aquí, <span style="font-weight: bold;" class="mycode_b">sino el compartir lo que me parece a mi un evento de gran importancia y complejidad</span> nunca antes visto como lo es este intento de cambiar el comportamiento masculino. <span style="font-weight: bold;" class="mycode_b">No ha existido en la historia un intento de tal magnitud para cambiar el comportamiento social de un grupo en beneficio de otro y que busque soluciones aparentemente inmediatas.</span> Independientemente del resultado es un tema valioso de seguir.<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>We are living history and we are all part of it.</blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Image from:</span> <a href="https://publicdomainvectors.org/en/free-clipart/Male-and-female-yin-and-yang/71154.html" target="_blank" rel="noopener" class="mycode_url">publicdomainvectors.org</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[MyBB: A Close Look at 100+ Patched Vulnerabilities]]></title>
			<link>https://omarg.me/thread?public/blog/mybb-mybb-a-close-look-at-100-patched-vulnerabilities</link>
			<pubDate>Wed, 26 Feb 2020 01:35:36 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/mybb-mybb-a-close-look-at-100-patched-vulnerabilities</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>With the release of MyBB 1.8.22, over one hundred vulnerabilities have been addressed in the 1.8 branch. In this post we look into what the numbers can tell us so far, and how the trends are expected to change in the future.</blockquote>
<br />
I invite you to read the following blog entry by the MyBB Group:<br />
<a href="https://blog.mybb.com/2020/02/23/a-close-look-at-100-patched-vulnerabilities/" target="_blank" rel="noopener" class="mycode_url">https://blog.mybb.com/2020/02/23/a-close...abilities/</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>With the release of MyBB 1.8.22, over one hundred vulnerabilities have been addressed in the 1.8 branch. In this post we look into what the numbers can tell us so far, and how the trends are expected to change in the future.</blockquote>
<br />
I invite you to read the following blog entry by the MyBB Group:<br />
<a href="https://blog.mybb.com/2020/02/23/a-close-look-at-100-patched-vulnerabilities/" target="_blank" rel="noopener" class="mycode_url">https://blog.mybb.com/2020/02/23/a-close...abilities/</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[GDP Shortcomings]]></title>
			<link>https://omarg.me/thread?public/blog/economics-gdp-shortcomings</link>
			<pubDate>Mon, 16 Sep 2019 05:14:15 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/economics-gdp-shortcomings</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
<span style="font-weight: bold;" class="mycode_b">Gross Domestic Product (GDP)</span> is an accurate economic indicator and is the most used to weight economic grow in any country. It refers to the total economic output achieved by any nation over a specific period. But there are some shortcomings of GDP to consider in every economy as <span style="font-weight: bold;" class="mycode_b">it doesn’t take into consideration some calculations of market and political (regulations) specific behavior</span>.<br />
<br />
<span style="font-size: medium;" class="mycode_size">Non-market transactions</span><br />
<br />
Though most, if not all, market transactions are considered within the build of GDP, non-market transaction are not. This due primarily to the fact that no solid information is available for it to be accurately accounted for. Consider, for example, the income made by children doing chores for their neighborhoods or the produce being grown for personal consumption.<br />
<br />
<span style="font-size: medium;" class="mycode_size">Leisure</span><br />
<br />
Working hours reduction has been an ongoing movement around the world specially in leading economies such as the USA and France. Additionally, worker benefits have also grown, as might be sick leaves, as well as maternity and paternity leaves. Even though it might be clean that people is producing more in less time, the <span style="font-weight: bold;" class="mycode_b">improvement in productivity is not accounted for in GDP calculation</span>.<br />
<br />
<span style="font-size: medium;" class="mycode_size">Improved product quality</span><br />
<br />
GDP is lacking as a qualitative measurement indicator as it fails to property inform the increase on product and service quality. Product and service quality measure has a big impact on economic wellbeing as customers might be more satisfied with current but cheaper products than before just because of its quality improvement.<br />
<br />
<span style="font-size: medium;" class="mycode_size">The underground economy</span><br />
<br />
Non-market transaction can also refer to the trade of illegal goods and services, such as prostitution, gambling, and drugs, etc. These are not recorded and thus not taken into consideration while building the official GDP. <span style="font-weight: bold;" class="mycode_b">But underground economy might also refer to non-illegal activities</span> which citizens or residents decide not to report, such as informal jobs and informal exchange of services between economic agents (ex. “repair this for me and I repair that for you”).<br />
<br />
<span style="font-size: medium;" class="mycode_size">Environmental abuse</span><br />
<br />
Sometimes production might be increased at the expense of environmental damage. While production might be highly regulated in developed nations developing ones might rely heavily on environmental exploitation to support their growth. <span style="font-weight: bold;" class="mycode_b">Green Gross Domestic Product (GGDP)</span> is a formula that aims to penalize such counties by offering a more accurate measurement of economic grown by considering the implementation of manufacturing practices that harm the environment.<br />
<br />
<a href="http://%20http://theconversation.com/beyond-gdp-are-there-better-ways-to-measure-well-being-33414" target="_blank" rel="noopener" class="mycode_url">Here</a> you can find an article which shares possible <span style="font-weight: bold;" class="mycode_b">alternatives to GDP as a measurement of wellbeing</span>. Even so I recommend you to do your own and extensive research in the matter.<br />
<br />
Source: <a href="http://%20https://mba-tutorials.com/shortcomings-of-gdp/" target="_blank" rel="noopener" class="mycode_url">SHORTCOMINGS OF GDP - MBA Tutorials</a>, <a href="https://corporatefinanceinstitute.com/resources/knowledge/economics/gross-domestic-product-limitations/" target="_blank" rel="noopener" class="mycode_url">What is Gross Domestic Product (GDP)? - CFI</a><br />
Graphic source: <a href="http://www.oecd.org/sdd/na/g20-gdp-growth-second-quarter-2019-oecd.htm" target="_blank" rel="noopener" class="mycode_url">G20 GDP Growth - Second quarter of 2019, OECD</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
<span style="font-weight: bold;" class="mycode_b">Gross Domestic Product (GDP)</span> is an accurate economic indicator and is the most used to weight economic grow in any country. It refers to the total economic output achieved by any nation over a specific period. But there are some shortcomings of GDP to consider in every economy as <span style="font-weight: bold;" class="mycode_b">it doesn’t take into consideration some calculations of market and political (regulations) specific behavior</span>.<br />
<br />
<span style="font-size: medium;" class="mycode_size">Non-market transactions</span><br />
<br />
Though most, if not all, market transactions are considered within the build of GDP, non-market transaction are not. This due primarily to the fact that no solid information is available for it to be accurately accounted for. Consider, for example, the income made by children doing chores for their neighborhoods or the produce being grown for personal consumption.<br />
<br />
<span style="font-size: medium;" class="mycode_size">Leisure</span><br />
<br />
Working hours reduction has been an ongoing movement around the world specially in leading economies such as the USA and France. Additionally, worker benefits have also grown, as might be sick leaves, as well as maternity and paternity leaves. Even though it might be clean that people is producing more in less time, the <span style="font-weight: bold;" class="mycode_b">improvement in productivity is not accounted for in GDP calculation</span>.<br />
<br />
<span style="font-size: medium;" class="mycode_size">Improved product quality</span><br />
<br />
GDP is lacking as a qualitative measurement indicator as it fails to property inform the increase on product and service quality. Product and service quality measure has a big impact on economic wellbeing as customers might be more satisfied with current but cheaper products than before just because of its quality improvement.<br />
<br />
<span style="font-size: medium;" class="mycode_size">The underground economy</span><br />
<br />
Non-market transaction can also refer to the trade of illegal goods and services, such as prostitution, gambling, and drugs, etc. These are not recorded and thus not taken into consideration while building the official GDP. <span style="font-weight: bold;" class="mycode_b">But underground economy might also refer to non-illegal activities</span> which citizens or residents decide not to report, such as informal jobs and informal exchange of services between economic agents (ex. “repair this for me and I repair that for you”).<br />
<br />
<span style="font-size: medium;" class="mycode_size">Environmental abuse</span><br />
<br />
Sometimes production might be increased at the expense of environmental damage. While production might be highly regulated in developed nations developing ones might rely heavily on environmental exploitation to support their growth. <span style="font-weight: bold;" class="mycode_b">Green Gross Domestic Product (GGDP)</span> is a formula that aims to penalize such counties by offering a more accurate measurement of economic grown by considering the implementation of manufacturing practices that harm the environment.<br />
<br />
<a href="http://%20http://theconversation.com/beyond-gdp-are-there-better-ways-to-measure-well-being-33414" target="_blank" rel="noopener" class="mycode_url">Here</a> you can find an article which shares possible <span style="font-weight: bold;" class="mycode_b">alternatives to GDP as a measurement of wellbeing</span>. Even so I recommend you to do your own and extensive research in the matter.<br />
<br />
Source: <a href="http://%20https://mba-tutorials.com/shortcomings-of-gdp/" target="_blank" rel="noopener" class="mycode_url">SHORTCOMINGS OF GDP - MBA Tutorials</a>, <a href="https://corporatefinanceinstitute.com/resources/knowledge/economics/gross-domestic-product-limitations/" target="_blank" rel="noopener" class="mycode_url">What is Gross Domestic Product (GDP)? - CFI</a><br />
Graphic source: <a href="http://www.oecd.org/sdd/na/g20-gdp-growth-second-quarter-2019-oecd.htm" target="_blank" rel="noopener" class="mycode_url">G20 GDP Growth - Second quarter of 2019, OECD</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Mexico, 76th in the 2019 Economic Freedom of the World Index]]></title>
			<link>https://omarg.me/thread?public/blog/economics-mexico-76th-in-the-2019-economic-freedom-of-the-world-index</link>
			<pubDate>Sun, 15 Sep 2019 22:34:38 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/economics-mexico-76th-in-the-2019-economic-freedom-of-the-world-index</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
<span style="font-weight: bold;" class="mycode_b">Hong Kong and Singapore retain the top two positions.</span><br />
<br />
The <span style="font-weight: bold;" class="mycode_b">Economic Freedom of the World: 2019 Annual Report</span> has been realeased. And with it, the leading positioning that Hong Kong and Singapore retain at the top two positions remain. This while the United States sits at the 5th position, Japan at the 17th, Germany at the 20th, France the 50th, and a little up <span style="font-weight: bold;" class="mycode_b">Mexico located at the 76th position</span>.<br />
<br />
The Economic Freedom of the World takes into consideration various aspects, some of these being <span style="font-weight: bold;" class="mycode_b">possibility of personal choice, voluntary exchange, and open markets</span>. This while considering different areas of evaluation, as is the presence of <span style="font-weight: bold;" class="mycode_b">sound money, rule of law, and security of property rights</span>, among others. The report is published jointly by the <span style="font-weight: bold;" class="mycode_b">Cato Institute</span> in partnership with the <span style="font-weight: bold;" class="mycode_b">Fraser Institute</span> in Canada and more than 70 think tanks or expert organizations around the world.<br />
<br />
<div style="text-align: center;" class="mycode_align">
<div class="attachments__attachment attachment">
    <span class="attachment__icon"><img src="https://cdn.omarg.me/image" title="JPG Image" border="0" alt=".jpg" /></span>
    <a href="attachment.php?aid=1" target="_blank" title="" class="attachment__link">efw-2019-chapter-2-mexico.jpg</a>
    <span class="attachment__data">(Size: 123.03 KB / Downloads: 6556)</span>
</div>
<br />
<a href="https://www.cato.org/economic-freedom-world" target="_blank" rel="noopener" class="mycode_url">Table 1. Mexico country data table<br />
(Economic Freedom of the World: 2019 Annual Report Chapter 2, 2019, p. 123).</a><br />
</div>
<br />
There is outgoing worry regarding the <span style="font-weight: bold;" class="mycode_b">Legal System and Property Rights</span> Mexico, where it stands the worst within the five reviewed areas. As can be seen above, no field stands outs except for the <span style="font-weight: bold;" class="mycode_b">Regulatory costs of the sale of real property</span> field, with a <span style="font-style: italic;" class="mycode_i">value of 7.64 out of 10</span>. The rest have nothing to be optimistic for.<br />
<br />
The report emphasizes the <span style="font-weight: bold;" class="mycode_b">positive differences that the more economically freed nations have over non-free nations</span> regarding indicators of well-beings. You can find the following among the relations:<br />
<ul class="mycode_list"><li>In more economically free nations, the average income of the poorest population was two-thirds higher that the average income of to the poorest population in the least-free nations.<br />
</li>
<li>Far less population in more economically free nations experience extreme poverty than those in least-free nations.<br />
</li>
<li>Infant mortality is lower in more economically free nations than in least-free nations.<br />
</li>
</ul>
<br />
<div style="text-align: center;" class="mycode_align">
<div class="attachments__attachment attachment">
    <span class="attachment__icon"><img src="https://cdn.omarg.me/image" title="JPG Image" border="0" alt=".jpg" /></span>
    <a href="attachment.php?aid=2" target="_blank" title="" class="attachment__link">efw-povertyrate.jpg</a>
    <span class="attachment__data">(Size: 24.72 KB / Downloads: 6847)</span>
</div>
<br />
<a href="https://www.cato.org/economic-freedom-world" target="_blank" rel="noopener" class="mycode_url">Graphic 1. Economic freedom and extreme and moderate poverty rates<br />
(Economic Freedom of the World: 2019 Annual Report Chapter 1, 2019, p. 20).</a><br />
</div>
<br />
<span style="font-weight: bold;" class="mycode_b">You can find the 2019 along past year reports by <a href="https://www.cato.org/economic-freedom-world" target="_blank" rel="noopener" class="mycode_url"><span style="font-style: italic;" class="mycode_i">clicking here</span></a></span> or by browsing the resources section where a link shall be added.<br />
<br />
<a href="https://www.fraserinstitute.org/economic-freedom/map?geozone=world&amp;page=map" target="_blank" rel="noopener" class="mycode_url">Mapping images taken from the Economic Freedom Ranking page.</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
<span style="font-weight: bold;" class="mycode_b">Hong Kong and Singapore retain the top two positions.</span><br />
<br />
The <span style="font-weight: bold;" class="mycode_b">Economic Freedom of the World: 2019 Annual Report</span> has been realeased. And with it, the leading positioning that Hong Kong and Singapore retain at the top two positions remain. This while the United States sits at the 5th position, Japan at the 17th, Germany at the 20th, France the 50th, and a little up <span style="font-weight: bold;" class="mycode_b">Mexico located at the 76th position</span>.<br />
<br />
The Economic Freedom of the World takes into consideration various aspects, some of these being <span style="font-weight: bold;" class="mycode_b">possibility of personal choice, voluntary exchange, and open markets</span>. This while considering different areas of evaluation, as is the presence of <span style="font-weight: bold;" class="mycode_b">sound money, rule of law, and security of property rights</span>, among others. The report is published jointly by the <span style="font-weight: bold;" class="mycode_b">Cato Institute</span> in partnership with the <span style="font-weight: bold;" class="mycode_b">Fraser Institute</span> in Canada and more than 70 think tanks or expert organizations around the world.<br />
<br />
<div style="text-align: center;" class="mycode_align">
<div class="attachments__attachment attachment">
    <span class="attachment__icon"><img src="https://cdn.omarg.me/image" title="JPG Image" border="0" alt=".jpg" /></span>
    <a href="attachment.php?aid=1" target="_blank" title="" class="attachment__link">efw-2019-chapter-2-mexico.jpg</a>
    <span class="attachment__data">(Size: 123.03 KB / Downloads: 6556)</span>
</div>
<br />
<a href="https://www.cato.org/economic-freedom-world" target="_blank" rel="noopener" class="mycode_url">Table 1. Mexico country data table<br />
(Economic Freedom of the World: 2019 Annual Report Chapter 2, 2019, p. 123).</a><br />
</div>
<br />
There is outgoing worry regarding the <span style="font-weight: bold;" class="mycode_b">Legal System and Property Rights</span> Mexico, where it stands the worst within the five reviewed areas. As can be seen above, no field stands outs except for the <span style="font-weight: bold;" class="mycode_b">Regulatory costs of the sale of real property</span> field, with a <span style="font-style: italic;" class="mycode_i">value of 7.64 out of 10</span>. The rest have nothing to be optimistic for.<br />
<br />
The report emphasizes the <span style="font-weight: bold;" class="mycode_b">positive differences that the more economically freed nations have over non-free nations</span> regarding indicators of well-beings. You can find the following among the relations:<br />
<ul class="mycode_list"><li>In more economically free nations, the average income of the poorest population was two-thirds higher that the average income of to the poorest population in the least-free nations.<br />
</li>
<li>Far less population in more economically free nations experience extreme poverty than those in least-free nations.<br />
</li>
<li>Infant mortality is lower in more economically free nations than in least-free nations.<br />
</li>
</ul>
<br />
<div style="text-align: center;" class="mycode_align">
<div class="attachments__attachment attachment">
    <span class="attachment__icon"><img src="https://cdn.omarg.me/image" title="JPG Image" border="0" alt=".jpg" /></span>
    <a href="attachment.php?aid=2" target="_blank" title="" class="attachment__link">efw-povertyrate.jpg</a>
    <span class="attachment__data">(Size: 24.72 KB / Downloads: 6847)</span>
</div>
<br />
<a href="https://www.cato.org/economic-freedom-world" target="_blank" rel="noopener" class="mycode_url">Graphic 1. Economic freedom and extreme and moderate poverty rates<br />
(Economic Freedom of the World: 2019 Annual Report Chapter 1, 2019, p. 20).</a><br />
</div>
<br />
<span style="font-weight: bold;" class="mycode_b">You can find the 2019 along past year reports by <a href="https://www.cato.org/economic-freedom-world" target="_blank" rel="noopener" class="mycode_url"><span style="font-style: italic;" class="mycode_i">clicking here</span></a></span> or by browsing the resources section where a link shall be added.<br />
<br />
<a href="https://www.fraserinstitute.org/economic-freedom/map?geozone=world&amp;page=map" target="_blank" rel="noopener" class="mycode_url">Mapping images taken from the Economic Freedom Ranking page.</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[What's Microproductivity? A post from Trello.]]></title>
			<link>https://omarg.me/thread?public/blog/productivity-what-s-microproductivity-a-post-from-trello</link>
			<pubDate>Sat, 05 Jan 2019 23:24:02 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/productivity-what-s-microproductivity-a-post-from-trello</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
In their post, <a href="https://blog.trello.com/microproductivity-break-tasks-into-smaller-steps" target="_blank" rel="noopener" class="mycode_url">What's Microproductivity? The Small Habit That Will Lead You To Big Wins</a>, writer Kat Boogaard gives a brief explanation of how and why micro productivity works. That is, breaking projects or work into smaller tasks with the intention to increase productivity. One interesting reference is a reading about the <a href="https://courses.lumenlearning.com/wm-principlesofmanagement/chapter/reading-goal-setting-theory/" target="_blank" rel="noopener" class="mycode_url">Goal-Setting Theory<br />
</a> page from Lumen Learning platform.<br />
<br />
Ideally something to work on this new year!<br />
<br />
Image by Trello, found in <a href="https://blog.trello.com/manage-scrum-and-kanban-teams-with-trello-corrello-power-up" target="_blank" rel="noopener" class="mycode_url">How To Manage Scrum And Kanban Teams In Trello With The Corrello Power-Up</a>, a recommended read as well.]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
In their post, <a href="https://blog.trello.com/microproductivity-break-tasks-into-smaller-steps" target="_blank" rel="noopener" class="mycode_url">What's Microproductivity? The Small Habit That Will Lead You To Big Wins</a>, writer Kat Boogaard gives a brief explanation of how and why micro productivity works. That is, breaking projects or work into smaller tasks with the intention to increase productivity. One interesting reference is a reading about the <a href="https://courses.lumenlearning.com/wm-principlesofmanagement/chapter/reading-goal-setting-theory/" target="_blank" rel="noopener" class="mycode_url">Goal-Setting Theory<br />
</a> page from Lumen Learning platform.<br />
<br />
Ideally something to work on this new year!<br />
<br />
Image by Trello, found in <a href="https://blog.trello.com/manage-scrum-and-kanban-teams-with-trello-corrello-power-up" target="_blank" rel="noopener" class="mycode_url">How To Manage Scrum And Kanban Teams In Trello With The Corrello Power-Up</a>, a recommended read as well.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Intelectual Property in USMCA]]></title>
			<link>https://omarg.me/thread?public/blog/technologie-intelectual-property-in-usmca</link>
			<pubDate>Mon, 03 Dec 2018 21:07:46 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/technologie-intelectual-property-in-usmca</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
Hi there people.<br />
<br />
I have been reading some of the USMCA (T-MEC in Mexico) <a href="https://www.dineroenimagen.com/hacker/el-t-mec-podria-afectar-tu-libertad-de-navegar-por-internet/105085" target="_blank" rel="noopener" class="mycode_url">content regarding intelectual property protection</a>. It was kind of shocking to find out that in the document they not just force the US Digital Millennium Copyright Act (DMCA) concept for all parties (Canada, Mexico, and the US) but also <span style="font-weight: bold;" class="mycode_b">imposes liability for Internet Service Providers over content created by the end user</span>. I know there is a need to control this some way, but forcing ISPs to comply with such demands might not be the best for all parties.<br />
<br />
I'm talking especially about Mexico here of course. There is a danger for Mexicans to be increasingly damaged by this policy because of lacking differences in the judiciary. For US citizens <a href="https://arstechnica.com/tech-policy/2018/10/ajit-pais-fcc-tells-court-that-net-neutrality-rules-were-illegal/" target="_blank" rel="noopener" class="mycode_url">a government that tries to enforce anything </a>upon them through mere text interpretation might end up being worth of a Hollywood movie draft script. For we Mexicans, we may as well end up playing puppet as the rule of law and due process are both kind of a joke.<br />
<br />
Anyway, I recommend you read the document, get informed about its content, or both, as <span style="font-weight: bold;" class="mycode_b">it will start applying to the three north america countries once their legislature approves it</span> now that their <a href="https://www.vox.com/2018/11/30/18119700/usmca-nafta-replacement-g20-trump" target="_blank" rel="noopener" class="mycode_url">executive representatives have signed the threaty while in the G20 summit in Buenos Aires.</a>.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">References:</span> <a href="https://ustr.gov/trade-agreements/free-trade-agreements/united-states-mexico-canada-agreement" target="_blank" rel="noopener" class="mycode_url">United States-Mexico-Canada Agreement</a>, <a href="https://www.wilsoncenter.org/article/infographic-the-usmca" target="_blank" rel="noopener" class="mycode_url">Infographic | The USMCA</a>, <a href="https://www.wilsoncenter.org/article/infographic-usmca-intellectual-property" target="_blank" rel="noopener" class="mycode_url">Infographic | USMCA Intellectual Property</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
Hi there people.<br />
<br />
I have been reading some of the USMCA (T-MEC in Mexico) <a href="https://www.dineroenimagen.com/hacker/el-t-mec-podria-afectar-tu-libertad-de-navegar-por-internet/105085" target="_blank" rel="noopener" class="mycode_url">content regarding intelectual property protection</a>. It was kind of shocking to find out that in the document they not just force the US Digital Millennium Copyright Act (DMCA) concept for all parties (Canada, Mexico, and the US) but also <span style="font-weight: bold;" class="mycode_b">imposes liability for Internet Service Providers over content created by the end user</span>. I know there is a need to control this some way, but forcing ISPs to comply with such demands might not be the best for all parties.<br />
<br />
I'm talking especially about Mexico here of course. There is a danger for Mexicans to be increasingly damaged by this policy because of lacking differences in the judiciary. For US citizens <a href="https://arstechnica.com/tech-policy/2018/10/ajit-pais-fcc-tells-court-that-net-neutrality-rules-were-illegal/" target="_blank" rel="noopener" class="mycode_url">a government that tries to enforce anything </a>upon them through mere text interpretation might end up being worth of a Hollywood movie draft script. For we Mexicans, we may as well end up playing puppet as the rule of law and due process are both kind of a joke.<br />
<br />
Anyway, I recommend you read the document, get informed about its content, or both, as <span style="font-weight: bold;" class="mycode_b">it will start applying to the three north america countries once their legislature approves it</span> now that their <a href="https://www.vox.com/2018/11/30/18119700/usmca-nafta-replacement-g20-trump" target="_blank" rel="noopener" class="mycode_url">executive representatives have signed the threaty while in the G20 summit in Buenos Aires.</a>.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">References:</span> <a href="https://ustr.gov/trade-agreements/free-trade-agreements/united-states-mexico-canada-agreement" target="_blank" rel="noopener" class="mycode_url">United States-Mexico-Canada Agreement</a>, <a href="https://www.wilsoncenter.org/article/infographic-the-usmca" target="_blank" rel="noopener" class="mycode_url">Infographic | The USMCA</a>, <a href="https://www.wilsoncenter.org/article/infographic-usmca-intellectual-property" target="_blank" rel="noopener" class="mycode_url">Infographic | USMCA Intellectual Property</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[¿"Haya", "Halla", "Aya", o "Alla"?]]></title>
			<link>https://omarg.me/thread?public/blog/language-%C2%BF-haya-halla-aya-o-alla</link>
			<pubDate>Sun, 30 Apr 2017 01:58:04 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/language-%C2%BF-haya-halla-aya-o-alla</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Comment c'est ?</span></span><br />
<span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">"Haya", "Halla", "Aya", o "Alla"</span></span></div>
<br />
Aunque el uso de estas palabras puede confundirse en la escritura y el habla, es en realidad muy sencillo diferenciar entre sus usos.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Haya</span><br />
<br />
Puede ser un verbo o un sustantivo. Como verbo, es la forma de primera o tercera persona del singular del presente de subjuntivo del verbo haber.<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—Espero que Luis haya llegado.<br />
—No cree que el niño se haya vestido solo.<br />
—Quizá haya algo que podamos hacer.</blockquote>
<br />
Como sustantivo, es femenino y designa un tipo de árbol:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—Hay que podar el haya del jardín.<br />
—Se sentó a la sombra de una frondosa haya.</blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Halla</span><br />
<br />
Es la forma de la tercera persona del singular del presente de indicativo, o la segunda persona (tú) del singular del imperativo, del verbo hallar(se), que significa ‘encontrar(se)’. Regularmente se puede intercambiar con el verbo "encontrar":<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—No sé cómo lo hace, pero halla/encuentra siempre una excusa perfecta para no ir.<br />
—La flora se halla/encuentra constituida por diferentes especies.<br />
—Halla/Encuentra la hipotenusa del siguiente triángulo rectángulo.</blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Aya</span><br />
<br />
Es un sustantivo femenino que significa ‘mujer encargada en una casa del cuidado y educación de los niños o jóvenes’:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—Aún se acordaba del aya sabia y cariñosa de su infancia.<br />
—La vieja aya seguía llevando a los niños al parque.   </blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Allá</span><br />
<br />
Es un adverbio de lugar:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—Lo puedes encontrar allá sobre la mesa.<br />
—Luis regreso allá, a su natal tierra.<br />
—Allá se halla una frondosa haya, que será hermosa siempre y cuando haya sido bien podada.</blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Fuente:</span> <a href="http://www.rae.es/consultas/halla-haya-aya" target="_blank" rel="noopener" class="mycode_url">RAE</a>, <a href="https://www.diccionariodedudas.com/halla-haya-aya-o-alla/" target="_blank" rel="noopener" class="mycode_url">Diccionario de Dudas</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Comment c'est ?</span></span><br />
<span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">"Haya", "Halla", "Aya", o "Alla"</span></span></div>
<br />
Aunque el uso de estas palabras puede confundirse en la escritura y el habla, es en realidad muy sencillo diferenciar entre sus usos.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Haya</span><br />
<br />
Puede ser un verbo o un sustantivo. Como verbo, es la forma de primera o tercera persona del singular del presente de subjuntivo del verbo haber.<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—Espero que Luis haya llegado.<br />
—No cree que el niño se haya vestido solo.<br />
—Quizá haya algo que podamos hacer.</blockquote>
<br />
Como sustantivo, es femenino y designa un tipo de árbol:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—Hay que podar el haya del jardín.<br />
—Se sentó a la sombra de una frondosa haya.</blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Halla</span><br />
<br />
Es la forma de la tercera persona del singular del presente de indicativo, o la segunda persona (tú) del singular del imperativo, del verbo hallar(se), que significa ‘encontrar(se)’. Regularmente se puede intercambiar con el verbo "encontrar":<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—No sé cómo lo hace, pero halla/encuentra siempre una excusa perfecta para no ir.<br />
—La flora se halla/encuentra constituida por diferentes especies.<br />
—Halla/Encuentra la hipotenusa del siguiente triángulo rectángulo.</blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Aya</span><br />
<br />
Es un sustantivo femenino que significa ‘mujer encargada en una casa del cuidado y educación de los niños o jóvenes’:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—Aún se acordaba del aya sabia y cariñosa de su infancia.<br />
—La vieja aya seguía llevando a los niños al parque.   </blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Allá</span><br />
<br />
Es un adverbio de lugar:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—Lo puedes encontrar allá sobre la mesa.<br />
—Luis regreso allá, a su natal tierra.<br />
—Allá se halla una frondosa haya, que será hermosa siempre y cuando haya sido bien podada.</blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Fuente:</span> <a href="http://www.rae.es/consultas/halla-haya-aya" target="_blank" rel="noopener" class="mycode_url">RAE</a>, <a href="https://www.diccionariodedudas.com/halla-haya-aya-o-alla/" target="_blank" rel="noopener" class="mycode_url">Diccionario de Dudas</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[¿"A ver" vs. "Haber"?]]></title>
			<link>https://omarg.me/thread?public/blog/language-%C2%BF-a-ver-vs-haber</link>
			<pubDate>Thu, 20 Apr 2017 19:32:19 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/language-%C2%BF-a-ver-vs-haber</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Comment c'est ?</span></span><br />
<span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">"A ver" ou "Haber"</span></span></div>
<br />
Aunque su uso puede confundirse en la escritura, es en realidad muy sencillo diferenciar entre sus usos.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">A ver</span><br />
<br />
Se trata en realidad de la preposición "a" y el infinitivo verbal "ver":<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—A ver, ¿has hecho lo que te dije?<br />
—Vete a ver qué nota te han puesto.<br />
—A ver como te va con tu madre con esas notas.</blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Haber</span><br />
<br />
Se trata de un verbo o un sustantivo. Como verbo, haber se usa como auxiliar, seguido de un participio:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—Tiene que haber sucedido algo.<br />
—Sigo sin haber entendido lo que ha pasado.</blockquote>
<br />
También se emplea como infinitivo del verbo impersonal que denota la presencia o existencia de lo designado por el sustantivo que lo acompaña:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—Parece haber un chico esperándote en la puerta.<br />
—Tiene que haber deberes pendientes.</blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Fuente:</span> <a href="http://www.rae.es/consultas/ver-haber" target="_blank" rel="noopener" class="mycode_url">RAE</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Comment c'est ?</span></span><br />
<span style="font-size: medium;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">"A ver" ou "Haber"</span></span></div>
<br />
Aunque su uso puede confundirse en la escritura, es en realidad muy sencillo diferenciar entre sus usos.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">A ver</span><br />
<br />
Se trata en realidad de la preposición "a" y el infinitivo verbal "ver":<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—A ver, ¿has hecho lo que te dije?<br />
—Vete a ver qué nota te han puesto.<br />
—A ver como te va con tu madre con esas notas.</blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Haber</span><br />
<br />
Se trata de un verbo o un sustantivo. Como verbo, haber se usa como auxiliar, seguido de un participio:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—Tiene que haber sucedido algo.<br />
—Sigo sin haber entendido lo que ha pasado.</blockquote>
<br />
También se emplea como infinitivo del verbo impersonal que denota la presencia o existencia de lo designado por el sustantivo que lo acompaña:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>—Parece haber un chico esperándote en la puerta.<br />
—Tiene que haber deberes pendientes.</blockquote>
<br />
<span style="font-weight: bold;" class="mycode_b">Fuente:</span> <a href="http://www.rae.es/consultas/ver-haber" target="_blank" rel="noopener" class="mycode_url">RAE</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[L’éléphant Enchaîné]]></title>
			<link>https://omarg.me/thread?public/blog/language-l%E2%80%99%C3%A9l%C3%A9phant-encha%C3%AEn%C3%A9</link>
			<pubDate>Sat, 25 Mar 2017 17:24:23 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/language-l%E2%80%99%C3%A9l%C3%A9phant-encha%C3%AEn%C3%A9</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="http://i.imgur.com/MLSOEx5.jpg" loading="lazy" alt="[Image: MLSOEx5.jpg]" class="mycode_img" /><br />
</div>
<br />
<blockquote class="post__quote quote">
    <cite class="quote__cite">
                <a href="http://ayeba.fr/2008/12/lelephant-enchaine-croyances-bucay-connaissance-de-soi-bien-etre/" target="_blank" rel="noopener" class="mycode_url">Ayeba.fr</a> wrote:    </cite>    Quand j’étais petit, j’adorais le cirque, et ce que j’aimais par-dessus tout, au cirque, c’étaient les animaux. L’éléphant en particulier me fascinait; comme je l’appris par la suite, c’était l’animal préféré de tous les enfants. Pendant son numéro, l’énorme bête exhibait un poids, une taille et une force extraordinaires… Mais tout de suite après et jusqu’à la représentation suivante, l’éléphant restait toujours attaché à un petit pieu fiché en terre, par une chaîne qui retenait une de ses pattes prisonnière. Mais ce pieu n’était qu’un minuscule morceau de bois à peine enfoncé de quelques centimètres dans le sol. Et bien que la chaîne fût épaisse et résistante, il me semblait évident qu’un animal capable de déraciner un arbre devrait facilement pouvoir se libérer et s’en aller. Le mystère reste entier à mes yeux.<br />
<br />
<span style="font-style: italic;" class="mycode_i">« Alors, qu’est ce qui le retient ? Pourquoi ne s’échappe t-il pas ? »</span><br />
<br />
À cinq ou six ans, j’avais encore une confiance absolue dans la science des adultes. J’interrogeai donc un maître, un père ou un oncle sur le mystère du pachyderme. L’un d’eux m’expliqua que l’éléphant ne s’échappait pas parce qu’il était dressé. Je posais alors la question qui tombe sous le sens:<br />
<br />
<span style="font-style: italic;" class="mycode_i">« S’il est dressé, pourquoi l’enchaîne-t-on ? »</span><br />
<br />
Je ne me rappelle pas qu’on m’ait fait une réponse cohérente. Le temps passant, j’oubliai le mystère de l’éléphant et de son pieu, ne m’en souvenant que lorsque je rencontrais d’autres personnes qui un jour, elles aussi, s’étaient posé la même question.<br />
<br />
Il y a quelques années, j’eus la chance de tomber sur quelqu’un d’assez savant pour connaître la réponse:<br />
<br />
<span style="font-style: italic;" class="mycode_i">« L’éléphant du cirque ne se détache pas parce que, dès tout petit, il a été attaché à un pieu semblable. »</span><br />
<br />
Je fermai les yeux et j’imaginai l’éléphant nouveau-né sans défense, attaché à ce piquet. Je suis sûr qu’à ce moment l’éléphanteau a poussé, tiré et transpiré pour essayer de se libérer, mais que, le piquet étant trop solide pour lui, il n’y est pas arrivé malgré tous ces efforts.<br />
<br />
Je l’imaginai qui s’endormait épuisé et, le lendemain, essayait à nouveau, et le surlendemain… et les jours suivants… Jusqu’à ce qu’un jour, un jour terrible pour son histoire, l’animal finisse par accepter son impuissance et se résigner à son sort.<br />
<br />
Cet énorme et puissant pachyderme que nous voyons au cirque ne s’échappe pas, le pauvre, parce qu’il croit en être incapable. Il garde le souvenir gravé de l’impuissance qui fut la sienne après sa naissance. Et le pire, c’est que jamais il n’a tenté d’éprouver à nouveau sa force.<br />
<br />
C’est ainsi! Nous sommes tous un peu comme l’éléphant du cirque : nous allons de par le monde attachés à des centaines de pieux qui nous retirent une partie de notre liberté.<br />
<br />
Nous vivons avec l’idée que « nous ne pouvons pas faire » des tas de choses, pour la simple et bonne raison qu’une fois, il y a bien longtemps, quand nous étions petits, nous avons essayé et n’avons pas réussi.</blockquote>
<br />
Un cuento por el escritor argentino Jorge Bucay.]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="http://i.imgur.com/MLSOEx5.jpg" loading="lazy" alt="[Image: MLSOEx5.jpg]" class="mycode_img" /><br />
</div>
<br />
<blockquote class="post__quote quote">
    <cite class="quote__cite">
                <a href="http://ayeba.fr/2008/12/lelephant-enchaine-croyances-bucay-connaissance-de-soi-bien-etre/" target="_blank" rel="noopener" class="mycode_url">Ayeba.fr</a> wrote:    </cite>    Quand j’étais petit, j’adorais le cirque, et ce que j’aimais par-dessus tout, au cirque, c’étaient les animaux. L’éléphant en particulier me fascinait; comme je l’appris par la suite, c’était l’animal préféré de tous les enfants. Pendant son numéro, l’énorme bête exhibait un poids, une taille et une force extraordinaires… Mais tout de suite après et jusqu’à la représentation suivante, l’éléphant restait toujours attaché à un petit pieu fiché en terre, par une chaîne qui retenait une de ses pattes prisonnière. Mais ce pieu n’était qu’un minuscule morceau de bois à peine enfoncé de quelques centimètres dans le sol. Et bien que la chaîne fût épaisse et résistante, il me semblait évident qu’un animal capable de déraciner un arbre devrait facilement pouvoir se libérer et s’en aller. Le mystère reste entier à mes yeux.<br />
<br />
<span style="font-style: italic;" class="mycode_i">« Alors, qu’est ce qui le retient ? Pourquoi ne s’échappe t-il pas ? »</span><br />
<br />
À cinq ou six ans, j’avais encore une confiance absolue dans la science des adultes. J’interrogeai donc un maître, un père ou un oncle sur le mystère du pachyderme. L’un d’eux m’expliqua que l’éléphant ne s’échappait pas parce qu’il était dressé. Je posais alors la question qui tombe sous le sens:<br />
<br />
<span style="font-style: italic;" class="mycode_i">« S’il est dressé, pourquoi l’enchaîne-t-on ? »</span><br />
<br />
Je ne me rappelle pas qu’on m’ait fait une réponse cohérente. Le temps passant, j’oubliai le mystère de l’éléphant et de son pieu, ne m’en souvenant que lorsque je rencontrais d’autres personnes qui un jour, elles aussi, s’étaient posé la même question.<br />
<br />
Il y a quelques années, j’eus la chance de tomber sur quelqu’un d’assez savant pour connaître la réponse:<br />
<br />
<span style="font-style: italic;" class="mycode_i">« L’éléphant du cirque ne se détache pas parce que, dès tout petit, il a été attaché à un pieu semblable. »</span><br />
<br />
Je fermai les yeux et j’imaginai l’éléphant nouveau-né sans défense, attaché à ce piquet. Je suis sûr qu’à ce moment l’éléphanteau a poussé, tiré et transpiré pour essayer de se libérer, mais que, le piquet étant trop solide pour lui, il n’y est pas arrivé malgré tous ces efforts.<br />
<br />
Je l’imaginai qui s’endormait épuisé et, le lendemain, essayait à nouveau, et le surlendemain… et les jours suivants… Jusqu’à ce qu’un jour, un jour terrible pour son histoire, l’animal finisse par accepter son impuissance et se résigner à son sort.<br />
<br />
Cet énorme et puissant pachyderme que nous voyons au cirque ne s’échappe pas, le pauvre, parce qu’il croit en être incapable. Il garde le souvenir gravé de l’impuissance qui fut la sienne après sa naissance. Et le pire, c’est que jamais il n’a tenté d’éprouver à nouveau sa force.<br />
<br />
C’est ainsi! Nous sommes tous un peu comme l’éléphant du cirque : nous allons de par le monde attachés à des centaines de pieux qui nous retirent une partie de notre liberté.<br />
<br />
Nous vivons avec l’idée que « nous ne pouvons pas faire » des tas de choses, pour la simple et bonne raison qu’une fois, il y a bien longtemps, quand nous étions petits, nous avons essayé et n’avons pas réussi.</blockquote>
<br />
Un cuento por el escritor argentino Jorge Bucay.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[The Psychology of Color on Marketing & Branding]]></title>
			<link>https://omarg.me/thread?public/blog/marketing-the-psychology-of-color-on-marketing-branding</link>
			<pubDate>Sat, 18 Mar 2017 20:01:51 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/marketing-the-psychology-of-color-on-marketing-branding</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
The psychology of color sure is an interesting topic to learn about when trying to gasp how design affects your marketing strategies. And it is not just about web design we are talking about, but the choice of colors could affect the impact your product has over its target audience. From choosing the right color scheme for your product, from branding, the product itself (if edible, think about food products targeted to kids for example)  or the colors used in the website that promotes the products. And that could be a critical phase for your product or service. If your only marketing alternative is online marketing, you don't want your prospect target audience to flee as soon as they glance at your welcome page or keep scrolling down their facebook home after passing your add.<br />
<br />
Over at <a href="https://www.entrepreneur.com/article/233843" target="_blank" rel="noopener" class="mycode_url">Entrepreneur</a> <span style="font-weight: bold;" class="mycode_b">Gregory Ciotti</span> writes about how our usage of color strategies can help us to create content that persuades people to act. Of course it is not going to be as magical as if you were <span style="font-style: italic;" class="mycode_i">manipulating</span> your costumers, but you could get close to it. As Gregory Ciotti puts it, is is not about triggering a reaction into people's minds, but rather allowing their subconscious minds to identify what is important, making smart choses about elements colors and how to highlight them over their surroundings. After all, it is not like the same color evokes the same reactions, feelings, or thoughts on every single person. Instead, you focus on how these color patters blend together to trigger the desired reaction into people, from making an attractive product to buy, making it easy for customers to contact you, to bait them into reading an article without trying their sight.<br />
<br />
You don't need to be a expertise on the field of design, you only need to know the basics to create your basic common sense on what works and what doesn't. There are multiple sites that try to <a href="https://www.smashingmagazine.com/2010/01/color-theory-for-designers-part-1-the-meaning-of-color/" target="_blank" rel="noopener" class="mycode_url">extensively teach us about the subject</a> and many more that gives us <a href="http://lifehacker.com/this-graphic-explains-the-connection-between-color-and-1157061097" target="_blank" rel="noopener" class="mycode_url">a subtle glance of it</a>. Each of them may help you build your own understanding and strategies on color selection whenever you may need to.<br />
<br />
<a href="https://www.entrepreneur.com/article/233843" target="_blank" rel="noopener" class="mycode_url">Entrepreneur: The Psychology of Color</a><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Updated:</span> I share with you a related link to an interesting reading about color theory.<br />
<br />
<a href="http://cmoryl.com/2017/11/26/color-theory/" target="_blank" rel="noopener" class="mycode_url">http://cmoryl.com/2017/11/26/color-theory/</a><br />
<a href="https://bl1ndf0ld.wordpress.com/2013/04/15/colour-wheel-infographic/" target="_blank" rel="noopener" class="mycode_url">https://bl1ndf0ld.wordpress.com/2013/04/...fographic/</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align">[field=blog_cover]</div>
<br />
The psychology of color sure is an interesting topic to learn about when trying to gasp how design affects your marketing strategies. And it is not just about web design we are talking about, but the choice of colors could affect the impact your product has over its target audience. From choosing the right color scheme for your product, from branding, the product itself (if edible, think about food products targeted to kids for example)  or the colors used in the website that promotes the products. And that could be a critical phase for your product or service. If your only marketing alternative is online marketing, you don't want your prospect target audience to flee as soon as they glance at your welcome page or keep scrolling down their facebook home after passing your add.<br />
<br />
Over at <a href="https://www.entrepreneur.com/article/233843" target="_blank" rel="noopener" class="mycode_url">Entrepreneur</a> <span style="font-weight: bold;" class="mycode_b">Gregory Ciotti</span> writes about how our usage of color strategies can help us to create content that persuades people to act. Of course it is not going to be as magical as if you were <span style="font-style: italic;" class="mycode_i">manipulating</span> your costumers, but you could get close to it. As Gregory Ciotti puts it, is is not about triggering a reaction into people's minds, but rather allowing their subconscious minds to identify what is important, making smart choses about elements colors and how to highlight them over their surroundings. After all, it is not like the same color evokes the same reactions, feelings, or thoughts on every single person. Instead, you focus on how these color patters blend together to trigger the desired reaction into people, from making an attractive product to buy, making it easy for customers to contact you, to bait them into reading an article without trying their sight.<br />
<br />
You don't need to be a expertise on the field of design, you only need to know the basics to create your basic common sense on what works and what doesn't. There are multiple sites that try to <a href="https://www.smashingmagazine.com/2010/01/color-theory-for-designers-part-1-the-meaning-of-color/" target="_blank" rel="noopener" class="mycode_url">extensively teach us about the subject</a> and many more that gives us <a href="http://lifehacker.com/this-graphic-explains-the-connection-between-color-and-1157061097" target="_blank" rel="noopener" class="mycode_url">a subtle glance of it</a>. Each of them may help you build your own understanding and strategies on color selection whenever you may need to.<br />
<br />
<a href="https://www.entrepreneur.com/article/233843" target="_blank" rel="noopener" class="mycode_url">Entrepreneur: The Psychology of Color</a><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Updated:</span> I share with you a related link to an interesting reading about color theory.<br />
<br />
<a href="http://cmoryl.com/2017/11/26/color-theory/" target="_blank" rel="noopener" class="mycode_url">http://cmoryl.com/2017/11/26/color-theory/</a><br />
<a href="https://bl1ndf0ld.wordpress.com/2013/04/15/colour-wheel-infographic/" target="_blank" rel="noopener" class="mycode_url">https://bl1ndf0ld.wordpress.com/2013/04/...fographic/</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Uh, What are Interjections?]]></title>
			<link>https://omarg.me/thread?public/blog/language-uh-what-are-interjections</link>
			<pubDate>Wed, 15 Mar 2017 03:42:22 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/language-uh-what-are-interjections</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="http://i.imgur.com/kol7k6n.jpg" loading="lazy" alt="[Image: kol7k6n.jpg]" class="mycode_img" /><br />
</div>
<br />
<span style="font-weight: bold;" class="mycode_b">Interjection</span> are words or sentences that <span style="font-weight: bold;" class="mycode_b">express spontaneous feelings or reactions</span> and they can be either part of another sentence of form stand-alone sentences by themselves. They are one of the major parts of speech, along verbs, nouns, pronouns, conjunctions, etc. <span style="font-weight: bold;" class="mycode_b">Interjections don't need to be grammatically organized inside the sentence</span> and represent <a href="https://en.wikipedia.org/wiki/Jakobson's_functions_of_language" target="_blank" rel="noopener" class="mycode_url">Jakobson's emotive function of language</a>, described as words or sentences that "<span style="font-style: italic;" class="mycode_i">add information about the speaker's internal state</span>", thus its sole purpose is to convey the author's feeling at the moment and are more commonly used in fiction or artistic writing.<br />
<br />
Another characteristic of such words or expressions is that <span style="font-weight: bold;" class="mycode_b">they can be disposed of without altering the meaning of the sentence</span>. Some examples:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><span style="font-weight: bold;" class="mycode_b">Hurray!</span> It is a snow day and school is canceled.<br />
It is so exciting, <span style="font-weight: bold;" class="mycode_b">my goodness</span>, I just can’t believe it.<br />
Joe was late to school and <span style="font-weight: bold;" class="mycode_b">yikes</span>, the teacher was mad.<br />
<span style="font-weight: bold;" class="mycode_b">Oh!</span> I can’t believe how nice you look.<br />
<span style="font-weight: bold;" class="mycode_b">Oops</span>, I dropped the milk and it spilled.</blockquote>
<br />
Interjections may be complete sentences by themselves. On these cases you can't directly dispose of them, instead you'll need to replace them completely, some examples include:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Ouch!<br />
Wow!<br />
Bye!<br />
Oh!<br />
Huh?</blockquote>
<br />
Though you can find <a href="https://www.vidarholen.net/contents/interjections/" target="_blank" rel="noopener" class="mycode_url">multiple</a> interjection <a href="http://www.dailywritingtips.com/100-mostly-small-but-expressive-interjections/" target="_blank" rel="noopener" class="mycode_url">lists</a> all over the Internet, it may be hard to identify if some words are indeed being used as interjections and their meaning. This was specially the case for me with the word "<span style="font-style: italic;" class="mycode_i">why</span>", which I use in my introductory title inside my "about me" page. To find out its meaning and usage I had to dig some research, from which I eventually <a href="http://english.stackexchange.com/questions/16762/where-does-the-use-of-why-as-an-interjection-come-from" target="_blank" rel="noopener" class="mycode_url">figured out its usage</a> as a way to express <span style="font-style: italic;" class="mycode_i">surprise</span>. ¡Vaya!, ¿Quien lo hubiera pensado?<br />
<br />
<div style="text-align: center;" class="mycode_align"><img src="http://i.imgur.com/8eCV85w.png" loading="lazy" alt="[Image: 8eCV85w.png]" class="mycode_img" /><br />
</div>
<br />
Lucky for us, <span style="font-weight: bold;" class="mycode_b">we can find interjections in English as well as in both Spanish (interjecciones) and French (interjections)</span>:<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>¡Ojalá!<br />
¡Venga!<br />
¡Ay!<br />
¡Oye!</blockquote>
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Hein? (Huh?)<br />
Ouf! (Phew!)<br />
Bon! (Fine!)<br />
Miséricorde! (C'mon!)<br />
Chut! (Shss!)</blockquote>
<br />
<span style="font-style: italic;" class="mycode_i">Now</span>, don't confuse interjections with <span style="font-style: italic;" class="mycode_i">muletillas</span>, as they are called in Spanish. Though interjections can all be <span style="font-style: italic;" class="mycode_i">muletillas</span>, not all <span style="font-style: italic;" class="mycode_i">muletillas</span> apply necessarily as interjections.<br />
<br />
That would be all then, uh-oh, see ya!<br />
<br />
References:<br />
<a href="https://en.wikipedia.org/wiki/Interjection" target="_blank" rel="noopener" class="mycode_url">Wikipedia: Interjection</a>,<br />
<a href="https://en.wikipedia.org/wiki/Jakobson's_functions_of_language" target="_blank" rel="noopener" class="mycode_url">Wikipedia: Jakobson's functions of language</a>,<br />
<a href="http://grammar.yourdictionary.com/parts-of-speech/interjections/what-is-an-interjection.html" target="_blank" rel="noopener" class="mycode_url">Your Dictionary: What Is An Interjection?</a>,<br />
<a href="http://www.espacefrancais.com/les-interjections/" target="_blank" rel="noopener" class="mycode_url">Espace Francais: Les Interjections</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="http://i.imgur.com/kol7k6n.jpg" loading="lazy" alt="[Image: kol7k6n.jpg]" class="mycode_img" /><br />
</div>
<br />
<span style="font-weight: bold;" class="mycode_b">Interjection</span> are words or sentences that <span style="font-weight: bold;" class="mycode_b">express spontaneous feelings or reactions</span> and they can be either part of another sentence of form stand-alone sentences by themselves. They are one of the major parts of speech, along verbs, nouns, pronouns, conjunctions, etc. <span style="font-weight: bold;" class="mycode_b">Interjections don't need to be grammatically organized inside the sentence</span> and represent <a href="https://en.wikipedia.org/wiki/Jakobson's_functions_of_language" target="_blank" rel="noopener" class="mycode_url">Jakobson's emotive function of language</a>, described as words or sentences that "<span style="font-style: italic;" class="mycode_i">add information about the speaker's internal state</span>", thus its sole purpose is to convey the author's feeling at the moment and are more commonly used in fiction or artistic writing.<br />
<br />
Another characteristic of such words or expressions is that <span style="font-weight: bold;" class="mycode_b">they can be disposed of without altering the meaning of the sentence</span>. Some examples:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><span style="font-weight: bold;" class="mycode_b">Hurray!</span> It is a snow day and school is canceled.<br />
It is so exciting, <span style="font-weight: bold;" class="mycode_b">my goodness</span>, I just can’t believe it.<br />
Joe was late to school and <span style="font-weight: bold;" class="mycode_b">yikes</span>, the teacher was mad.<br />
<span style="font-weight: bold;" class="mycode_b">Oh!</span> I can’t believe how nice you look.<br />
<span style="font-weight: bold;" class="mycode_b">Oops</span>, I dropped the milk and it spilled.</blockquote>
<br />
Interjections may be complete sentences by themselves. On these cases you can't directly dispose of them, instead you'll need to replace them completely, some examples include:<br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Ouch!<br />
Wow!<br />
Bye!<br />
Oh!<br />
Huh?</blockquote>
<br />
Though you can find <a href="https://www.vidarholen.net/contents/interjections/" target="_blank" rel="noopener" class="mycode_url">multiple</a> interjection <a href="http://www.dailywritingtips.com/100-mostly-small-but-expressive-interjections/" target="_blank" rel="noopener" class="mycode_url">lists</a> all over the Internet, it may be hard to identify if some words are indeed being used as interjections and their meaning. This was specially the case for me with the word "<span style="font-style: italic;" class="mycode_i">why</span>", which I use in my introductory title inside my "about me" page. To find out its meaning and usage I had to dig some research, from which I eventually <a href="http://english.stackexchange.com/questions/16762/where-does-the-use-of-why-as-an-interjection-come-from" target="_blank" rel="noopener" class="mycode_url">figured out its usage</a> as a way to express <span style="font-style: italic;" class="mycode_i">surprise</span>. ¡Vaya!, ¿Quien lo hubiera pensado?<br />
<br />
<div style="text-align: center;" class="mycode_align"><img src="http://i.imgur.com/8eCV85w.png" loading="lazy" alt="[Image: 8eCV85w.png]" class="mycode_img" /><br />
</div>
<br />
Lucky for us, <span style="font-weight: bold;" class="mycode_b">we can find interjections in English as well as in both Spanish (interjecciones) and French (interjections)</span>:<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>¡Ojalá!<br />
¡Venga!<br />
¡Ay!<br />
¡Oye!</blockquote>
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Hein? (Huh?)<br />
Ouf! (Phew!)<br />
Bon! (Fine!)<br />
Miséricorde! (C'mon!)<br />
Chut! (Shss!)</blockquote>
<br />
<span style="font-style: italic;" class="mycode_i">Now</span>, don't confuse interjections with <span style="font-style: italic;" class="mycode_i">muletillas</span>, as they are called in Spanish. Though interjections can all be <span style="font-style: italic;" class="mycode_i">muletillas</span>, not all <span style="font-style: italic;" class="mycode_i">muletillas</span> apply necessarily as interjections.<br />
<br />
That would be all then, uh-oh, see ya!<br />
<br />
References:<br />
<a href="https://en.wikipedia.org/wiki/Interjection" target="_blank" rel="noopener" class="mycode_url">Wikipedia: Interjection</a>,<br />
<a href="https://en.wikipedia.org/wiki/Jakobson's_functions_of_language" target="_blank" rel="noopener" class="mycode_url">Wikipedia: Jakobson's functions of language</a>,<br />
<a href="http://grammar.yourdictionary.com/parts-of-speech/interjections/what-is-an-interjection.html" target="_blank" rel="noopener" class="mycode_url">Your Dictionary: What Is An Interjection?</a>,<br />
<a href="http://www.espacefrancais.com/les-interjections/" target="_blank" rel="noopener" class="mycode_url">Espace Francais: Les Interjections</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[The Difference Between Two-Factor Authentication and Two-Step Verification]]></title>
			<link>https://omarg.me/thread?public/blog/technologie-the-difference-between-two-factor-authentication-and-two-step-verification</link>
			<pubDate>Fri, 07 Oct 2016 08:38:58 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://omarg.me/member.php?action=profile&uid=1">Omar G.</a>]]></dc:creator>
			<guid isPermaLink="false">https://omarg.me/thread?public/blog/technologie-the-difference-between-two-factor-authentication-and-two-step-verification</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="http://i.imgur.com/8CNYrE7.jpg" loading="lazy" alt="[Image: 8CNYrE7.jpg]" class="mycode_img" /><br />
</div>
<br />
Even if you know you should use two-factor authentication whenever possible, you may be aware that there is also "<span style="font-style: italic;" class="mycode_i">two-step</span>" authentication. Over at Lifehacker, they explain the difference between both types of extra security methods.<br />
<br />
Basically, <span style="font-weight: bold;" class="mycode_b">two-step authentication</span> (<span style="font-style: italic;" class="mycode_i">2SV / two-step verification</span>) includes any service that make use of, for example, <span style="font-style: italic;" class="mycode_i">Google Authenticator</span> or SMS codes as additional methods to access to an account. While, on the other side, <span style="font-weight: bold;" class="mycode_b">two-factor authentication</span> (<span style="font-style: italic;" class="mycode_i">2FA</span>) is any service that requires at least two authentication mechanisms, and where two of those mechanisms fall under different categories with respect to: knowledge factors ("<span style="font-style: italic;" class="mycode_i">something you know</span>"), possession factors ("<span style="font-style: italic;" class="mycode_i">something you have</span>"), and inherence factors ("<span style="font-style: italic;" class="mycode_i">something you are</span>"). Smart cards and USB keys with the FIDO technology would fall into the two-factor authentication mechanisms.<br />
<br />
<a href="http://lifehacker.com/the-difference-between-two-factor-and-two-step-authenti-1787159870" target="_blank" rel="noopener" class="mycode_url">Lifechaker</a>, <a href="https://www.grahamcluley.com/factor-authentication-2fa-versus-step-verification-2sv/" target="_blank" rel="noopener" class="mycode_url">GrahamCluley</a>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="http://i.imgur.com/8CNYrE7.jpg" loading="lazy" alt="[Image: 8CNYrE7.jpg]" class="mycode_img" /><br />
</div>
<br />
Even if you know you should use two-factor authentication whenever possible, you may be aware that there is also "<span style="font-style: italic;" class="mycode_i">two-step</span>" authentication. Over at Lifehacker, they explain the difference between both types of extra security methods.<br />
<br />
Basically, <span style="font-weight: bold;" class="mycode_b">two-step authentication</span> (<span style="font-style: italic;" class="mycode_i">2SV / two-step verification</span>) includes any service that make use of, for example, <span style="font-style: italic;" class="mycode_i">Google Authenticator</span> or SMS codes as additional methods to access to an account. While, on the other side, <span style="font-weight: bold;" class="mycode_b">two-factor authentication</span> (<span style="font-style: italic;" class="mycode_i">2FA</span>) is any service that requires at least two authentication mechanisms, and where two of those mechanisms fall under different categories with respect to: knowledge factors ("<span style="font-style: italic;" class="mycode_i">something you know</span>"), possession factors ("<span style="font-style: italic;" class="mycode_i">something you have</span>"), and inherence factors ("<span style="font-style: italic;" class="mycode_i">something you are</span>"). Smart cards and USB keys with the FIDO technology would fall into the two-factor authentication mechanisms.<br />
<br />
<a href="http://lifehacker.com/the-difference-between-two-factor-and-two-step-authenti-1787159870" target="_blank" rel="noopener" class="mycode_url">Lifechaker</a>, <a href="https://www.grahamcluley.com/factor-authentication-2fa-versus-step-verification-2sv/" target="_blank" rel="noopener" class="mycode_url">GrahamCluley</a>]]></content:encoded>
		</item>
	</channel>
</rss>