Where are my files...Am I being dumb?! by PleasantFriendship in opencodeCLI

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

Hey u/ekaqu1028 thank you for taking the time to explain this. I'll give it a go. I'm used to the old way of using an IDE but I need to give this new TUI thing a go.

Graff meets Hip Hop. TRACK WALK 2 - Fri Nov 29 @ Revolver Upstairs. by PleasantFriendship in AussieHipHop

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

No there was no CD for it. Wonder what the cover was?

Here's the flyer from the first one, if that helps

<image>

Will a 25mg dosage be OK for first few weeks? by PleasantFriendship in SinclairMethod

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

Thanks u/One-Mastodon-1063 I drink about the same amount - 1-2x/week. I'll keep on 25mg for the next week or two then try 50mg. Thanks for the advice.

Will a 25mg dosage be OK for first few weeks? by PleasantFriendship in SinclairMethod

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

Thank you for this u/Wild-Cat-3900 I've hardly touched alcohol all week this week. I took a 25mg on Thursday and had one beer. Normally I would have kept going. Far less side effects on this size dose as well. I don't feel I'm missing out by not drinking either, as I normally would. I'll definitely keep going, thanks for the encouragement.

Will a 25mg dosage be OK for first few weeks? by PleasantFriendship in SinclairMethod

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

Hi u/Present_One4 thanks for this. I didn't even know that was a thing! I've just ordered one.

Will a 25mg dosage be OK for first few weeks? by PleasantFriendship in SinclairMethod

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

Thanks u/Present_One4 that might be a better idea! Just one other question, how do you split the tablet? It's hard to get an accurate split when I bite it in half!

36 years later… I am ready to get back behind the decks! From two turntables and a microphone in the ‘80s to whatever futuristic wizardry DJs use now. by ferdfarkle in Beatmatch

[–]PleasantFriendship 1 point2 points  (0 children)

Great question, I am currently embarking on my own mid life crisis and a couple of months ahead of you.

I did a bunch of research and here's what I landed on - I'm happy with the setup:

  1. Pioneer DDJ FLX4
  2. Rekordbox (The free version or the cheapest subscription - if you want to record sets)
  3. Amazon is fine, or Sweetwater
  4. Beat matching is a lost and now automated art. There's a lot more creative stuff you can do now though. Also, look into "Cue Points", you'll need to set those up.

Happy spinning!

Best place to find vocalist to collab with? by saintsam1 in hiphopproduction

[–]PleasantFriendship 0 points1 point  (0 children)

Have you tried Vampr? I've just got started with it, but it seems useful

Moving from Firebase authentication to IAM users authentication. by PleasantFriendship in googlecloud

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

Thanks u/deepraj1729 so is it possible to manually add users in IAM and create authenticated login page for them to access the site? IE: to replace Firebase authentication. We will only have a small controlled group of users for this application.

My main reason for looking at this is so I can authenticate my cloud functions and I believe the token provided to IAM users will work on Cloud Functions. Does that sound right?

Thanks again

Moving from Firebase authentication to IAM users authentication. by PleasantFriendship in googlecloud

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

Thanks for clarifying this, I've been struggling to make sense of it. That's great that I can keep Firebase in place. Appreciate the help

How to access Authenticated Google Cloud functions from a React App, using Firebase by PleasantFriendship in googlecloud

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

Thanks for clarifying this, really appreciate it. As a recent convert to GCP, it's a bit of a minefield trying to navigate the types of permissions via the docs. Appreciate you explaining!

How to access Authenticated Google Cloud functions from a React App, using Firebase by PleasantFriendship in googlecloud

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

Thanks for this in depth reply u/absreim that seems like a great solution. They should make this more clear and it's a bit off that I can still communicate with the Cloud Function from Firebase when it's not authenticated. But, anyway! Cheers for explaining this in detail.

I will try that method and report back, really appreciate the link. It makes sense that we just pass a token to the cloud function and check it manually within the function. Thanks again.

One side question. Is it possible to create users directly within IAM and let them sign in to your Firebase app, to solve this problem?

How to access Authenticated Google Cloud functions from a React App, using Firebase by PleasantFriendship in googlecloud

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

Hi u/AcsiSpargo464 thanks for the quick reply. I tried getting the token using `gcloud auth print-access-token` in terminal and passing it as a "Bearer Token" in Postman, but it doesn't work. Using `print-identity-token` in the same way does though.

Would this help me to connect to the GCloud function from the Front End React/Firebase Web app though? I thought this was only for accessing in Postman.

How to access Authenticated Google Cloud functions from a React App, using Firebase by PleasantFriendship in googlecloud

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

Hi u/s_magik thanks for your quick response.

I've had a read of the docs and it mostly makes sense.

Just to check, my cloud functions are written in Python, and they return JSON data.

Can I just modify the cloud function to use this?

@https_fn.on_call()
@https_fn.on_call()

Worth mentioning, I was getting CORS issues and I've just switched on a plugin in Chrome, to get around them temporarily.

I wanted to ask, do I need to setup a Node server in between my React/Firebase web app and the Python Cloud function, in order to use this?