<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: bhousel</title><link>https://news.ycombinator.com/user?id=bhousel</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 24 Apr 2026 19:51:13 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=bhousel" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by bhousel in "Congrats! Web scraping is legal! (US precedent)"]]></title><description><![CDATA[
<p>We can use your help mapping all the businesses of the world!<p><a href="https://www.alltheplaces.xyz/" rel="nofollow">https://www.alltheplaces.xyz/</a></p>
]]></description><pubDate>Wed, 29 Jan 2020 14:31:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=22180843</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=22180843</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22180843</guid></item><item><title><![CDATA[New comment by bhousel in "My OpenStreetMap Workflow: Mapping the Village of Marmari, Evia"]]></title><description><![CDATA[
<p>Thanks for the kind words!  I'm one of the maintainers, and we are always eager to hear what new users think of it.</p>
]]></description><pubDate>Tue, 01 Oct 2019 17:55:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=21128498</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=21128498</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21128498</guid></item><item><title><![CDATA[I built a wind map with WebGL (2017)]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.mapbox.com/how-i-built-a-wind-map-with-webgl-b63022b5537f">https://blog.mapbox.com/how-i-built-a-wind-map-with-webgl-b63022b5537f</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=21095448">https://news.ycombinator.com/item?id=21095448</a></p>
<p>Points: 112</p>
<p># Comments: 26</p>
]]></description><pubDate>Fri, 27 Sep 2019 19:26:31 +0000</pubDate><link>https://blog.mapbox.com/how-i-built-a-wind-map-with-webgl-b63022b5537f</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=21095448</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21095448</guid></item><item><title><![CDATA[New comment by bhousel in "Frustrations with React Hooks"]]></title><description><![CDATA[
<p>Ah yeah, hooks are strange at first..<p>They didn't click for me until I read this netlify blog post: <a href="https://www.netlify.com/blog/2019/03/11/deep-dive-how-do-react-hooks-really-work/" rel="nofollow">https://www.netlify.com/blog/2019/03/11/deep-dive-how-do-rea...</a><p>If you think of them as mostly just syntactic sugar for closure state variables wrapped up in the module pattern, it's not so bad.  (This is how some of us have been writing D3.js code for years!)</p>
]]></description><pubDate>Tue, 10 Sep 2019 15:48:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=20929488</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=20929488</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=20929488</guid></item><item><title><![CDATA[New comment by bhousel in "Minify Your SVGs"]]></title><description><![CDATA[
<p>Fun fact!  SVG is one of those things that is often easy to minify down below your nginx/apache/cdn minimum gzip length.<p>If your SVG files are < ~1kb, it's usually faster to just not gzip them.  
If they're < ~150b, gzipping will probably make both slower _and_ bigger.</p>
]]></description><pubDate>Tue, 13 Aug 2019 19:50:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=20689556</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=20689556</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=20689556</guid></item><item><title><![CDATA[New comment by bhousel in "Browsers are pretty good at loading pages"]]></title><description><![CDATA[
<p>I see lots of responses to this article asking "why client-side navigation?".  I can share my own experience with building an app a few months ago, and how/why I switched to a client-side single-page app..<p>The app is this:  <a href="https://osmlab.github.io/name-suggestion-index/index.html" rel="nofollow">https://osmlab.github.io/name-suggestion-index/index.html</a><p>It is a worldwide list of brands that have been seeded with OpenStreetMap data, and which volunteers have linked to Wikidata identifiers.  We use this data in OpenStreetMap editors to help people add branded businesses.  Pretty cool!<p>1. We had data in `.json` files (but not too much data) and we wanted to show it to people working on the project so that they could review the brands.<p>2. I spent a day or two and built a static document generator.  It took our data and spit out an `index.html` and few hundred `whatever.html` files.  This worked really well.  As the article says, "browsers are pretty good at loading pages".  A side benefit - Google is really good at indexing content like this.<p>3. Then users made the obvious request: "I want to filter the data.  Let me type a search string and only show matching brands.  Or brands that appear in a certain country".<p>4. OK, SO.. If your data is spread out over a few hundred files, short answer - you can't do this.<p>5. But the data is _really_ only a few megabytes of `.json`.  I spent a few days to learn React and switch to a single-page client side app so that we can filter across all of it.  The new version uses hooks to fetch the few `.json` files that it needs, `react-router` to handle navigation between the index and the category pages.  It works pretty ok!  Most people would stop here.<p>6. The first version with client-side filtering performed good enough, but not great.  The reason was because, as users type these things happen:  The filters get applied, the React components get a new list of brands passed in as props, and React re-renders these new lists to the virtual DOM, and eventually, slowly, the real DOM.<p>7. It's really easy to build React code like this, and many people do.  But it is better to avoid DOM changes in the first place.  I changed the components so that the lists stay the same, but filtered things just get classed as hidden `display:none` instead of being added and removed from the DOM, and performance is much better now.<p>Anyway hope this is helpful to someone!</p>
]]></description><pubDate>Sun, 21 Jul 2019 21:09:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=20493686</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=20493686</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=20493686</guid></item><item><title><![CDATA[New comment by bhousel in "Paying for Open Source Contributions"]]></title><description><![CDATA[
<p>> Realistically, we can't pay people full engineering salaries to do random OSS.<p>Why can't you?<p>Professors get paid full professor salaries to do "random research".<p>Doctors get paid full doctor salaries to treat "random illnesses".<p>I expect if you looked a bit closer, you'll find that "Random OSS" is maintenance that makes the entire ecosystem possible.  Would love to hear from some of your engineers  what they are doing to earn that $20/hr.</p>
]]></description><pubDate>Fri, 03 May 2019 15:02:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=19819041</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=19819041</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19819041</guid></item><item><title><![CDATA[New comment by bhousel in "Paying for Open Source Contributions"]]></title><description><![CDATA[
<p>As a professional full-time open source maintainer and developer, initiatives like this bother me a lot.<p>The work we do is worth much more than $20/hr.<p>Ideally I'd like to see open source developers in stable, tenured positions that pay fair salaries with benefits.  Anything that normalizes the idea that open source should be funded on tips, patreons, or spare time goodwill is embarrassing to all of us.  We can do better.<p>If you value open source, hire people to do it and pay them fairly.</p>
]]></description><pubDate>Fri, 03 May 2019 14:57:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=19818993</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=19818993</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19818993</guid></item><item><title><![CDATA[Brands/]]></title><description><![CDATA[
<p>Article URL: <a href="http://osmlab.github.io/name-suggestion-index/brands/index.html">http://osmlab.github.io/name-suggestion-index/brands/index.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=19395493">https://news.ycombinator.com/item?id=19395493</a></p>
<p>Points: 70</p>
<p># Comments: 2</p>
]]></description><pubDate>Fri, 15 Mar 2019 01:02:08 +0000</pubDate><link>http://osmlab.github.io/name-suggestion-index/brands/index.html</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=19395493</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19395493</guid></item><item><title><![CDATA[New comment by bhousel in "Ask HN: How are you getting through (and back from) burning out?"]]></title><description><![CDATA[
<p>Do we really have to Ask HN this every few days?</p>
]]></description><pubDate>Wed, 06 Feb 2019 15:03:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=19095566</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=19095566</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=19095566</guid></item><item><title><![CDATA[New comment by bhousel in "Man says CES lidar’s laser was so powerful it wrecked his camera"]]></title><description><![CDATA[
<p>from TFA:<p>>Crucially, self-driving cars also rely on conventional cameras. So if those lidars are not camera-safe, it won't just create a headache for people snapping pictures with handheld cameras. Lidar sensors could also damage the cameras on other self-driving cars.</p>
]]></description><pubDate>Fri, 11 Jan 2019 21:50:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=18887504</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=18887504</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18887504</guid></item><item><title><![CDATA[New comment by bhousel in "Man says CES lidar’s laser was so powerful it wrecked his camera"]]></title><description><![CDATA[
<p>Cool. This will be fine as long as 2 self driving cars never go near each other.</p>
]]></description><pubDate>Fri, 11 Jan 2019 20:48:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=18886814</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=18886814</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18886814</guid></item><item><title><![CDATA[New comment by bhousel in "Industry pushes sugary products, while obfuscating the health hazards"]]></title><description><![CDATA[
<p>Lots of people don't realize that 1 cup milk has 13g sugar from the lactose.<p>For comparison, a typical sugar packet is 2-4g.<p>(This is why cereal + milk is probably just about the unhealthiest thing possible to start your day).<p>It's a good idea to switch from the sugary/milky Starbucks drinks to anything else - like cold brew, or black coffee where you add trace amounts of sugar/cream yourself, if any.</p>
]]></description><pubDate>Wed, 26 Dec 2018 23:48:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=18765919</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=18765919</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18765919</guid></item><item><title><![CDATA[New comment by bhousel in "Ask HN: What are your “brain hacks” that help you manage everyday situations?"]]></title><description><![CDATA[
<p>Set your profile picture (Slack/Twitter/GitHub/etc) to something happy. You’ll see it thousands of times a day as background noise, but it will affect both your own mood and how other people treat you.</p>
]]></description><pubDate>Mon, 03 Dec 2018 14:16:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=18588859</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=18588859</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18588859</guid></item><item><title><![CDATA[New comment by bhousel in "Utah man dies from rabies, the first in the state since 1944"]]></title><description><![CDATA[
<p>Hah yeah, it was kind of funny that by the 4th shot, the ER docs and police there knew me as "the rabies guy".<p>I also was told that the immune globulin is a bit complicated because it needs to be prepared specifically for the person's weight.  So unlike off the shelf vaccines, it requires an on duty pharmacist to actually do something before they can give it to you, which I'm sure adds to the cost.</p>
]]></description><pubDate>Fri, 09 Nov 2018 15:25:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=18415048</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=18415048</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18415048</guid></item><item><title><![CDATA[New comment by bhousel in "Utah man dies from rabies, the first in the state since 1944"]]></title><description><![CDATA[
<p>Oh!  I got rabies shots in 2014 after being bitten by a dog.<p>The course of treatment is injections 0day, 3day, 7day, and 14day. I went to the emergency room to get these injections, at the recommendation of my primary doctor.<p>Unfortunately I don't have the bills anymore, but the total cost was a bit over $20,000, which insurance adjusted down to about $500/visit.<p>Basically, it would have bankrupted me if I didn't have insurance.  Yes, the US healthcare system is really this broken.</p>
]]></description><pubDate>Fri, 09 Nov 2018 15:13:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=18414941</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=18414941</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18414941</guid></item><item><title><![CDATA[New comment by bhousel in "Tokyo researchers created the strongest controllable magnetic field in history"]]></title><description><![CDATA[
<p>I'm kind of amazed they were even able to record a video in a 1200 Tesla magnetic field.</p>
]]></description><pubDate>Fri, 28 Sep 2018 13:33:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=18093164</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=18093164</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=18093164</guid></item><item><title><![CDATA[Bing Maps Streetside Imagery Now Integrated into OpenStreetMap ID Editor]]></title><description><![CDATA[
<p>Article URL: <a href="https://blogs.bing.com/maps/2018-06/bing-maps-streetside-imagery-now-integrated-into-openstreetmap-id-editor">https://blogs.bing.com/maps/2018-06/bing-maps-streetside-imagery-now-integrated-into-openstreetmap-id-editor</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=17313839">https://news.ycombinator.com/item?id=17313839</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 14 Jun 2018 18:04:41 +0000</pubDate><link>https://blogs.bing.com/maps/2018-06/bing-maps-streetside-imagery-now-integrated-into-openstreetmap-id-editor</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=17313839</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17313839</guid></item><item><title><![CDATA[New comment by bhousel in "Ask HN: Who is hiring? (June 2018)"]]></title><description><![CDATA[
<p>OpenStreetMap US | Executive Director | Remote USA only | Full Time<p>OpenStreetMap US seeks a new, full-time Executive Director to be a part of our continued mission and growth! OpenStreetMap US aims to broaden the reach and diversity of the OpenStreetMap community and increase the use and improve the quality of our map data. As Executive Director, you will work closely with the Board to move these goals forward and provide strategic vision to further the organization’s mission.<p>The duties of the Executive Director cover a broad scope, encompassing organizational program and strategy, as well as fundraising, finance, and marketing. This role will require a high degree of flexibility and creativity, and a collaborative and inventive orientation. The successful candidate will be mission-driven and passionate about the idea of creating and applying open, accurate geospatial data for the world.<p>This is a unique leadership position within the open source mapping and open geographic data communities. OpenStreetMap US is one of the largest user communities of the OpenStreetMap project, and as the Executive Director you will have a chance to make a difference at the local, national, and international level. This is a role with ample room for growth and creativity, and the successful candidate will come from a diversity of backgrounds. We encourage you to apply!<p>---<p>For more info, or to submit an application, visit <a href="https://www.openstreetmap.us/jobs/" rel="nofollow">https://www.openstreetmap.us/jobs/</a></p>
]]></description><pubDate>Fri, 01 Jun 2018 16:51:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=17207273</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=17207273</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17207273</guid></item><item><title><![CDATA[OpenStreetMap US and Telenav announce camera lending program]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.openstreetmap.us/2018/05/camera-lending-program/">https://www.openstreetmap.us/2018/05/camera-lending-program/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=17097270">https://news.ycombinator.com/item?id=17097270</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 17 May 2018 23:46:40 +0000</pubDate><link>https://www.openstreetmap.us/2018/05/camera-lending-program/</link><dc:creator>bhousel</dc:creator><comments>https://news.ycombinator.com/item?id=17097270</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17097270</guid></item></channel></rss>