We’re looking at hiring someone based outside of our country for the first time. This employee is based in the UK, and we are exploring our current options. The role would sit in customer success/operations, so it would involve regular hours, direct contact with our team, access to internal tools, and some responsibility for ongoing client work.

I’ve done a lot of research, and there were a few different ways. You can hire them as a contractor, or start a local entity in the UK ( but this is definitely something we would want to avoid ), and finally, use EOR, as they actually have legal entities based in multiple countries. From what I understood while reading about using EOR in the UK, one thing that makes the UK a bit different is that there are separate categories for employees, workers, and self-employed contractors. So it is not only about how we pay the person. I’ve noticed a few things I hadn't fully thought through, like PAYE, National Insurance, workplace pensions, written employment terms from day one, and the fact that UK employment is not “at-will” in the same way some founders might expect.

So now it seems to us that this kind of service would be the best way to go. Has anyone from the USA looked to hire in the UK? What would you do differently if you had to make that first global hire again?

[–] 1 point 1 month ago

I think people just don’t want every search to have AI included, it’s too much for some. Even though it’s useful sometimes, they are forcing it for almost every query, which is too much.

  • source
  • [–] 2 points 1 month ago

    At least they're being transparent about it. AI agent workflows can burn through far more tokens if they are used every day, so, normally, employees are still more affordable.

  • source
  • [–] 4 points 1 year ago

    Asana at work; it's great, and you can easily go back and check what you did and when. And in my personal life, pen and paper. I don't see this changing anytime soon.

  • source
  •  

    We’re a small consulting team of five, and it’s been a challenge keeping everything organized as we’ve grown. We used spreadsheets to track leads and follow-ups, which was fine when things were slower. But once we started getting more inquiries, it quickly got out of hand. We have notes in too many places, and it's a mess. Some emails slipped through the cracks because no one saw them in time. A few solid leads went cold just because we didn’t follow up when we should have.

    Now we are looking for a CRM that is simple to use, affordable, and a good fit for a small team. What we really want is something that lets us keep an eye on every lead. It would be great to be able to see which leads are slowing down, tag and filter them, and quickly figure out who on the team has time to reach out. It should also show enough detail on each contact so we can make a thoughtful offer, and work with tools we already use like Google apps and Asana. So far, Pipeline CRM looks like it could work well for us. Has anyone here used it? I would love to hear your experience or other suggestions outside the big names.

    [–] 6 points 1 year ago (1 child)

    Sorry, I can't really help you, I just wanted to say congratulations! The place looks really cool. It's a very specific question, so perhaps there are some weddings/California-related communities where more people could pitch in. I mean, of course, it doesn't hurt to ask, you never know. Either way, cheers and congratulations one more time! 🥂

  • source
  • [–] 1 point 1 year ago

    We consume less by doing more. Say, we watch less YouTube about what we want to do and start doing more of what it is we want to do.

    This. Exactly this. I mean, it seems so easy, but I can't say it actually is. Are we really so unmotivated to start doing more? I should speak for myself, so am I really so unmotivated or whatever that this is so difficult for me?

  • source
  • [–] 1 point 1 year ago

    It was bound to happen. When the pressure became too great, it backfired and had the opposite effect. I mean, I call it pressure, but of course, you can always refuse to tip. I read last year about how tipping culture in America changed. The question "Does everything require a tip?" kept popping up, and I really think all that led to where we are now.

  • source
  • [–] 6 points 1 year ago

    Learn the language as soon as possible, at least basic level. Bureaucracy is going to be hell, there's no nicer way to put it. But I think you'll enjoy living in Italy. You are not happy where you are now, so it's great you're doing something about it. Best of luck!

  • source
  •  

    Taking accurate screenshots with Puppeteer has been a real pain, especially with pages that don’t fully load when the standard waitUntil: load fires. A real pain. Some sites, particularly SPAs built with Angular, React, or Vue, end up half-loaded, leaving me with screenshots where parts of the page are just blank. Peachy, just peachy.

    I've had the same issue with waitUntil: domcontentloaded, but that one was kind of expected. The problem is that the page load event fires too early, and for pages relying on JavaScript to load images or other resources, this means the screenshot captures a half-baked page. Useless, obviously.

    After some digging accompanied by a certain type of language (the beep type), I did find a few workarounds. For example, you can use Puppeteer to wait for specific DOM elements to appear or disappear. Another approach is to wait for the network to be idle for a certain time. But what really helped was finding a custom function that waits for the DOM updates to settle (source). It’s the closest to a solution for getting fully loaded screenshots across different types of websites, at least from what I was able to find. Hope it will help anyone who struggles with this issue.

    view more: next ›