Live data from Hacker News

Have a fucking website

otherstrangeness.com

141–150 of 559 posts

Re: Have a fucking website

#141

Someone wrote and deleted a comment saying > I don't get it. LLMs are supposed to have 100% bridged this gap from "normie" to "DIY website." What's missing? This is an all too common thought process among technologists, so: Where to even start? Well, let's start that every single "AI" company is massively overhyping everything to try to avoid any unfortunate realizations about the emperor's clothes regarding their Ca…

Yeah, setting up a website is a pain. But in reality there’s only a handful of things people care about for your restaurant: what, when, and where. Put up your menu, put up your hours, and put up your location. And a phone number.

The issue is priorities.

If you have long list of todos for a restaurant, why put building a website in the top 10?

Re: Have a fucking website

#142

Earlier quoted context omitted.

Such proposal doesn't need justification. You can merely disagree. Anyhow. The justification is that it is an important part of a communications infrastructure. Just like the government finances roads, etc.

I'm not disagreeing with you, but shouldn't free Internet access come before that?

Internet access doesn't seem to be an issue.

Politics is also about making practical choices to advance humanity.

Re: Have a fucking website

#143
post #23

Millennials delenda est. Or maybe Gen X. But definitely millennials. I am stockpiling champagne for when performative profanity goes to the grave with the silent generation against which it is still rebelling 70 years later. I do not want to order the sloppy toppy burger at BURGERSLUT. Just give me a cheeseburger. But yes, you should build a website.

Ironically, this kind of performative outrage (over a performative thing or not) is also very Gen X or millennial-coded. I can’t even. Take a chill pill.

Re: Have a fucking website

#144
post #23

Millennials delenda est. Or maybe Gen X. But definitely millennials. I am stockpiling champagne for when performative profanity goes to the grave with the silent generation against which it is still rebelling 70 years later. I do not want to order the sloppy toppy burger at BURGERSLUT. Just give me a cheeseburger. But yes, you should build a website.

Ironically, this kind of performative outrage (over a performative thing or not) is also very Gen X or millennial-coded. I can’t even. Take a chill pill.

No.

Re: Have a fucking website

#145
post #92

A few comments point out, and I agree, that setting up, never mind maintaining a webpage, has become a PITA: - server (AWS? 10 optional services to config etc etc, config, updates etc) - domain - SSL cert Are there solid providers who do it all-in-one? I pay one bill, get a domain, SSL certificate, renewed, and a managed, pre-configured Linux box, or even static hosting? Thinking of setting up a webpage for my consul…

I have actually been experimenting with this. And it's real simple. I think for these cases everyone should be shooting for a static site. In which case it is: 1. Rent a vps 2. Buy a domain 3. Set up nginx or something else 4. Copy files to the right folder 5. Point a dns record to said server 6. Use certbot to get an ssl cert installed for you It's not that hard really.

It's not that hard for you... the process you just described is unintelligible for 99% of the population I would say. And then you have to produce the content on top of that.

Re: Have a fucking website

#146

A few comments point out, and I agree, that setting up, never mind maintaining a webpage, has become a PITA: - server (AWS? 10 optional services to config etc etc, config, updates etc) - domain - SSL cert Are there solid providers who do it all-in-one? I pay one bill, get a domain, SSL certificate, renewed, and a managed, pre-configured Linux box, or even static hosting? Thinking of setting up a webpage for my consul…

Backblaze offers 10 GB of free storage and CloudFlare offers free data transfer from B2, with these two you can host a static site for free. I have a worker script that routes requests to the index page and sets cache headers for my site.

  export default {
    async fetch(req, env, ctx) {
      // Cached response
      let res = await caches.default.match(req);
      if (res) return res;
  
      // Fetch object from origin
      let reqPath = new URL(req.url).pathname;
      reqPath = reqPath.replace(/\/$/, ''); // Remove trailing slash
      if (!reqPath.includes('.')) // Check file extension
        reqPath += '/index.html'; // Default to index page
  
      res = await fetch(env.ORIGIN + reqPath);
      if (res.status === 404) // Object not found
        res = await fetch(env.ORIGIN + '/404.html');
  
      // Configure content cache
      res = new Response(res.body, res);
      const ttl = res.headers.get('content-type').startsWith('text')
        ? 14400 : 31536000; // Cache text 4 hours, 1 year default
      res.headers.set('cache-control', 'public, max-age=' + ttl);
  
      // Cache and return response
      ctx.waitUntil(caches.default.put(req, res.clone()));
      return res;
    },
  };

Re: Have a fucking website

#147

Earlier quoted context omitted.

Yeah, setting up a website is a pain. But in reality there’s only a handful of things people care about for your restaurant: what, when, and where. Put up your menu, put up your hours, and put up your location. And a phone number.

I directionally agree with this but, what do you do in three months when you change to the summer menu?

Take a picture of the menu, send through ChatGPT, read it over for mistakes, paste content into your website.

Re: Have a fucking website

#148
post #105

Earlier quoted context omitted.

I think the cost of having to say something humiliating is at least equal to the cost of the cookie, so I want it for free. Of course I had fun with my sister in law, even if I rolled my eyes at the business. That's beside the point. Making you say this stuff is a tiny, petty act of domination. Say it or you don't get the cookie, or you look unfun. Anyway, it's the same argument people have been having forever about…

Do your friends and family know that calling a cookie a bitch is humiliating to you? That’s a pretty strong feeling, so I would be pretty mad if I communicated that and people close to me still dragged me to those places anyway. I wouldn’t be mad at the business, though, I’d be mad at the people that are knowingly disrespecting my boundaries.

When strangers do that it's disrespecting boundaries. When family does it it's giving you a hard time / teasing.

Re: Have a fucking website

#149
post #105

Earlier quoted context omitted.

What is the tradeoff in the scenario you described? You were enjoying time with your sister in law, you called a cookie a bitch, and then…? You weren’t having fun with your sister in law after that?

I think the cost of having to say something humiliating is at least equal to the cost of the cookie, so I want it for free. Of course I had fun with my sister in law, even if I rolled my eyes at the business. That's beside the point. Making you say this stuff is a tiny, petty act of domination. Say it or you don't get the cookie, or you look unfun. Anyway, it's the same argument people have been having forever about…

What makes it humiliating? To me, it's just words, a little childish but still. I'm a Brit though, and I feel we have a much more lax attitude to swearing over here.

Re: Have a fucking website

#150
post #115

Earlier quoted context omitted.

People put that stuff up on Google maps, Facebook, and Instagram now. I know it’s not popular with the crowd here, but those platforms are free, easy to use, and where the customers are. The mainstream options for a website like squarespace are absurdly expensive.

Yes and no. I find the restaurant on Google maps but 9/10 times the menu is either outdated or not properly structured and having a link to the menu website is better. So Google maps is the top of the funnel but I still appreciate a website.

What makes you think that the menu in the website is not going to be outdated.
Post reply on HN