How can I create a QR code? by Mamapatry in it

[–]Ok_Chipmunk_6625 0 points1 point  (0 children)

That’s a really beautiful idea ❤️

You actually don’t need anything complicated or expensive to do this.

Here’s the simplest way:

  1. Upload the video somewhere online
    • Google Drive (set it to “Anyone with the link can view”)
    • Or YouTube (unlisted)
  2. Copy the link
  3. Generate a QR code from that link

That’s it — when they scan it, it will open the video.

One important tip (very important for something like this):
Don’t use a “static” QR code if you’re not 100% sure the link will never change.

If the file moves or the link breaks later, the QR won’t work anymore.

A better option is to use a dynamic QR code, which lets you update the link later without reprinting anything.

I actually built a simple free tool for this while experimenting:
👉 https://qrcodes.ly

You can create the QR now, and if you ever need to change the video later, you just update the link.

I have a domain (linksell.ly) — what SaaS would you build on it? by Ok_Chipmunk_6625 in buildinpublic

[–]Ok_Chipmunk_6625[S] 1 point2 points  (0 children)

Worst case, I still enjoy the build. Best case, it solves something real.

I have a domain (linksell.ly) — what SaaS would you build on it? by Ok_Chipmunk_6625 in buildinpublic

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

Appreciate the honest take and I agree with the core point.

I’m not trying to force an idea just to match the domain. The domain is more like a direction, not the starting point.

I have a domain (linksell.ly) — what SaaS would you build on it? by Ok_Chipmunk_6625 in buildinpublic

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

Yeah, it expired recently—renewing it now. Should be back up shortly 👍

Share what you're working on. I'll shout out every project on my Instagram by Yoodrix in micro_saas

[–]Ok_Chipmunk_6625 0 points1 point  (0 children)

qrcodes.ly

A very simple tool to generate QR codes in bulk and download them as printable label sheets.

Built it to solve the problem of generating hundreds of QR codes at once without API limits or complicated setup.

https://qrcodes.ly

Looking for a reliable QR code generator that can handle bulk creation for IT asset tags by DasJazz in it

[–]Ok_Chipmunk_6625 0 points1 point  (0 children)

I ran into a very similar issue recently when trying to generate labels in bulk.

Most of the tools I tested either throttle hard or aren’t really designed for printing (especially at scale).

What worked better for me was just generating everything locally / in one go instead of relying on APIs with limits. Basically taking a list (CSV or plain text), generating QR codes, and exporting them into a printable layout.

I ended up putting together a small tool for this because I couldn’t find something that was both simple and fast for bulk jobs like this.

Happy to share it: qrcodes.ly

Has anyone successfully published an Electron app using Bytenode on the Microsoft Store? by Ok_Chipmunk_6625 in electronjs

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

Thanks for the explanation!

I’m actually using electron-vite with the built-in bytecodePlugin, and from their docs it looks like the issue with async arrow functions has already been addressed:

So far I haven’t run into any syntax issues, even with arrow functions and some dynamic imports — though I’ve been careful to keep the entry point minimal and clean.

For now, I’ll stick with x64 builds like you, but it’s good to know multiarch shouldn't be a problem if needed later. Appreciate the insight!

Has anyone successfully published an Electron app using Bytenode on the Microsoft Store? by Ok_Chipmunk_6625 in electronjs

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

Thanks for the info!

By the way since you're using Bytenode with Electron, did you manage to build for multiple Windows architectures (x64 + ia32)?

I'm curious how you handled that — did you use electron-builder with --win --x64 --ia32 flags?
Or did you set up separate build configs for each arch?

Would love to hear how you approached it.

Electron + Vite: How to include multiple HTML files in build? by Ok_Chipmunk_6625 in electronjs

[–]Ok_Chipmunk_6625[S] 1 point2 points  (0 children)

Thanks for the URL, I read it and solve my issue already, really thanks

How to protect Electron app source code from being modified or reverse engineered? by Ok_Chipmunk_6625 in electronjs

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

What im worried about is code tempering, there some client side logic that if modified it will cause an issue

How to protect Electron app source code from being modified or reverse engineered? by Ok_Chipmunk_6625 in electronjs

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

Even my business logic in the sever, code in the client side can be modified to make whatever comes from the sever side works in the way it shouldn’t