<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: PontiacParade</title><link>https://news.ycombinator.com/user?id=PontiacParade</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 16 May 2026 12:05:44 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=PontiacParade" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by PontiacParade in "Portlander creates AI-powered device to monitor street health"]]></title><description><![CDATA[
<p>This is great. I have been thinking of building something similar to track how many cars are speeding on my street so I have data for discussing changes with the neighborhood and local government.<p>This is just an all around better concept than mine. Love all the extra data it can gather. Especially living near schools having the data of cyclists and pedestrians will make a much better data set around safety and methods to tamp down on speeding and cut through traffic.</p>
]]></description><pubDate>Sat, 29 Mar 2025 20:05:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=43518264</link><dc:creator>PontiacParade</dc:creator><comments>https://news.ycombinator.com/item?id=43518264</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43518264</guid></item><item><title><![CDATA[New comment by PontiacParade in "Why is Ally Bank abandoning email 2FA?"]]></title><description><![CDATA[
<p>I too am pretty disappointed with the change. I'll be looking for alternatives. I sent them a message in product asking them to add other options.</p>
]]></description><pubDate>Thu, 08 Dec 2022 23:25:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=33915248</link><dc:creator>PontiacParade</dc:creator><comments>https://news.ycombinator.com/item?id=33915248</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33915248</guid></item><item><title><![CDATA[New comment by PontiacParade in "Tell HN: 1Password shares passwords you don't want shared"]]></title><description><![CDATA[
<p>This is not a problem I have, this may be helpful:<p><a href="https://1password.community/discussion/30903/how-to-reveal-passwords-by-default-resolved-select-setting-in-view-menu" rel="nofollow">https://1password.community/discussion/30903/how-to-reveal-p...</a></p>
]]></description><pubDate>Thu, 17 Feb 2022 15:00:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=30373737</link><dc:creator>PontiacParade</dc:creator><comments>https://news.ycombinator.com/item?id=30373737</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30373737</guid></item><item><title><![CDATA[New comment by PontiacParade in "How I learned to stop worrying and push to master"]]></title><description><![CDATA[
<p>The develop/main split for us is not costly I'm not sure what overhead others are incurring there. We run deploys on demand throughout each day. We don't have the same sign off process or block other deploys. We just send develop to staging and once it is confirmed good we merge it to main and then out to production.<p>> IMO you don't gain a lot by merging something that doesn't have a user-facing deliverable (how can you be sure the code you're merging is right or not?).<p>I disagree but to each his own. I think you can release small parts with testing around it. I often release half of a back end feature, then the other half, then the front end all in separate branches and releases. All I really need is to have the parts broken down into logical testable chunks.</p>
]]></description><pubDate>Fri, 17 Dec 2021 15:51:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=29593817</link><dc:creator>PontiacParade</dc:creator><comments>https://news.ycombinator.com/item?id=29593817</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29593817</guid></item><item><title><![CDATA[New comment by PontiacParade in "How I learned to stop worrying and push to master"]]></title><description><![CDATA[
<p>We really only have staging/production so it works great for us, we don't have to support multiple releases at the same time. I agree it gets more difficult if that is a concern.</p>
]]></description><pubDate>Fri, 17 Dec 2021 15:44:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=29593716</link><dc:creator>PontiacParade</dc:creator><comments>https://news.ycombinator.com/item?id=29593716</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29593716</guid></item><item><title><![CDATA[New comment by PontiacParade in "How I learned to stop worrying and push to master"]]></title><description><![CDATA[
<p>Sorry, I didn't mean to imply that the branch is named for the JIRA ticket. I personally like to have the ticket number in the branch name along with a description though. It was more that each ticket branch is for a small chunk of work that can be merged and deployed when a single ticket is complete not when the whole feature is complete.</p>
]]></description><pubDate>Fri, 17 Dec 2021 15:41:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=29593644</link><dc:creator>PontiacParade</dc:creator><comments>https://news.ycombinator.com/item?id=29593644</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29593644</guid></item><item><title><![CDATA[New comment by PontiacParade in "How I learned to stop worrying and push to master"]]></title><description><![CDATA[
<p>I agree with the middle ground comment. That is how we tend to do things where I work.<p>We have a modified GitFlow:
main: is the source of truth and is what is in production.
develop: is the constantly moving branch we make PRs against. You can commit directly here which is discouraged but it isn't a hard rule.
ticket: is a branch for each JIRA ticket not each feature.
release: We don't make these and just use tags on main. Each "release" is a merge from develop to main and that gets deployed.
hot fix: These are made against main and merged back to develop when they are used. It is rare enough I have to look up our "official" procedure.<p>With that we can easily use PRs, release code in small hidden chunks, do code reviews, etc.<p>Seems like the big win they got was releasing small hidden chunks of a feature and deploying it to staging. They also gave up some nice things as well like code review before merging.</p>
]]></description><pubDate>Fri, 17 Dec 2021 01:08:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=29586389</link><dc:creator>PontiacParade</dc:creator><comments>https://news.ycombinator.com/item?id=29586389</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29586389</guid></item><item><title><![CDATA[New comment by PontiacParade in "U.S. house prices are rising exponentially faster than income"]]></title><description><![CDATA[
<p>Great write up. I hold the same view but hadn't written it out in such a way. Thanks!</p>
]]></description><pubDate>Sat, 30 Oct 2021 17:53:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=29050829</link><dc:creator>PontiacParade</dc:creator><comments>https://news.ycombinator.com/item?id=29050829</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29050829</guid></item><item><title><![CDATA[New comment by PontiacParade in "The main thing about Phenylacetone meth is that there's so much of it"]]></title><description><![CDATA[
<p>We'll be there soon. You still need a prescription in Oregon until Jan 1, 2022.</p>
]]></description><pubDate>Thu, 28 Oct 2021 19:48:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=29030876</link><dc:creator>PontiacParade</dc:creator><comments>https://news.ycombinator.com/item?id=29030876</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29030876</guid></item><item><title><![CDATA[New comment by PontiacParade in "Apple requires account deletion within apps in AppStore starting January 31"]]></title><description><![CDATA[
<p>I had the same experience. Very simple with only one retention step of offering a discount. Once declined I could cancel.</p>
]]></description><pubDate>Wed, 06 Oct 2021 20:16:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=28777877</link><dc:creator>PontiacParade</dc:creator><comments>https://news.ycombinator.com/item?id=28777877</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28777877</guid></item><item><title><![CDATA[New comment by PontiacParade in "LastPass stores passwords so securely, not even its users can access them"]]></title><description><![CDATA[
<p>I believe it stands for Private Equity Group.</p>
]]></description><pubDate>Mon, 20 Jan 2020 19:21:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=22101383</link><dc:creator>PontiacParade</dc:creator><comments>https://news.ycombinator.com/item?id=22101383</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22101383</guid></item></channel></rss>