Hacker Newsnew | past | comments | ask | show | jobs | submit | wdpk's commentslogin

I think the headline is pretty misleading and meaningless. The 10% median increase across the city is pretty useless as a statistic. For instance the median by neighborhood is widely different! the median in Manhattan as a whole is double the median of the city see the map in the article to realize that NYC market is a collection of sub-markets with their own dynamics and type of property mix the price per sqft is widely different between townhouses, condos, coops, new construction, gut reno, etc

Let take this example from the article: "Carroll Gardens — traditionally one of Brooklyn’s most expensive neighborhoods — was conspicuously absent from top 10 rankings at the start of the year. Claiming #4 with a $2.79 million median sale price in Q1 2024, Carroll Gardens’ median sale price was halved to just $1.38 million". I know pretty well this neighborhood and the market there and this is not the actual case that overall prices in Carrol Gardens halved (even if the median price over the Q1 transactions halved)! It's just probably the type of property sold in Q1 that changed, the market is made of townhouses and new developments of condos and also some coops, the mix of sales in a given quarter is very far from homogeneous.

The article goes on to say essentially the same thing: "Among these was the whopping 145% price surge in Madison that lifted the neighborhood from last year’s #104 to its current spot at #25. This came as Madison went from $510,000 a year ago to the current $1.25 million median sale price due to a significant shift in its sold-property mix." Pretty sure median transaction prices in Madison Brooklyn will collapse by nearly 50% next quarter once the transaction property mix will change again...


BTC/USD is down as we speak 6% around 78k... if anything the riskier the asset the more downside there is


Unfortunately impossible to know because dependent on a bunch of factors that are outside rationality. If the tariffs are scaled back tomorrow, probably the damage would be pretty limited but it's not looking like anybody reasonable is around or in charge...


It's scary that there seems to be no off ramp. The massive incompetence of the administration is absolutely appalling. Let suppose they decide to keep the tariffs until the actual lagged economic metrics are showing the stress on jobs and companies earnings. That means an absolutely insane amount of goods will go up in price between 10% and 50% in just a couple of weeks (depending how much the company margins are going to be absorbing the hike). The direct impact is probably a proportional amount of suppressed consumption so direct impact on the top line and bottom line of all those firms. This does not even account for all the effects of retaliation which are not yet decided. The markets were trading with lofty multipliers that were including quite a bit of revenue growth assumptions. All that is gone now! Without a quick change of course, the valuations will still have to go down a lot...


> It's scary that there seems to be no off ramp.

Couple that with the amount of countries that were hit at the same time that all want to talk to the Mafia boss NOW to get it sorted out and get their tariffs lifted. There are literally too many nations trying to reach the President at the same time.


Hedge Funds are panicking with the margin calls coming next week:

"Bill Ackman warns Trump to call a timeout on trade war: ‘This is not what we voted for’" - https://thehill.com/homenews/administration/5235232-ackman-w...


'I never thought leopards would eat MY face,' sobs man who voted for the Leopards Eating People's Faces Party.


If you ever though any of these guys makes their money because they are smarter, just watch this:

https://youtu.be/bPdsN_YmP60?t=74

https://youtu.be/JOBs27jckCo


I disagree with this sentiment. This is not at all how Donald Trump acted in his first term. Mostly, he spent his time golfing and doing some marginal nonsense.


How’s this relevant? Everything he has done now: either he said it he will do it or at least it was in Project 2025 (and lets not pretend that nobody knew about it).


Yep, if I could pick one positive thing to say about this administration, it's that they were totally transparent about their plans and intentions. They are doing exactly what they said (and wrote) that they would do in 2025. Hell, they even titled it "Project 2025."

Anyone saying, "Wait a minute, I didn't vote for this!" is either lying or stupid. They quite literally, in the actual, literal definition of "literally," spelled out every single thing they are currently doing, prior to the election. Zero people should be surprised by anything they are doing.


The sad fact is, we live in a post-truth world now.

People believe what they want to believe, right up until the leopard eats their faces.


It’s how he acted…he just had helpers before. He done away with all those nuisances now.


Well yes, this is an idiosyncratic event, chances are that a bunch of hedge funds have no hedge against stupid!

I'm actually more worried about the small businesses that say have a container full of whatever product somewhere in the middle of the Pacific that will have to pay the tariffs upfront out of pocket with a disappearing consumer on the other end of the pipe.


Im not sure 90 days is enough to negotiate trade deals in any significant manner with the world. Countries have no confidence that the deals will be honoured and will be less willing to make any concessions. "Fool me once..."


Shouldn't hedge funds be hedges against exactly this type of events? Now they really should show how good they are, by losing lot less than market does in general...

Or are they just an other herd following others...


i remember this guy crying on TV during the covid drop about how the world was ending only to be buying up everything behind the scenes lol.


It’s 100% what people voted for…


ha - hope he gets wrecked. Trump has been painfully transparent about his love for tariffs.


> The massive incompetence of the administration is absolutely appalling

