<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Anglais &#8211; Kodono</title>
	<atom:link href="https://blog.kodono.info/wordpress/tag/anglais/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.kodono.info/wordpress</link>
	<description>Pour tous les technophiles</description>
	<lastBuildDate>Fri, 30 Dec 2022 14:37:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>spfx error: No development certificate found. Generate a new certificate manually, or set the `canGenerateNewCertificate` parameter to `true` when calling `ensureCertificateAsync`</title>
		<link>https://blog.kodono.info/wordpress/2022/12/30/spfx-error-no-development-certificate-found-generate-a-new-certificate-manually-or-set-the-cangeneratenewcertificate-parameter-to-true-when-calling-ensurecertificateasync/</link>
					<comments>https://blog.kodono.info/wordpress/2022/12/30/spfx-error-no-development-certificate-found-generate-a-new-certificate-manually-or-set-the-cangeneratenewcertificate-parameter-to-true-when-calling-ensurecertificateasync/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Fri, 30 Dec 2022 14:37:21 +0000</pubDate>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Niveau débutant]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[Anglais]]></category>
		<guid isPermaLink="false">https://blog.kodono.info/wordpress/?p=2225</guid>

					<description><![CDATA[When using the command gulp serve, you could receive the below error: No development certificate found. Generate a new certificate manually, or set the `canGenerateNewCertificate` parameter to `true` when calling `ensureCertificateAsync` To resolve, you can type gulp trust-dev-cert.]]></description>
										<content:encoded><![CDATA[<p>When using the command <code>gulp serve</code>, you could receive the below error:</p>
<blockquote><p>No development certificate found. Generate a new certificate manually, or set the `canGenerateNewCertificate` parameter to `true` when calling `ensureCertificateAsync`</p></blockquote>
<p>To resolve, you can type <code>gulp trust-dev-cert</code>.</p>
<p><a href="https://blog.kodono.info/wordpress/wp-content/uploads/2022/12/spfx_error.png"><img fetchpriority="high" decoding="async" src="https://blog.kodono.info/wordpress/wp-content/uploads/2022/12/spfx_error-1024x332.png" alt="" width="1024" height="332" class="aligncenter size-large wp-image-2226" srcset="https://blog.kodono.info/wordpress/wp-content/uploads/2022/12/spfx_error-1024x332.png 1024w, https://blog.kodono.info/wordpress/wp-content/uploads/2022/12/spfx_error-300x97.png 300w, https://blog.kodono.info/wordpress/wp-content/uploads/2022/12/spfx_error-768x249.png 768w, https://blog.kodono.info/wordpress/wp-content/uploads/2022/12/spfx_error-1536x499.png 1536w, https://blog.kodono.info/wordpress/wp-content/uploads/2022/12/spfx_error.png 1891w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2022/12/30/spfx-error-no-development-certificate-found-generate-a-new-certificate-manually-or-set-the-cangeneratenewcertificate-parameter-to-true-when-calling-ensurecertificateasync/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Detect mobile in JavaScript</title>
		<link>https://blog.kodono.info/wordpress/2022/08/01/detect-mobile-in-javascript/</link>
					<comments>https://blog.kodono.info/wordpress/2022/08/01/detect-mobile-in-javascript/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Mon, 01 Aug 2022 13:58:31 +0000</pubDate>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Niveau débutant]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[Anglais]]></category>
		<guid isPermaLink="false">https://blog.kodono.info/wordpress/?p=2160</guid>

					<description><![CDATA[We could simply check the resolution or user agent: const isMobile = Math.min(window.screen.width, window.screen.height) < 768 &#124;&#124; navigator.userAgent.indexOf("Mobile") > -1;]]></description>
										<content:encoded><![CDATA[<p>We could simply check the resolution or user agent:</p>
<pre class="brush:javascript">
const isMobile = Math.min(window.screen.width, window.screen.height) < 768 || navigator.userAgent.indexOf("Mobile") > -1;
</pre>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2022/08/01/detect-mobile-in-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Send an email to several recipients from a String in a workflow [Sharepoint 2013]</title>
		<link>https://blog.kodono.info/wordpress/2016/06/28/send-an-email-to-several-recipients-from-a-string-in-a-workflow-sharepoint-2013/</link>
					<comments>https://blog.kodono.info/wordpress/2016/06/28/send-an-email-to-several-recipients-from-a-string-in-a-workflow-sharepoint-2013/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Tue, 28 Jun 2016 07:22:44 +0000</pubDate>
				<category><![CDATA[Astuce]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Niveau intermédiaire]]></category>
		<category><![CDATA[Anglais]]></category>
		<category><![CDATA[Sharepoint 2013]]></category>
		<category><![CDATA[workflow]]></category>
		<guid isPermaLink="false">https://blog.kodono.info/wordpress/?p=1665</guid>

					<description><![CDATA[I found the case in which I have to send 1 email to several recipients. I have the names stored into a Sharepoint list. Using REST API and a call into my Workflow I&#8217;ve been able to get a list of login names (using $expand=MyUserField and $select=MyUserField/Name), then you just need to concatenate them separate [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I found the case in which I have to send 1 email to several recipients. I have the names stored into a Sharepoint list.</p>
<p>Using REST API and a call into my Workflow I&#8217;ve been able to get a list of login names (using <code>$expand=MyUserField</code> and <code>$select=MyUserField/Name</code>), then you just need to concatenate them separate by <code>;</code>.</p>
<p>At the end you should have a string that looks like <code>domain\login_name1;domain\login_name2;domain\login_name3;</code> into yout <em>To</em> field for the email.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2016/06/28/send-an-email-to-several-recipients-from-a-string-in-a-workflow-sharepoint-2013/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
