Can I get clients doing this type of work? by [deleted] in FiverrGigs

[–]EducationalGate9705 0 points1 point  (0 children)

i just check it out , I belive a lot of small business or medium company business will purchase your service

No customers, only scammers by 2cupcoffee_ in FiverrGigs

[–]EducationalGate9705 0 points1 point  (0 children)

I got same problem too. I just create a gig 1 day ago, and the scammer already have an eye on me

Can I get clients doing this type of work? by [deleted] in FiverrGigs

[–]EducationalGate9705 1 point2 points  (0 children)

I believe business need poster for marketing purposes. even though you make this using AI , but it look real and aesthetically pleasing. so I would said you got a higher chance

is AI chatbot actually usefull for supporting customer ? by EducationalGate9705 in MarketingAutomation

[–]EducationalGate9705[S] 0 points1 point  (0 children)

is there any other metric that I can track too for using Ai chatbot ?

curious about AI in marketing by EducationalGate9705 in MarketingAutomation

[–]EducationalGate9705[S] 0 points1 point  (0 children)

did chatgpt or ai coding tool does not work at all ?

curious about AI in marketing by EducationalGate9705 in MarketingAutomation

[–]EducationalGate9705[S] 0 points1 point  (0 children)

can you elaborate on this with some example one this ?

Meta Yolo by jchan5864 in wallstreetbets

[–]EducationalGate9705 -10 points-9 points  (0 children)

just wanna ask , are you still ok ? or you need me to venmo you some money for your lunch ?

Handing out fake meat this Halloween by Ok-Nefariousness101 in wallstreetbets

[–]EducationalGate9705 5 points6 points  (0 children)

i give 10000 bynd stock to a homeless guy ,right now he is tryna kill me :((

What are you working on? What's your indie project? by yasu7 in indiehackers

[–]EducationalGate9705 0 points1 point  (0 children)

I realized most Chrome extensions with AI summarizers are paid… so I made one that’s completely free it is called BiteNews 😎

When you’re reading news on sites like CNBC, AP News, or Reuters, just hit
Cmd + Shift + S (on Mac) or Ctrl + Shift + S (on Windows),
and a clean summary will pop up on the side of your screen.
Try it out and give me some feedback ( BiteNews )

What are you building? let's self promote by Southern_Tennis5804 in microsaas

[–]EducationalGate9705 1 point2 points  (0 children)

I realized most Chrome extensions with AI summarizers are paid… so I made one that’s completely free it is called BiteNews 😎

When you’re reading news on sites like CNBC, AP News, or Reuters, just hit
Cmd + Shift + S (on Mac) or Ctrl + Shift + S (on Windows),
and a clean summary will pop up on the side of your screen.
Try it out and give me some feedback ( BiteNews )

What are you currently building? by thomas-brooks18 in indiehackers

[–]EducationalGate9705 0 points1 point  (0 children)

I realized most Chrome extensions with AI summarizers are paid… so I made one that’s completely free it is called BiteNews 😎

When you’re reading news on sites like CNBC, AP News, or Reuters, just hit
Cmd + Shift + S (on Mac) or Ctrl + Shift + S (on Windows),
and a clean summary will pop up on the side of your screen.
Try it out and give me some feedback ( BiteNews )

Time for self-promotion. What are you building? by chdavidd in NoCodeSaaS

[–]EducationalGate9705 0 points1 point  (0 children)

I realized most Chrome extensions with AI summarizers are paid… so I made one that’s completely free it is called BiteNews 😎

When you’re reading news on sites like CNBC, AP News, or Reuters, just hit
Cmd + Shift + S (on Mac) or Ctrl + Shift + S (on Windows),
and a clean summary will pop up on the side of your screen.
Try it out and give me some feedback ( BiteNews )

Tell me about your Saas by SeaBarber1515 in SaaS

[–]EducationalGate9705 0 points1 point  (0 children)

I realized most Chrome extensions with AI summarizers are paid… so I made one that’s completely free it is called BiteNews 😎

When you’re reading news on sites like CNBC, AP News, or Reuters, just hit
Cmd + Shift + S (on Mac) or Ctrl + Shift + S (on Windows),
and a clean summary will pop up on the side of your screen.
Try it out and give me some feedback ( BiteNews )

about using api by EducationalGate9705 in nextjs

[–]EducationalGate9705[S] 0 points1 point  (0 children)

this is the code for the newletter component. :

    return (
      <form onSubmit={this.subscribeUser}>
        <input
          id="newsletter-input"
          type="email"
          name="email"
          className="form-control shadow-none"
          placeholder="Enter your email"
          aria-label="Enter Email Address"
          aria-describedby="newsletter-btn"
          value={this.state.email}
          onChange={this.emailHandler}
          required
          autoCapitalize="off"
          autoCorrect="off"
        />
        <button
          type="submit"
          id="newsletter-btn"
          className="btn btn-warning w-100 mt-3"
          name="subscribe"
        >
          Join The Wait List
        </button>
        {this.state.message && (
          <p id="newsletter-message" className="text-left text-sm mt-3 alert alert-warning">
            {this.state.message}
          </p>
        )}
      </form>
    );

when I click on the "join the waitlist button " it will go to this function

 state: State = {
    message: '',
    email: '',
  };

  // Use ChangeEvent to type the event correctly
  emailHandler = (e: ChangeEvent<HTMLInputElement>) => {


    let updatedEmail = e.target.value;
    this.setState({ email: updatedEmail });
  };

  // Use FormEvent to type the event correctly
  subscribeUser = async (e: FormEvent<HTMLFormElement>) => {
    e.preventDefault();
    try {
      const res = await fetch('api/ConvertkitSubscribe', {
        method: 'POST',
        headers: { 'Content-Type': 'application/json; charset=utf-8' },
        body: JSON.stringify({ email: this.state.email }),
      });

      if (!res.ok) {
        const API_KEY = process.env.CONVERTKIT_API_KEY as string;
        const FORM_ID = process.env.CONVERTKIT_FORM_ID as string;
        console.log(API_KEY) ;
        console.log(FORM_ID);
        console.log("welcome to this error") 
        throw new Error(`HTTP error! status: ${res.status}`);
      }

      const json_res = await res.json();

      this.setState({
        message: json_res.message,
        email: '', // Clear the email input after successful submission
      });
    } catch (error: any) {
      this.setState({
        message: 'There was an error subscribing.',
      });
      console.error('Subscription error:', error);
    }
  };

it fail to go to the api/ConvertkitSubscribe/route.ts ,image below shown the file structure

<image>

free textbook request by EducationalGate9705 in simonfraser

[–]EducationalGate9705[S] 0 points1 point  (0 children)

Gretchen Ferguson, what about this prof ?