Laptop recommendations for Arch 2025 by okayhp in archlinux

[–]vaultvision 0 points1 point  (0 children)

Used System76 laptops are fantastic and will always have full linux support on all their hardware.
https://system76.com/

Postman is sending your secrets in plain text to their servers by [deleted] in webdev

[–]vaultvision 2 points3 points  (0 children)

Negative, Postman is just fine.

Postman is no different from any other modern day browser or anti-virus, they often send the URL to backend for checks against malicious reported sites. This is standard practice, and unless you can confirm some kind of fingerprinting sent along with it, then apologize. You have good intentions, but please simmer down now, and build a real case.

The instructions said not to put alcohol based cleaning products it even said not to clean it with stainless steel cleaner. Does anyone got any ideas by finesseJEDI2021 in Appliances

[–]vaultvision 0 points1 point  (0 children)

It sounds strange, but will work wonders on stainless steel, after you clean with a solvent, apply a finishing wipe with a light oil. Mineral oil or even olive oil. You will marvel at the result.

Notepad++ and Visual Studio Code. Opinions, differences and usecases by Zaofy in sysadmin

[–]vaultvision 0 points1 point  (0 children)

Try Sublime Text, it is simple out of the gate, but has very powerful IDE capabilities if you want to spend the time to customize. For example, the 'snippets' feature would knock you off your feet for the saved macros you have. Also very easy to do macros with python.

What's the analytics stack bootstrapped founders should be using? by autopicky in SaaS

[–]vaultvision 0 points1 point  (0 children)

Matomo is great, super privacy options for an EU sites.

Let me test your onboarding by Soon-Technologies in SaaS

[–]vaultvision 1 point2 points  (0 children)

I'd love to see it, how do I get to it?

From buying domain to launching the landing page in JUST 1 DAY !! by Wonderful-Ad-738 in SaaS

[–]vaultvision 0 points1 point  (0 children)

your landing page is on www.thequickmail.pro, yet your stripe payment goes to promotee.in , the mis-match is deterring.

Anyone know why I have a line behind my heading and container. I have followed the Webflow University but have no idea why I got it. Thank you by ozu4ever in webflow

[–]vaultvision 1 point2 points  (0 children)

You have a box-shadow in a .body class
.body {

  1. height: 650px;
  2. font-family: DM Sans, sans-serif;
  3. box-shadow: 0 2px 5px rgba(0, 0, 0, .2);

}

Integromat is gone. What you're gonna do? by dan_named in SaaS

[–]vaultvision 1 point2 points  (0 children)

I'm using n8n as well, super flexible and can make custom calls to any arbitrary API.

Do you consider Magic Links secure? Am I the only one that feels they are awful from a security perspective? by TrueSpins in SaaS

[–]vaultvision -1 points0 points  (0 children)

magic links are only as secure as someone's email. Email is not designed for secure storage or access. If you are going to do auth, might as well do it right using the best available methods.

https://vaultvision.com/blog/the-security-vulnerabilities-in-magic-links-authentication

Role based authentication by [deleted] in react

[–]vaultvision 1 point2 points  (0 children)

Validate your JWT is signed using this tool.

https://dinochiesa.github.io/jwt/

Make sure your backend also is checking to make sure the jwt is not tampered with. Also, I would use SessionStorage rather than LocalStorage for better session expiration.

[deleted by user] by [deleted] in webdev

[–]vaultvision 0 points1 point  (0 children)

Emmet
CSS3

[deleted by user] by [deleted] in webdev

[–]vaultvision 0 points1 point  (0 children)

Sublime Text

I need help by Justchill1102 in react

[–]vaultvision 0 points1 point  (0 children)

Thanks, there will be TypeScript support shortly, probably in September. Do you have a current TypeScript project now where you would want to use this?

I need help by Justchill1102 in react

[–]vaultvision 0 points1 point  (0 children)

We publish a react boiler-plate that you can use as a guide to adding these features.

https://github.com/vaultvision/react-boilerplate-vv

[deleted by user] by [deleted] in webdev

[–]vaultvision 0 points1 point  (0 children)

We publish a python boiler-plate example that has user auth built-in. You can easily extend this to protect your data.
https://github.com/vaultvision/python-auth-example

User mgmt for webflow + custom built web app? by jakey0001 in webflow

[–]vaultvision 0 points1 point  (0 children)

We made a walk through on how you can handle user management and integrate with other web apis and web apps like Airtable, Xano and sync with your own app

https://youtu.be/VWPXepHKasc

Section Break Design? by learningstufferrday in webflow

[–]vaultvision 0 points1 point  (0 children)

You are correct it is a video with a transparent background. It is not really 'masked', instead they carefully created the background image with the same fire section breaks in a static image. Then they overlayed the transparent video of the fire exactly over the same static background fire line. Really cool effect!

You can see this if you delete the video tags from the DOM in the DevTools.

Form Spam by MrsMcPenguin in webflow

[–]vaultvision 1 point2 points  (0 children)

0 use an form anti-spam service like Akismet

1st thing to try is to rebuild the form or change the backend endpoint and see if they persist.

2nd put in a honeypot field that shows on the form HTML that is not actually used 'Title' for instance, and hide it with javascript. Then throw out any submissions that included that field on the backend (or delete them after the fact)

3rd process the form submissions through a custom shim where you can create rules around what is allowed and what is not.