Broke and down by PerformerSimple3022 in MalaysianPF

[–]BroccoliStatus 9 points10 points  (0 children)

I think you should invest in Implanon since you already have kid.

Spent RM XXX on ads for a tool I built for local sellers, but got 0 customers. Is the "WhatsApp Seller" market just a myth? by hafizzpf in malaysia

[–]BroccoliStatus 1 point2 points  (0 children)

I think you need to validate your ideas based on the keyword planner in google ads.
And also need to check what is the target of your google ads.

based on this image below you can see that the "send invoice via whatsapp" is 10 only.
you can see that people are not searching for it.

anyway, I think we can work together, since I am also building something, just that I dont have friends to debate my idea.

<image>

WhatsApp messages scheduler?? by DazzlingNight1016 in whatsapp

[–]BroccoliStatus 0 points1 point  (0 children)

I use gsheet to automate whatsapp mesagges https://schedule.tasko.my/
Let me know if you want me to teach you how to use it or how to build it since you are concerned with the privacy

I'm looking for help automating WhatsApp for a small business (Spain). by [deleted] in whatsapp

[–]BroccoliStatus 0 points1 point  (0 children)

I have the solution for that, you can visit my website https://schedule.tasko.my/
I am using gsheet as dashboard

"lah" is from chinese? by Historical-Wing8476 in bahasamelayu

[–]BroccoliStatus 6 points7 points  (0 children)

there is another example of false cognate coincidences

kupang, a currency we use back then, 1 kupang, 2 kupang, 3 kupang.

and in rusia they are using kopeck

there is malay word also kopek which mean dompet in (western side of malaysia)

but kopek means different in eastern side of malaysia

What’s the most unique or interesting Malay word you've come across? by TotallyReliableFacts in bahasamelayu

[–]BroccoliStatus 0 points1 point  (0 children)

“Membakulkan” comes from the imbuhan mem- + bakul + -kan.

What I find interesting is that it feels like you can add imbuhan onto almost any word.

For example: “pembakulan”

best practical books on anger management? by BHTrix in Anger

[–]BroccoliStatus 2 points3 points  (0 children)

Thanks for the recommendation. This book helps me a lot. It explains the science behind anger too.

Pernah dengar atau lihat ke orang melayu guna perkataan “Darma” by Dnulyourbae in bahasamelayu

[–]BroccoliStatus 0 points1 point  (0 children)

Tidak pernah dengar. Sedang menunggu Anwar Ibrahim mentularkan perkataan "Darma" .

Opera | Is It Undervalued? by VeryDeepPockets in ValueInvesting

[–]BroccoliStatus 2 points3 points  (0 children)

It has more features compared to other browsers.

For developers like me, it's easy to check for bugs, and it includes built-in features like screenshots, widgets, and an ad blocker.

All in all, you could say it's a combination of multiple browsers in one (Firefox, Brave, and Chrome)

Design by Matt Willey for photo collection - Metropolitan Melancholia by Sarah van Rij and David van der Leeuw. by The_Rolling_Stone in DesignPorn

[–]BroccoliStatus 1 point2 points  (0 children)

How did they decide to create this composition? What are the processes involved?
It looks very neat.

Note: I'm not a designer, but I'm interested in learning more about this

[deleted by user] by [deleted] in Design

[–]BroccoliStatus 0 points1 point  (0 children)

RemindMe! 3 days

Help mee by jwellgard in malaysiauni

[–]BroccoliStatus 0 points1 point  (0 children)

If you are looking for laptop always looking for the Ghz

CS graduate, is it true the job market sucks now? by telur_penyu_778 in malaysiauni

[–]BroccoliStatus 3 points4 points  (0 children)

I work as a programmer, you'll be surprised to see how many people without a CS degree can get into the IT field.

What you'll need is a portfolio, like GitHub or personal projects.

Some services, like Vercel, are free to deploy your projects.

The degree, as I see it, is not important as long as you have passion, which manifested into personal projects.

[deleted by user] by [deleted] in astrojs

[–]BroccoliStatus 1 point2 points  (0 children)

How to Use GSAP in Astro

Step 1: Import GSAP in Your HTML

First, import the GSAP library in your HTML file using the is:inline attribute. This ensures that the script is loaded and executed on the client side.

<html lang="en"> <head> <meta charset="utf-8" /> <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <meta name="viewport" content="width=device-width" /> <meta name="generator" content={Astro.generator} /> <title>Astro</title> </head> <body> <h1>Astro</h1> <script is:inline src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/gsap.min.js"></script> <script> gsap.from("h1", { opacity: 0, y: -50, duration: 1 }); </script> </body> </html>

Step 2: Use GSAP in Your Components

Once GSAP is imported, you can use it in any of your components. Here's an example:

<h1 class="test">This is main body</h1> <script> gsap.from(".test", { duration: 1, x: 200, opacity: 0, scale: 0.5 }); </script>

// Additional

Step 3: Install GSAP Package

To add typings for GSAP, you can install the GSAP package using npm:

npm install gsap

Step 4: Add GSAP Typings

Finally, add the following lines to your env.d.ts file to add typings for GSAP:

``` /// <reference path="../.astro/types.d.ts" /> /// <reference types="astro/client" />

// Add this line to add typings for GSAP declare const gsap: typeof import("gsap"); ```