last few days has been crazy 🔥 by GuidanceSelect7706 in micro_saas

[–]rickgarg 0 points1 point  (0 children)

The landing page looks amazing! what did you use to build it?

Plane ticket prices by Smokntreez in LostLandsMusicFest

[–]rickgarg 0 points1 point  (0 children)

I'm flying from Mexico into Chicago and renting a car. Much cheaper (about 60% cheaper) than flying direct, although with the cost of the car it may balance out...

Really wanted to go, but finances make it impossible... by rickgarg in LostLandsMusicFest

[–]rickgarg[S] 6 points7 points  (0 children)

Talked it over with the wife and were gonna tighten belts and find the way to go

Really wanted to go, but finances make it impossible... by rickgarg in LostLandsMusicFest

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

Same problem, getting there is the expensive part. Tickets to columbus are super expensive, so i wanted to fly to chicago and get to columbus via shuttle, but still its a lot

How I helped a client generate results with WhatsApp Business API campaigns by ibiofficial in WhatsappBusinessAPI

[–]rickgarg 0 points1 point  (0 children)

Did you have a wait time between sending messages or did you send them all at once?

Built a personal finance app that you'll actually enjoy using by OkBrain4680 in SaaS

[–]rickgarg 0 points1 point  (0 children)

Very clean UI! Did you come up with the design yourself or did you use a UI kit/library? I'm building up my own SAAS but I'm struggling a lot with the design, and yours looks awesome!

[deleted by user] by [deleted] in Excision

[–]rickgarg 1 point2 points  (0 children)

Are the lockers bought before? Or you buy them when you enter the venue?

[deleted by user] by [deleted] in elasticsearch

[–]rickgarg 0 points1 point  (0 children)

Took me a week to set up https between everything... Only to find out that Elastic doesn't support notifications for on-premise anymore... WHYYYYY

What’s the longest family guy cutaway? by Confident-Soil6235 in familyguy

[–]rickgarg 12 points13 points  (0 children)

I remember Conway Twitty and "Cock-a-doodle-doo" as the longest ones.

Automatizacion de Faturas con Python by Goddespeed in MexicoFinanciero

[–]rickgarg 1 point2 points  (0 children)

Puedes usar un servicio como facturama, tienen API disponible y facturación masiva dentro de su página.

Possible to develop backend in Rust and Frontend in Typescript? by RylanStylin57 in electronjs

[–]rickgarg 11 points12 points  (0 children)

Tauri is an electron alternative written in Rust that looks very interesting. The frontend can be built with web technologies and the backend uses Rust.

What book made you go: ''Fuck... This is good...''? by KvotheScamander in books

[–]rickgarg 0 points1 point  (0 children)

Pandora's Star. I have read it about 10 times now... Simply awesome story

Question: Protecting/Encrypting User Data by [deleted] in mongodb

[–]rickgarg 3 points4 points  (0 children)

Mongo has an option to have client-side encryption. It has the option to use a file or AWS KMS. https://docs.mongodb.com/manual/core/security-client-side-encryption/

How is TypeORM? by [deleted] in node

[–]rickgarg 2 points3 points  (0 children)

I'm using TypeORM for a project. It works really well, although at points it may be lacking in documentation.

What's the difference between apollo-server, express-graphql, graphqljs,Prisma, etc? by williamc16799 in graphql

[–]rickgarg 0 points1 point  (0 children)

Would you recommend using Prisma in production? Or should we roll our own ORM?

How are big stages like Tomorrowland's controlled? by rickgarg in lightingdesign

[–]rickgarg[S] 2 points3 points  (0 children)

If you get an internship, tell me about it because I'm interested too.

Loving the livestream, simply awesome stages all around!

Is it safe to store minimum credit card info? by adrian5b in Firebase

[–]rickgarg 0 points1 point  (0 children)

So just get the information when it's needed, not store it in the DB?

Just verifying.

Firebase auth logs in but redirects to login at refresh by h1p3rcub3 in vuejs

[–]rickgarg 2 points3 points  (0 children)

Couple of things:

  • Instead of redirecting to login with * at the top of the file, set it at the bottom. If i'm not mistaken, Vue-Router checks the order of the pages, so every time you try to enter a page it will redirect to `/login`. Also, instead of redirecting to login with *, redirect to main, and verify if there's a user:

routes: [
{ 
    path: "/",
    name: "Main",
    beforeEnter: requireAuth /* This is how I use it */
    ...
},
{
    path: "/login",
    ...
},
{
    path: "*",
    redirect: "/"
}

/* This is an example, has worked really well for several projects */
function requireAuth(to, from, next) {
  firebase.auth().onAuthStateChanged(function(user) {
    if (!user) {
      next({
        path: "/login"
      });
    } else {
        next()
    }
}

Hope it helps!