<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: samstr</title><link>https://news.ycombinator.com/user?id=samstr</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 01 Jun 2026 22:57:06 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=samstr" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by samstr in "Monument Valley in Numbers: Year 2"]]></title><description><![CDATA[
<p>I would love a set of new levels once a year, as an annual tradition at the start of the summer. Whatever new add-ons they create, I'll be paying for and downloading immediately. Such a great game. I replay it every few months (enough time for the levels to feel fresh)</p>
]]></description><pubDate>Mon, 23 May 2016 15:14:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=11754367</link><dc:creator>samstr</dc:creator><comments>https://news.ycombinator.com/item?id=11754367</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=11754367</guid></item><item><title><![CDATA[New comment by samstr in "$10 In-N-Out delivery to anywhere in SF"]]></title><description><![CDATA[
<p>That is only because TaskRabbit have been around longer. I think this space will get seriously interesting - but Postmates will take the crown.</p>
]]></description><pubDate>Sun, 29 Jul 2012 23:46:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=4310208</link><dc:creator>samstr</dc:creator><comments>https://news.ycombinator.com/item?id=4310208</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4310208</guid></item><item><title><![CDATA[New comment by samstr in "$10 In-N-Out delivery to anywhere in SF"]]></title><description><![CDATA[
<p>Yes and Postmates is available 16 hours a day, on weekends as well. TaskRabbit operates "business hours on week days" only.</p>
]]></description><pubDate>Sun, 29 Jul 2012 23:43:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=4310195</link><dc:creator>samstr</dc:creator><comments>https://news.ycombinator.com/item?id=4310195</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4310195</guid></item><item><title><![CDATA[New comment by samstr in "Get Exec to Volunteer for Charity on your Behalf"]]></title><description><![CDATA[
<p>Ridiculous</p>
]]></description><pubDate>Wed, 25 Jul 2012 20:40:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=4292904</link><dc:creator>samstr</dc:creator><comments>https://news.ycombinator.com/item?id=4292904</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4292904</guid></item><item><title><![CDATA[New comment by samstr in "Show HN: movies.io — torrent search like it should be"]]></title><description><![CDATA[
<p>Everyone pirates everything and no one feels sad.</p>
]]></description><pubDate>Sat, 02 Jun 2012 14:48:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=4058175</link><dc:creator>samstr</dc:creator><comments>https://news.ycombinator.com/item?id=4058175</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=4058175</guid></item><item><title><![CDATA[New comment by samstr in "Ask HN: losing faith in the startup where I'm employee #1"]]></title><description><![CDATA[
<p>Such a vague reason might not be so easy in a team of 3 who have become close over the course of a year. Different story in a larger company.</p>
]]></description><pubDate>Sun, 13 May 2012 15:36:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=3967247</link><dc:creator>samstr</dc:creator><comments>https://news.ycombinator.com/item?id=3967247</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=3967247</guid></item><item><title><![CDATA[New comment by samstr in "4chan switches to HTML5/CSS3 (SFW)"]]></title><description><![CDATA[
<p>Well done I guess... heh<p><i>slow clap</i></p>
]]></description><pubDate>Sat, 28 Apr 2012 15:18:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=3903146</link><dc:creator>samstr</dc:creator><comments>https://news.ycombinator.com/item?id=3903146</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=3903146</guid></item><item><title><![CDATA[New comment by samstr in "Show HN: Visualizing Postmates' first 1000 deliveries in San Francisco"]]></title><description><![CDATA[
<p>Hey there,<p>I developed the site but we have our amazing head of design, Skyler, to thank for the beautiful layout.<p>The First1000 site is entirely native javascript/html5/css3. No jQuery or frameworks. I believe that frameworks are fantastic but only if you are utilizing their full potential. In the past I've included jQuery for random bits and pieces but I found myself coding around it and I really don't like including a library where I only use a couple of its functions.<p>Here are some of the cool things we included.<p>Multiple background images in CSS3. This is a beautiful thing. We should rarely have to nest divs inside divs to achieve a layered background effect now.<p>Transitions (Webkit, Mozilla, Opera etc have their own implementations) for most of the animations you see on the site. I found myself using the transiton-delay: property a fair bit too. This is really helpful as you can set a delay before the animation start point.
Using delays is how we make the flip cards start from the top left and gradually flip over to the bottom right. Each group of flipcards (diagonally) are given a different transition-delay.
We transition opacity, width/height, top/left positioned coords and background-colors.<p>We use Transforms to achieve rotation. Each card has a slightly different angle ranging from -3deg to 3deg. If I had NOT been using transforms then I imagine each card would have been a nightmare to implement at an angle like that. It would have taken forever and I would have had to use images for the text. Thankfully you can transform an entire div (and its contents, of course) with ease in CSS3.<p>As you scroll down the page you'll notice the switches on the right highlighting depending on which card you are viewing. jQuery has plugins for this kind of thing (to see if an element is visible in the current viewport - <a href="http://remysharp.com/2009/01/26/element-in-view-event-plugin" rel="nofollow">http://remysharp.com/2009/01/26/element-in-view-event-plugin</a>) but I thought it would be a nice challenge to achieve this effect with native javascript.<p>For things like numeric figures ascending from 0 to 5700 (for example) I used javascript's setInterval() function with a very short interval adding +10 to the innerHTML of the container. The loop breaks and clearInterval() is called, stopping the loop when the desired number, 5700 is reached.<p>I used a lot more absolute positioning that I would like to, but it worked out very well.<p>Transparent PNGs positioned above each card give the 'noise' effect.<p>I took advantage of lossless PNG compression (using Google Page Speed), and minified our CSS and Javascript.<p>Other cool things like text-shadow to make text appear to be slightly raised, or impressed always come in handy too.<p>Thanks :)</p>
]]></description><pubDate>Thu, 15 Dec 2011 22:04:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=3358244</link><dc:creator>samstr</dc:creator><comments>https://news.ycombinator.com/item?id=3358244</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=3358244</guid></item></channel></rss>