HN user

FrenchDevRemote

551 karma
Posts19
Comments238
View on HN
sentiamor.com 4mo ago

Show HN: AI matchmaking from open ended dating profiles

FrenchDevRemote
3pts2
news.ycombinator.com 1y ago

Ask HN: Why does Google thinks it's okay to store users plain text passwords?

FrenchDevRemote
3pts5
news.ycombinator.com 2y ago

Ask HN: What's the best SaaS boilerplate/all in one solution to build a PoC/MVP?

FrenchDevRemote
2pts4
news.ycombinator.com 2y ago

Tell HN: OpenAI seems to be A/B testing ads in answers

FrenchDevRemote
7pts12
news.ycombinator.com 2y ago

Ask HN: How do YOU choose which business ideas to work on?

FrenchDevRemote
9pts9
news.ycombinator.com 2y ago

Ask HN: How do you stop ChatGPT from being lazy?

FrenchDevRemote
6pts9
news.ycombinator.com 2y ago

Ask HN: How would you learn AI/ML/DL/DS today?

FrenchDevRemote
4pts0
news.ycombinator.com 2y ago

Ask HN: Have you used a good general purpose LLM-powered scraper?

FrenchDevRemote
2pts3
news.ycombinator.com 3y ago

Ask HN: What are some GPT prompts that caused it to hallucinate for you?

FrenchDevRemote
1pts2
news.ycombinator.com 3y ago

Ask HN: How do you plan on protecting yourself from being replaced by AIs?

FrenchDevRemote
8pts20
news.ycombinator.com 4y ago

Ask HN: Where do you currently invest your money?

FrenchDevRemote
7pts10
news.ycombinator.com 4y ago

Ask HN: Any Advice on Mentoring Juniors?

FrenchDevRemote
3pts2
news.ycombinator.com 4y ago

Ask HN: Have you ever caused an outage on a big website by accident?(as an user)

FrenchDevRemote
1pts6
news.ycombinator.com 4y ago

Ask HN: Will the situation in Russia create a storm of cybercriminality soon?

FrenchDevRemote
3pts0
news.ycombinator.com 4y ago

Ask HN: Could it help to make bots to automatically fill petitions for Ukraine?

FrenchDevRemote
2pts2
news.ycombinator.com 4y ago

Ask HN: What's the most impressive simulation of biological life you've seen?

FrenchDevRemote
8pts3
github.com 4y ago

Show HN: Detect Russian visitors to block them and protest the war in Ukraine

FrenchDevRemote
55pts85
news.ycombinator.com 4y ago

Ask HN: Contacted for senior roles but I'm not, am I overselling myself?(I'm 22)

FrenchDevRemote
11pts11
37yto6qdo1rd.umso.co 4y ago

Show HN: Linbotin: Automatically answer to LinkedIn messages(recruiters etc.)

FrenchDevRemote
2pts0

I don't think we necessarily need more dating apps, just better ones, but since online dating is currently more or less a monopoly from Match.com, all apps are pretty much the same, and they're designed to extract as much money as possible from people without even really trying to create good connections.

I think it would be nice to have some apps with a different approach.

Firebase can save you a lot of time at the beginning of your project, but it have so many issues once you start to scale even just a bit, it's such a pain to work with on a real project.(safety issues, bugs, all kind of stupid limitations, your bill can go up extremely easily, it has so many shortcomings)

I'd recommend using some boilerplate from github in your favorite stack even if it might be a little bit longer to build a product with it.

their vision is, at best, like that of a person with myopia seeing fine details as blurry

It's not that far from reality, most models sees images in very low resolution/limited colors, so not so far from this description

It was rate limited since the start, the bots are respecting the rate limits, that does not mean they stop being a burden, they just create more of them.

There are multiple projects built to reverse engineer their API to avoid paying the API rates(it still makes economical sense to buy a subscription for this), it was obvious that they would have to increase their bot protections at some point.

Regular captchas are easily solvable by multimodal LLMs, we're reaching a point where what's hard for software to solve is also hard for humans.

At some point they'll probably have to charge by usage instead of a flat subscription.

I've worked closed to people that were interviewing SWEs, including people I would consider old, age was never the problem.

It was either:

A. This guy is worth twice our maximum budget

B. He's used to technical stacks that have absolutely nothing to do with ours

C. New grads perform better at leetcode than him(not saying that's a good metric, but that's not ageism)

D. Culture fit.

If your goal is to work for people that don't give a crap about you and don't respect you then yes. If you want to work people that actually believe you're more than a cell in spreadsheet then no, or at least not for the reason you mentioned.

Also I think that in a lot of cases it's more "we can't afford to pay a guy with 20 YoE" than ageism, maybe you're punching below your weight.

Recently I noticed that I get more answers for jobs that seems too hard for me than too easy.

"Is RAM the current main limitation?"

(V)RAM+processing power+storage(I mean what kind of average user wants to clog half their hard drive for a subpar model that output 1 token a second?)

I think most of them just choose stripe unless they get a very good deal at another provider or if they need to support a particular payment method that stripe does not support.

Then they might look into something else than stripe if they have a terrible problem with stripe like having their funds locked for weeks or if they think they charge too much fees.

First list all the categories/subcategories URLs for the domain you want to target(you'll probably need to do it for each country), pretty straightforward.

Then find how the pagination works, usually it's a get number parameter or a cursor in the URL.

Some websites will have a limited number of results on the same search, so you'll need to tinker with the faceted search, it's a "simple" loop, for example:

for (i in categories)

      for (j in price_ranges)
    
          for (k in price_ranges.pages[j])
  
                  get_products_on_the_page()

They're getting it right, they just don't have the same incentives as the end users.

Their KPIs are "time spent watching videos", "ads being watched", not "is the user happy" or "is he watching relevant content".

Their products are designed to be addictive and profitable, not entertaining or useful.

Google does not give a damn, I reported multiple fake sites posing as famous brands on youtube ads they didn't do anything and rejected the reports.

Contact the registrar and hosting services.

A while ago I wrote a shell script to open like 100 instances on AWS, running a script on each that would be in charge of downloading a part of the files.

using curl or wget could probably be a bit faster than python, you should also run multiple requests concurrently, because it's unlikely that the sites can fill your whole bandwidth

You could probably do the same with some serverless/cloud functions but it could be a bit expensive