<?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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	
	>
<channel>
	<title>
	Comments for Pietari Heino&#039;s personal website	</title>
	<atom:link href="https://www.extreg.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.extreg.com/</link>
	<description></description>
	<lastBuildDate>Wed, 22 Jan 2020 07:32:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.10</generator>
	<item>
		<title>
		Comment on GCS Service Account private key not working from env? by Pietari		</title>
		<link>https://www.extreg.com/blog/2017/12/gcs-service-account-private-key-not-working-env/#comment-18231</link>

		<dc:creator><![CDATA[Pietari]]></dc:creator>
		<pubDate>Wed, 22 Jan 2020 07:32:00 +0000</pubDate>
		<guid isPermaLink="false">https://extreg.com/?p=259#comment-18231</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.extreg.com/blog/2017/12/gcs-service-account-private-key-not-working-env/#comment-18217&quot;&gt;Lou&lt;/a&gt;.

Haha, yes it was a reeaal PITA :--D]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.extreg.com/blog/2017/12/gcs-service-account-private-key-not-working-env/#comment-18217">Lou</a>.</p>
<p>Haha, yes it was a reeaal PITA :&#8211;D</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on GCS Service Account private key not working from env? by Lou		</title>
		<link>https://www.extreg.com/blog/2017/12/gcs-service-account-private-key-not-working-env/#comment-18217</link>

		<dc:creator><![CDATA[Lou]]></dc:creator>
		<pubDate>Wed, 22 Jan 2020 05:16:40 +0000</pubDate>
		<guid isPermaLink="false">https://extreg.com/?p=259#comment-18217</guid>

					<description><![CDATA[Thanks! I found this immediately. Looks like you saved me a lot of headache. 

const privKey = process.env.PRIVATE_KEY.replace(/\\n/g, &#039;\n&#039;); 

Worked like a charm!]]></description>
			<content:encoded><![CDATA[<p>Thanks! I found this immediately. Looks like you saved me a lot of headache. </p>
<p>const privKey = process.env.PRIVATE_KEY.replace(/\\n/g, &#8216;\n&#8217;); </p>
<p>Worked like a charm!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Chrome password manager is slow [fixed] by Andy Galloway		</title>
		<link>https://www.extreg.com/blog/2016/07/chrome-password-manager-is-slow/#comment-14014</link>

		<dc:creator><![CDATA[Andy Galloway]]></dc:creator>
		<pubDate>Wed, 11 Dec 2019 17:40:09 +0000</pubDate>
		<guid isPermaLink="false">https://extreg.com/?p=60#comment-14014</guid>

					<description><![CDATA[This worked for me. After weeks of agonizing over whether to reset my Chrome settings, I finally bit the bullet. Within 1 minute it was all fixed, my passwords were loading within a fraction of a second. 

To reset your Chrome settings, click on the three dots (ellipsis) in the top right of the browser and select &quot;Settings&quot;. At the bottom of the page select &quot;Advanced&quot; then at the bottom of the (expanded) page under &quot;
Reset and clean up&quot;, select &quot;Restore settings to their original defaults&quot;. Click the blue &quot;Reset settings&quot; button. All fixed in under a minute.]]></description>
			<content:encoded><![CDATA[<p>This worked for me. After weeks of agonizing over whether to reset my Chrome settings, I finally bit the bullet. Within 1 minute it was all fixed, my passwords were loading within a fraction of a second. </p>
<p>To reset your Chrome settings, click on the three dots (ellipsis) in the top right of the browser and select &#8220;Settings&#8221;. At the bottom of the page select &#8220;Advanced&#8221; then at the bottom of the (expanded) page under &#8221;<br />
Reset and clean up&#8221;, select &#8220;Restore settings to their original defaults&#8221;. Click the blue &#8220;Reset settings&#8221; button. All fixed in under a minute.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Using D3 and Puppeteer to generate visualizations by Pietari		</title>
		<link>https://www.extreg.com/blog/2018/04/using-d3-and-puppeteer-to-generate-visualizations/#comment-10502</link>

		<dc:creator><![CDATA[Pietari]]></dc:creator>
		<pubDate>Sat, 09 Nov 2019 09:48:36 +0000</pubDate>
		<guid isPermaLink="false">https://www.extreg.com/?p=310#comment-10502</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.extreg.com/blog/2018/04/using-d3-and-puppeteer-to-generate-visualizations/#comment-10469&quot;&gt;Springfield Yonga&lt;/a&gt;.

I used &lt;code&gt;page.waitForSelector()&lt;/code&gt;. With the &lt;code&gt;waitForSelector&lt;/code&gt; method you may tell the page object to suspend execution until an element is visible. So basically if you render an SVG with an id &quot;result&quot;, you could just say &lt;code&gt;await page.waitForSelector(&#039;#result&#039;)&lt;/code&gt; and after it resumes, the rendered result may be caught via screenshot or whatever. 

You may find more about the &lt;code&gt;waitForSelector&lt;/code&gt; API here: https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagewaitforselectorselector-options]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.extreg.com/blog/2018/04/using-d3-and-puppeteer-to-generate-visualizations/#comment-10469">Springfield Yonga</a>.</p>
<p>I used <code>page.waitForSelector()</code>. With the <code>waitForSelector</code> method you may tell the page object to suspend execution until an element is visible. So basically if you render an SVG with an id &#8220;result&#8221;, you could just say <code>await page.waitForSelector('#result')</code> and after it resumes, the rendered result may be caught via screenshot or whatever. </p>
<p>You may find more about the <code>waitForSelector</code> API here: <a href="https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagewaitforselectorselector-options" rel="nofollow ugc">https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagewaitforselectorselector-options</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Using D3 and Puppeteer to generate visualizations by Springfield Yonga		</title>
		<link>https://www.extreg.com/blog/2018/04/using-d3-and-puppeteer-to-generate-visualizations/#comment-10469</link>

		<dc:creator><![CDATA[Springfield Yonga]]></dc:creator>
		<pubDate>Fri, 08 Nov 2019 12:32:07 +0000</pubDate>
		<guid isPermaLink="false">https://www.extreg.com/?p=310#comment-10469</guid>

					<description><![CDATA[how did you wait for puppeteer to finish loading all the js and executing and and drawing the various charts before printing the png.]]></description>
			<content:encoded><![CDATA[<p>how did you wait for puppeteer to finish loading all the js and executing and and drawing the various charts before printing the png.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on GCS Service Account private key not working from env? by Isaac Anderson		</title>
		<link>https://www.extreg.com/blog/2017/12/gcs-service-account-private-key-not-working-env/#comment-1363</link>

		<dc:creator><![CDATA[Isaac Anderson]]></dc:creator>
		<pubDate>Mon, 25 Mar 2019 20:45:40 +0000</pubDate>
		<guid isPermaLink="false">https://extreg.com/?p=259#comment-1363</guid>

					<description><![CDATA[This was KILLING ME until I finally happened upon this solution. Thank you!]]></description>
			<content:encoded><![CDATA[<p>This was KILLING ME until I finally happened upon this solution. Thank you!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on My first talk [Mistä Nyssetutka on tehty] by Riittakerttu Kaltiala-Heino		</title>
		<link>https://www.extreg.com/blog/2017/10/first-talk-mista-nyssetutka-tehty/#comment-436</link>

		<dc:creator><![CDATA[Riittakerttu Kaltiala-Heino]]></dc:creator>
		<pubDate>Sun, 22 Oct 2017 14:58:22 +0000</pubDate>
		<guid isPermaLink="false">https://extreg.com/?p=223#comment-436</guid>

					<description><![CDATA[Congratulations for a successful first talk!]]></description>
			<content:encoded><![CDATA[<p>Congratulations for a successful first talk!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on E2E testing with headless Chrome and Nightwatch by Ronak Chovatiya		</title>
		<link>https://www.extreg.com/blog/2017/07/e2e-testing-headless-chrome-nightwatch/#comment-426</link>

		<dc:creator><![CDATA[Ronak Chovatiya]]></dc:creator>
		<pubDate>Thu, 05 Oct 2017 15:27:32 +0000</pubDate>
		<guid isPermaLink="false">https://extreg.com/?p=209#comment-426</guid>

					<description><![CDATA[Dude Thanks so much! this helped a ton.. simple and quick fix.]]></description>
			<content:encoded><![CDATA[<p>Dude Thanks so much! this helped a ton.. simple and quick fix.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Chrome password manager is slow [fixed] by Pietari		</title>
		<link>https://www.extreg.com/blog/2016/07/chrome-password-manager-is-slow/#comment-125</link>

		<dc:creator><![CDATA[Pietari]]></dc:creator>
		<pubDate>Mon, 14 Nov 2016 18:49:45 +0000</pubDate>
		<guid isPermaLink="false">https://extreg.com/?p=60#comment-125</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.extreg.com/blog/2016/07/chrome-password-manager-is-slow/#comment-78&quot;&gt;bob&lt;/a&gt;.

Check out the links I added to the post!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.extreg.com/blog/2016/07/chrome-password-manager-is-slow/#comment-78">bob</a>.</p>
<p>Check out the links I added to the post!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Chrome password manager is slow [fixed] by Pietari		</title>
		<link>https://www.extreg.com/blog/2016/07/chrome-password-manager-is-slow/#comment-79</link>

		<dc:creator><![CDATA[Pietari]]></dc:creator>
		<pubDate>Mon, 31 Oct 2016 18:50:44 +0000</pubDate>
		<guid isPermaLink="false">https://extreg.com/?p=60#comment-79</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.extreg.com/blog/2016/07/chrome-password-manager-is-slow/#comment-74&quot;&gt;Perry Bernard&lt;/a&gt;.

No, haven&#039;t had the time to do it yet. If anyone wants to dig around and file a bug report, this is the place to do so: https://crbug.com]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.extreg.com/blog/2016/07/chrome-password-manager-is-slow/#comment-74">Perry Bernard</a>.</p>
<p>No, haven&#8217;t had the time to do it yet. If anyone wants to dig around and file a bug report, this is the place to do so: <a href="https://crbug.com" rel="nofollow ugc">https://crbug.com</a></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
