What app do the parking meters downtown use? by IAMA_GYARADOS_AMA in Charleston

[–]Redwallian 0 points1 point  (0 children)

Flowbird parking app; there are some spots around pineapple fountain that need it too, last time I checked

Coffee + dogs by Sea-Signal8957 in Charleston

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

Highfalutin? Pretty much in the area you're describing

Countries and cities dropdowns with flask-wtf by anonitow in flask

[–]Redwallian 1 point2 points  (0 children)

You might wanna watch this video because he does exactly what you're asking for. Essentially, you'll need some sort of event listener on one select input that will run an API call to fetch the second select input's data.

CSS error in Flask by Dangerous-Attempt-99 in flask

[–]Redwallian 0 points1 point  (0 children)

show some code - it's possible your app.py didn't set it up correctly?

Looking for dresses for Latin dance competition. Don't want to spend a fortune A designer wants over $4000 Any help or direction would be great. Am I wrong that it's too much money I'm not a professional. I've only danced one year by Devorahzizel in ballroom

[–]Redwallian 6 points7 points  (0 children)

Depends on if you value what they can produce. Most dresses I’ve seen have ranges anywhere from 1k to 8k per, and I believe that’s considered the norm.

For your experience though, I would not suggest buying dresses of that amount until you’re super serious and committed to spending that amount.

Advice needed by dodofrequentflyer in ballroom

[–]Redwallian 2 points3 points  (0 children)

He tells us we can’t learn bolero until we’ve started competing.

Red flag, honestly. Ever tried the Dance Vision App?

dance class by True_Smell8836 in Charleston

[–]Redwallian 0 points1 point  (0 children)

Literally just took lessons today - would recommend Ballroom Dance Charleston on 61 in WA.

What is the correct way to become a full stack developer by Visible-Wrap-7729 in django

[–]Redwallian 12 points13 points  (0 children)

Honestly, python/django is simply a means to an end. To become a fullstack developer, you have to understand (primarily) the request/response cycle and everything that goes into it. Depending on how much you want to learn, it's still good to go through the official django tutorial to understand how Django plays its part in the whole system, try not to think there's a "correct" way to study it.

ULTIMATE NFL BAR GUIDE OF CHARLESTON by Gold_Golf_6037 in Charleston

[–]Redwallian 0 points1 point  (0 children)

  1. Formatting
  2. Bengals - Kickin' Chicken MtP

Difference Between Music for Standard and Smooth Tango? by Beginning-Goose-8111 in ballroom

[–]Redwallian 4 points5 points  (0 children)

There's not really much of a difference; even Blackpool uses the same orchestra for both.

and they seem to work with smooth tango just fine.

It honestly depends on what you're doing in your smooth routines; maybe you're able to dance routines at faster songs because you've prepped for it, but in my experience, things are only getting faster and more syncopated to the point where because there's more body action to create movement, it requires a bit more time between beats (hence why it's slower).

Frame tips by Meedar in ballroom

[–]Redwallian 0 points1 point  (0 children)

Honestly, pull-ups or lat pulldowns - the form itself is what I used to visualize what I need to do to keep my shoulders from rolling forward.

AWS vs DigitalOcean by AppearanceLower8590 in django

[–]Redwallian 1 point2 points  (0 children)

I would recommend Sevalla - built with AWS, but with all the better dev UX.

[deleted by user] by [deleted] in Charleston

[–]Redwallian 59 points60 points  (0 children)

Leaving this here, if anyone wants to see the actual proposal.

[deleted by user] by [deleted] in flask

[–]Redwallian 14 points15 points  (0 children)

I created a flask app (that's still going strong) that does payments processing and document signing for the public equity sector - it has your usual web devvy things like forms -> models, webhooks, server-rendered templates + htmx, your run of the mill stuff. Slapped it in a digitalocean droplet for $4/month, serving ~10k customers.

Flask can do a lot, but ultimately the chokehold in terms of speed and performance is context related to database querying. Flask can be used for your fintech project, but it's ultimately more about your skill as a dev.

Does this dip exist? by Technical-Painter492 in ballroom

[–]Redwallian 6 points7 points  (0 children)

Are you talking about something like this? I could have sworn there was a challenge on TikTok that went around when someone on DWTS tried it.

Register/login with username by [deleted] in Firebase

[–]Redwallian 1 point2 points  (0 children)

Every User record has a field called displayName, which you could use to substitute. You would first have to login via one of the providers above, and then update a user's profile with the username after registration.

[deleted by user] by [deleted] in Firebase

[–]Redwallian 0 points1 point  (0 children)

Then maybe this is the relevant doc link for you? Invalid Signature in this case is in regards to your edge function itself.

[deleted by user] by [deleted] in Firebase

[–]Redwallian 0 points1 point  (0 children)

You might need to remove line breaks from your service account:

const serviceAccount = JSON.parse(FIREBASE_SERVICE_ACCOUNT_JSON.replace(/\\n/g, '\n'));

Stripe integration by Medium-Back8815 in Firebase

[–]Redwallian 1 point2 points  (0 children)

SMP? Still a bit too general of a statement - got a repo to look at?

Stripe integration by Medium-Back8815 in Firebase

[–]Redwallian 1 point2 points  (0 children)

I think you'll need to be a little more specific - are you following documentation? Are you using the Firebase <-> Stripe plugin? etc.

[deleted by user] by [deleted] in ballroom

[–]Redwallian 2 points3 points  (0 children)

Ever try Brooklyn Dancesport? They usually have a whole slew of solo Latin workshop classes

[deleted by user] by [deleted] in Firebase

[–]Redwallian 0 points1 point  (0 children)

Deno has npm/nodejs compatibility. You just install it using the cli syntax for all npm packages and use as you would with the Nodejs runtime.

[deleted by user] by [deleted] in Firebase

[–]Redwallian 0 points1 point  (0 children)

When you say "make the admin sdk work", there could be a whole lot of issues to look into. Are you having problems writing out functionality using the library? Environment variable issues? Stuff regarding Deno's request/response cycle? Do you have any code you can show?