HN user

4RealFreedom

326 karma
Posts2
Comments220
View on HN

"especially people already intelligent/capable enough to immigrate anywhere else that doesn't have these issues or stay in their own country" Isn't that the point? Come here legally or don't come at all.

"That's higher than any other president by a massive amount" - Any modern president. Abraham Lincoln had a 2859.40% increase. Martin Van Buren had a 1458.32% increase. We've had quite a few over 200%.

Why not keep everything transparent and make lobbying illegal? I know neither secret voting or making lobbying illegal will ever happen but it seems like you're just putting a bandaid on an issue without regard for the consequences. People that vote for representatives like to know how they vote. Why even have the theater of a transparent vote that does nothing?

I don't think we need to do it for every number. Account number, for example, could still be HTML. Balance could be converted, though.

The harder we make it for scammers, the worse it is for them. I'm not claiming this is fool proof - scammers might be able to generate a png on the fly and inject that as the image like solrdev mentioned in another comment. They would still need to match background colors or possibly jump through some other hoops. The more work we make them do, the more likely the are to mess up. It also makes it more obvious to the person being scammed.

In terms of deleting the image and inserting text instead, I've tried it and it's hard to make it look good quickly. You also see instant feedback of the missing element and then the text coming in. It's a cue that something isn't quite right.

Third party cookies are not just used for tracking - they are also any cookies set in an iframe. There are legitimate use cases for third party cookies. Chrome recently rolled out partitioned cookies which addresses part of the problem. If you are trying to authenticate via sso to then show content in an iframe, this just doesn't work, though. There is some behind the scenes trickery you might be able to use with reverse proxies but it's painful. I setup some systems using keycloak and nginx to force the iframe and idp on the same domain. You're out of luck if you're using Azure AD or any third party idp, though.

There will always be "haves" and "have nots". That's been the case since forever. Standard Oil ruled the world. AT&T did, too. I agree that monopolies are bad. We should pressure our government to break them up. Will that help with people trying to find jobs in an inferior job market? That's where this conversation started. We need a strong job market. Competition can help that. We will always have bad job markets, though. It's part of the cycle. Nothing lasts forever.

That could be viewed as a piece of "late stage capitalism" but that's only one part, right? The problem with the term is it's a catch-all for any perceived problem with capitalism. Maybe that issue is just a capitalism speed bump. As I said, we won't know we're in late stage until after the collapse.

"Late stage capitalism" implies that capitalism is doomed to fail. In reality it is a system of constant change. Wealth inequality has always existed. Some problems like housing are newer problems that require solutions but don't point to an inevitable collapse. Are we also in "late stage democracy" and "late stage big government"? We won't know until after the collapse.

The first thing I looked for was text and saw they used cars in an example. I thought the same thing as you 'this can actually get readable license plates?' I don't know enough about ML to understand the associated paper, though.

Not exactly the same but an engineer I was working with wasn't handling a failure case properly and leaving transactions open. It was reported that the DB would stop working after a certain amount of time. I knew transactions were hanging but I didn't understand why. I sat down with the engineer and QA trying to figure out the problem for well over a day. QA was running their test suite over and over. We started removing pieces one at a time until we found the problem.

I read about the viscosity difference in hot/cold water a while back. Every time I think about it while drinking water, I put my water down. I don't know why it bothers me so much but it does. I feel like I peered into the eyes of God and can never return to normal life.

Didn't know if you were asking but Meson is used to build libvips from source. It took a couple days for me to get up to speed on it but wasn't difficult to understand. https://mesonbuild.com/ https://www.libvips.org/install.html As for imagemagick, I just couldn't get the speed I wanted out of it. This is partly due to the fact that the system I was building allows many different image types. I want to say gifs were almost always an issue but I'm reaching here. Been a bit for me as well.

Read through the comments and was surprised no one mentioned libvips - https://github.com/libvips/libvips. At my current small company we were trying to allow image uploads and started with imagemagick but certain images took too long to process and we were looking for faster alternatives. It's a great tool with minimum overhead. For video thumbnails, we use ffmpeg which is really heavy. We off-load video thumbnail generation to a queue. We've had great luck with these tools.