<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: austincheney</title><link>https://news.ycombinator.com/user?id=austincheney</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 22 Apr 2026 21:46:16 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=austincheney" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by austincheney in "How can we know if paid search advertising works?"]]></title><description><![CDATA[
<p>> Google monetizes search with ads.<p>Google monetizes search but not with Google ads.  This is the primary distinguisher.  Its an auction selling space on page for a supplier to provide their own textual content.  Google's online advertisement businesses don't sell space on Google pages, but online ad products for other peoples' pages.<p>Google considers all of this as ad revenue, but distinguishes search from their advertisement products in their revenue filings.</p>
]]></description><pubDate>Tue, 08 Mar 2022 20:18:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=30606245</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30606245</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30606245</guid></item><item><title><![CDATA[New comment by austincheney in "How can we know if paid search advertising works?"]]></title><description><![CDATA[
<p>> Search is Google’s most lucrative unit. In 2020, the company generated $104 billion in “search and other” revenues, making up 71% of Google’s ad revenue and 57% of Alphabet’s total revenue.<p>From your second source.  I guess you were conflating ad revenue to online advertisements.  Its all ad revenue, but its not all online advertisements.</p>
]]></description><pubDate>Tue, 08 Mar 2022 19:49:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=30605653</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30605653</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30605653</guid></item><item><title><![CDATA[New comment by austincheney in "How can we know if paid search advertising works?"]]></title><description><![CDATA[
<p>Google does make money from ads, but that is not their primary business. Yes they have AdWords and they bought DoubleClick around 2007. They also have YouTube that took them forever to figure out how to monetize. They bought Urchin (Google Analytics) specifically to monetize AdWords.<p>Google’s primary business is search. They monetize search in a couple different ways. The primary revenue model for search is micro auctions to determine ranking of product placement on search results.<p>I don’t have numbers but I suspect Google ads get far more eyeballs than do their search results. The distinction though is margin not quantity. Ads aren’t worth very much. Google ads generate a higher margin than Facebook ads but still tiny, like maybe fractions of a penny. When I was at Travelocity a million years ago I remember hotels bidding up to $18 per click for placement on searches related to Las Vegas. Not only is that click-through worth a fortune it is also relevant and thus far more likely to be clicked.<p>EDIT<p>Death by a thousand paper cuts.<p>Somebody provided a source below, they clearly did not read, which explains all of this:<p><a href="https://www.cnbc.com/2021/05/18/how-does-google-make-money-advertising-business-breakdown-.html" rel="nofollow">https://www.cnbc.com/2021/05/18/how-does-google-make-money-a...</a><p>> Search is Google’s most lucrative unit. In 2020, the company generated $104 billion in “search and other” revenues, making up 71% of Google’s ad revenue and 57% of Alphabet’s total revenue.<p>This section of the article further details how the auctions differ from online advertisement products.<p>I don't have the source but Google's chief economist has been very clear about how the micro auctions work and generate revenue separately from display ads.</p>
]]></description><pubDate>Tue, 08 Mar 2022 19:22:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=30605008</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30605008</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30605008</guid></item><item><title><![CDATA[New comment by austincheney in "A new speed milestone for Chrome"]]></title><description><![CDATA[
<p>> No one is working towards degrading performance on purpose<p>You are not participating in the same interviews that I am then.  Most developers know querySelectors, for example, are super slow.  They will fight to death to retain them and anybody who suggests any alternative is not compatible for hiring.  If they know its slow and deliberately choose to avoid faster alternatives how is that not degrading performance on purpose?  How is that not common?</p>
]]></description><pubDate>Tue, 08 Mar 2022 17:19:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=30602559</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30602559</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30602559</guid></item><item><title><![CDATA[New comment by austincheney in "A new speed milestone for Chrome"]]></title><description><![CDATA[
<p>No, its a common misunderstanding of search and tree models.  The OS is faster, by a tiny bit, at traversing the file system than my JavaScript application.  It is only search that is slower, and dramatically so.  I don't have visibility of the OS code so I cannot be certain why that is.  I speculate its because the OS is doing too much.<p>With the DOM querySelectors are dramatically slower than using static methods with arbitrary strings as arguments.  This is likely because a query string must be parsed against each child node to determine if the child node is a match to the supplied query.  Likewise, modern OSs use ancient conventions to search the file system, such as wildcards, along with more modern advanced search syntax.  These are rules that must be parsed against each child artifact from a tree segment.  My application deliberately doesn't do that.<p>To compound matters Windows, don't know about OSX, caches search results so that subsequent searches are a little less slow, which incurs a greater performance penalty on first search.  My application doesn't do that either.  Each search triggers tree traversal, so its always as fast reading from the file system.<p>Mentioning any of this during a job interview makes for intriguing conversation with the interviewer.  I do detect genuine interest and curiosity from the interviewer.  At the same time they know their team will fight to the death at many mention of alternatives to querySelectors and/or JSX, so you have just effectively terminated the interview.  Anything there after is purely for the interviewer's personal interests.</p>
]]></description><pubDate>Tue, 08 Mar 2022 17:17:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=30602512</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30602512</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30602512</guid></item><item><title><![CDATA[New comment by austincheney in "A new speed milestone for Chrome"]]></title><description><![CDATA[
<p>I have been doing web work for over 20 years. Everybody claims to care about performance, training, security, and so forth. The only thing that really matters in practice is comfort. Until developers are willing to abandon certain areas of comfort things like performance are only given lip service. In doesn’t matter what they want if they are actively working in opposition. This is performance is a massive incompatibility to hiring.</p>
]]></description><pubDate>Tue, 08 Mar 2022 15:37:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=30601012</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30601012</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30601012</guid></item><item><title><![CDATA[New comment by austincheney in "It's 'Alarming': Children Are Severely Behind in Reading"]]></title><description><![CDATA[
<p>> Children in every demographic group have been affected, but Black and Hispanic children, as well as those from low-income families, those with disabilities and those who are not fluent in English, have fallen the furthest behind.<p>The pandemic affected everybody almost equally by political jurisdiction so demographic stratification suggests there is more to blame in addition to the pandemic. Looking at young children in my area my first blame is convenient access to touchscreens.</p>
]]></description><pubDate>Tue, 08 Mar 2022 14:32:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=30600263</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30600263</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30600263</guid></item><item><title><![CDATA[New comment by austincheney in "A new speed milestone for Chrome"]]></title><description><![CDATA[
<p>A micro service to a localhost node application. There is a file system API in the browser now but it isn’t mature and is highly restricted compared to the terminal.</p>
]]></description><pubDate>Tue, 08 Mar 2022 12:33:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=30599185</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30599185</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30599185</guid></item><item><title><![CDATA[New comment by austincheney in "A new speed milestone for Chrome"]]></title><description><![CDATA[
<p>Why would you suspect that? Are you a JavaScript developer? If so have you seen the terrifying horror on people’s faces when you mention alternatives to querySelectors or that you can write/execute code faster by not using vDOM? Mentioning performance is the fastest way to exit a job interview.</p>
]]></description><pubDate>Tue, 08 Mar 2022 11:20:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=30598720</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30598720</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30598720</guid></item><item><title><![CDATA[New comment by austincheney in "Ask HN: How did you overcome perfectionism?"]]></title><description><![CDATA[
<p>> I also constantly remind myself that "perfect is the enemy of shipped".<p>That is easy to say as marketing first personality with access to money. In this case shipping anything is critical and you can fix it later.<p>As a bootstrapped technologist product quality is all you’ve got. If the product isn’t revolutionary then nobody cares and you won’t change their opinion. So, in this case you need to get it mostly right, because you won’t get a second chance at a first impression.</p>
]]></description><pubDate>Tue, 08 Mar 2022 09:31:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=30598146</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30598146</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30598146</guid></item><item><title><![CDATA[New comment by austincheney in "A new speed milestone for Chrome"]]></title><description><![CDATA[
<p>It’s more subtle and monumental than that. Before this JS was already executing at the same speed as Java except for in arithmetic. At this rate of improvement eventually JS will execute much faster than Java in all areas except arithmetic where it will achieve near parity.<p>I am not seeing any other programming language continuously improve their execution speed this much.</p>
]]></description><pubDate>Tue, 08 Mar 2022 09:21:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=30598082</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30598082</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30598082</guid></item><item><title><![CDATA[New comment by austincheney in "A new speed milestone for Chrome"]]></title><description><![CDATA[
<p><a href="https://jsbench.github.io/#b39045cacae8d8c4a3ec044e538533dc" rel="nofollow">https://jsbench.github.io/#b39045cacae8d8c4a3ec044e538533dc</a><p>Look at DOM performance. Chrome has a ceiling of about 45m ops/s where FF max speed is dependent upon your ram and bus speed reaching beyond 4-5b ops/s. In both though querySelectors perform at about the same speeds as slow as 25000 ops/s.<p>I have written an OS GUI that executes in the browser. It loads, including full state restoration in about 120ms. I was recently interviewing with a search engine company, one of the big ones, where I could demonstrate that JavaScript tool can execute file system search much faster than the OS and produce better results. They seemed really impressed.<p>Despite all of this my biggest learning about performance is that mentioning performance during job interviews shows that you are incompatible with other JavaScript developers and will not be hired.</p>
]]></description><pubDate>Tue, 08 Mar 2022 09:16:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=30598064</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30598064</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30598064</guid></item><item><title><![CDATA[New comment by austincheney in "Launch HN: Litebulb (YC W22) – Automating the coding interview"]]></title><description><![CDATA[
<p>I suspect cheating is not the primary problem. I suspect, like so many other decisions in software, the primary problem is unrealistic and unfounded expectations. This behavior typically comes from unmeasured assumptions that may work well in one narrow circumstance applied into an unrelated circumstance and then blaming the result instead of the decision. This is bias.<p>Unless there is a solution that directly addresses hiring bias this company will fail like all the others before it for exactly the same reason: their clientele will apply bias (the actual cause of the problem), be unhappy with the result, and then blame the service provider. In sales the client is never wrong, which means the service provider is always wrong. This is why software overspends on recruiters and then invents fantasies like React developers with a year of experience are rare.</p>
]]></description><pubDate>Mon, 07 Mar 2022 21:42:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=30593680</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30593680</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30593680</guid></item><item><title><![CDATA[New comment by austincheney in "The Fed released a paper outlining pros and cons of a “digital dollar”"]]></title><description><![CDATA[
<p>Total control by whom?  Most financial transactions occur between numerous financial institutions and wiring intermediaries in between.  The finance network is far more decentralized than the web even after consideration for things like SWIFT.<p>Your financial transactions are already tracked by numerous parties.  This is neither secret nor suspect.  Without visibility over the transfers, distribution, and behaviors therein how would governments and financial institutions account for ethical violations?</p>
]]></description><pubDate>Mon, 07 Mar 2022 20:39:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=30593040</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30593040</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30593040</guid></item><item><title><![CDATA[New comment by austincheney in "$30k employee referral program"]]></title><description><![CDATA[
<p>There are legal reasons why that does not work.  For example consider military separation.  A candidate is under no obligation to disclose their military/veteran status.  If that candidate then becomes mobilized the federal obligation trumps the commercial obligation.  Employee leaves and not only are they separated from the work without any repercussion the employer is required to retain that employee in an unpaid status for at least 5 years unless a rare legal exclusion is met.<p>There is also pregnancy.  An employer cannot terminal an employee for taking time to give birth and taking some more time off immediately after.<p>These are the two most obvious reasons though I am sure there are many more that they cannot enforce.</p>
]]></description><pubDate>Mon, 07 Mar 2022 20:20:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=30592816</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30592816</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30592816</guid></item><item><title><![CDATA[New comment by austincheney in "Ask HN: What concepts have you never truly understood?"]]></title><description><![CDATA[
<p>Certificates, certificate chains, certificate installation. In theory the concepts sound easy and there are numerous guides and instructions online. Once you try to become your own CA the challenge becomes real. Trying to write an automated solution cross-OS feels like running a marathon on your hands.</p>
]]></description><pubDate>Mon, 07 Mar 2022 11:34:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=30586554</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30586554</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30586554</guid></item><item><title><![CDATA[New comment by austincheney in "Ask HN: Qualities of a Senior Software Engineer"]]></title><description><![CDATA[
<p>I am a JavaScript developer so my opinions are limited to that slice of software.<p>Senior used to mean someone experienced enough to become an advanced problem solver. Those days are long over.<p>Now senior is equivalent to <i>expert beginner</i>. They are really fast and confident at using tools. This advanced and rapid tool usage means they can solve some problems quickly, but they cannot imagine any solutions aside from their favorite tools. The most important limitation there is that most senior developers cannot write original software. It’s a world of a few commonly known problems with commonly applied repeated solutions and everything else is discarded with excuses that equally lack originality.<p>If, as a JavaScript developer, you are able to write original software without popular tools you are commonly viewed as something like a dark wizard, equal bits of magic and evil. People view this as mysterious and incompatible with reality (you won’t be hired).</p>
]]></description><pubDate>Mon, 07 Mar 2022 11:24:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=30586484</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30586484</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30586484</guid></item><item><title><![CDATA[New comment by austincheney in "Building a web app with no framework"]]></title><description><![CDATA[
<p>You are not the first to comment on the video resolution.  I really must redo those.<p>Back in August the project was mostly working.  Multi-file copy worked across the network and across the security model.  At that time I did not have any encryption working (TLS, WSS).  I am working on this now.  Certificate management/deployment is something I am new to and its a bit more challenging in a fully decentralized application.  There are three stages to this:<p>1) Certificate creation<p>2) Certificate installation into the OS trust store<p>3) Certificate exchange between agents<p>I can do a self-signed root server certificate with confidence.  I would rather have a root certificate for user level of the security model and signed device certificates for increased security against device spoofing, but I am failing to get correct.  I can make it work like a hammer in Windows, but its not correct and it won't work at all in Linux.  I suspect certificate exchange will easily be part of the invitation process, but then I need to device a certificate challenge as an enforcement measure.  This is a humbling experience reminding at every step that I don't really know what I am doing.<p>Also there was a catastrophic routing problem.  You could perform all file operations except copy from one remote user/device to a different remote/user device.  Everything is super simple when the network effect is two nodes (a request/destination and a source).  When there is only two nodes you don't need any routing support.  Even when the security model actually pushes the transmission to three modes, such that you are sending to a user's primary device and the transmission must relay to that remote user's secondary device the transmission is still simple as this is assume by the security model without additional work.  When the transmission expands to three separate nodes (request, source, destination) you have to introduce routing.  The routing is greatly complicated by the security model.<p>Now that I am working on routing file copy over the network is broken.  Once I introduce encryption and routing I will ready the project for public beta and then resume work on audio/video calls.</p>
]]></description><pubDate>Sun, 06 Mar 2022 23:54:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=30582496</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30582496</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30582496</guid></item><item><title><![CDATA[New comment by austincheney in "Building a web app with no framework"]]></title><description><![CDATA[
<p>The framework argument is purely superficial and boils down to two camps: those who can write applications and those who need some (maybe a lot) help.<p>There is a lot of freedom, performance, and security you sacrifice when you need so much help that you need a third party to simply <i>just do it for you</i>.</p>
]]></description><pubDate>Sat, 05 Mar 2022 23:49:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=30573246</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30573246</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30573246</guid></item><item><title><![CDATA[New comment by austincheney in "Building a web app with no framework"]]></title><description><![CDATA[
<p><a href="https://github.com/prettydiff/share-file-systems" rel="nofollow">https://github.com/prettydiff/share-file-systems</a><p>That is my application that creates an OS GUI in the browser.  Plenty of features with o framework.<p>* Code size (on the front-end) 2mb unminified.<p>* Load time in the browser (including state restoration) about 120ms.<p>* The first version took 15 days to write from scratch.<p>When people claim there MUST be a framework its clear they have no idea what they are talking about.  It is clearly a case of Dunning-Kruger effect where they can compare their experience with frameworks on one hand... and they have nothing to compare it to, because its all they know.</p>
]]></description><pubDate>Sat, 05 Mar 2022 21:17:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=30571974</link><dc:creator>austincheney</dc:creator><comments>https://news.ycombinator.com/item?id=30571974</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30571974</guid></item></channel></rss>