Huh? The Biden administration kept all of Trump's tariffs and most of his policies. You people don't seem to know that the US establishment is one single party with slightly different factions...


During my several decades of translating businesses logic into code I never found a test that does not pay back the time spent to write it many times over, they are truly the super-power of the trade mainly because the can be completely automatized. Because of this automatic nature from a business perspective their marginal cost becomes almost zero (pretty much regardless of the initial cost and maintenance cost), the reason for this is that the value function of the business logic embedded in code, the reason for the code to even exist (i.e. the thing that gives a value to the piece of software), needs to account in the long run for the risk components, risks generated by defects or poorly aligned specifications, security risk, reputation risk, obsolescence, performance, etc. The way to manage risk at the business level is by somehow hedging and this hedge is precisely testing, again and again, hopefully automatically. Testing is then not a cost, it's precisely the instrument that allows to stop paying over and over for those risks and therefore in the end capture more value and reduce the variance of the outcomes.

People also mentioned side projects and testing. What I found personally is that tests are the best way to also document/encode ideas for later so that when you pause something for months because... life, getting back to a project becomes easier. I found very useful for instance to add some tests that would just fail for some feature easy to implement just to have an easy entry point back into the project.


compile c++ code at runtime for instance. Lots of use cases, most obvious one specializing/instantiating dense computational kernels on values only known at runtime... but so many more things would be possible if the compiler was just a reusable library.


This is something Common Lisp got really right.


well being homoiconic and dynamic helps quite a bit... This being said, if you squint a bit and get used to the syntax, c++ variadic templates are just a compile-time lisp (really templates are just generalized functions over types) and the template mechanism is 100% pure, with a runtime capability of evaluating those pure monadic computational effects defined at compile-time to runtime, there is no more boundary (not saying it's a thing that should be done all the time). The main advantage then over functional languages is the fact that c++ optimizing compilers are already pretty good at optimization so assuming that you can afford to re-compile at runtime the tight inner loops or critical paths (say at "configuration time" when adding some latency might not be a big deal), a lot of otherwise impossible optimizations could probably be done better (thinking of loop invariants, polyhedral, unrolling, constant propagation, aliasing, row major to column major etc etc) probably the result would also be better than what a JIT compiler and profiler would be able to achieve too.


> template mechanism is 100% pure

Let's say 99.99%. You underestimate the resourcefulness of C++ (meta-)programmers and their ability to leverage implementations or specification bugs for "useful" purposes: https://b.atch.se/posts/non-constant-constant-expressions/


Not sure why you think it's necessary, twitter could disappear tomorrow and nobody would be worse off. It's not even a real fight it's more like yelling past each others without anybody actually getting much out of the experience but rage. Did you manage to breach twitter echo chamber once? convince a single person on twitter of whatever point of view you have? And this is even before all the bots and the hidden agendas of the owner


You have a good point. There have been many situations on hacker news where disagreements in comments have shed new light on topics for myself and allowed me to look at things from different perspectives (and I think I have helped others as well with my own comments). I don't think that has really happened on twitter as the argument style is different.


significantly less of a problem on bluesky than on twitter. First there is a mass ban which scales well (one can ban entire lists of bots). Two there is no gamed algorithm that bias engagement towards the ideology of the owner of the platform... In other words, you have significantly more control over the content


How does a regular, casual user of Bluesky know what ban lists to use?

How does one know to trust that a ban list is "clean", i.e. hasn't had a bunch of people added just because someone disagreed with them?

Will such ban lists be able to keep up with the rate of bots being created?

(I'm not on any of these social media platforms, but I'm considering Bluesky, at least for reading purposes.)


valid points, time will tell how well this will work. For the ban lists there are directories they are typically updated by people you trust or are in the circles you care about. One can indeed imagine manipulating ban lists, I'm personally not too worried about that because typically accounts that post "reasonable" useful or interesting content are very few, most of the other "organic" accounts are just readers. The readers tend to prefer a good ratio of "signal/noise" and in my experience the noise part of the equation is the problem. Trimming down all the accounts whose purpose it just to insult, flame war, yell or post garbage is the goal.


We looked into that just before the big migration wave, when bsky was ~5M (https://dl.acm.org/doi/10.1145/3646547.3688407) and there is plenty of growth in terms of the number of labels/feeds, the posts that are labelled, and the popularity of the feeds. So while the default option is likely to matter lots, opening up content recommendation/moderation is having an effect.


that's the reason, the article also gives as an advice for savers to invest into income producing assets which also produce proportionally more income as inflation rises instead of sitting on cash.


There are no such assets. Unless you consider slave labor one of these.

There's only so much you cannot increase wages to compensate before people will take matters into their own hands.


a good case of pump and at some point a dump. The prices are pumped by insiders using pretty heavy leverage to make huge directional bets (just insane from a risk/reward perspective but hey, we're dealing with the most degenerate gamblers here) on the theory that a bunch of "muppets" (Goldman Sachs terminology here) are going to long term bring their savings through ETFs and provide much needed exit liquidity. Fascinating how humans are never changing or learning


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: