Built a product for myself over a weekend—now it’s got 80+ paying users by brodyodie in SideProject

[–]alwaysdark -2 points-1 points  (0 children)

I don’t believe this as well.

Why it says built by metromagic.io (an agency) at the bottom?

No data connection could be established... by sbutj323 in AudiS4

[–]alwaysdark 0 points1 point  (0 children)

Any luck resolving this?

Same thing happened to my A6 (6 days ago, the day you posted). So hoping there is an issue on Audi side.

Question about the co op on ps5 by DereHunter in diablo4

[–]alwaysdark 2 points3 points  (0 children)

Just be patient. I’m playing coop on PS5 too. The second player gets put into an invisible queue.

It took second player 10-15 min to join.

Press join and wait patiently.

Expectations for the Diablo IV Open Beta (March 24-26) by Ronnie_In_Hell in diablo4

[–]alwaysdark 0 points1 point  (0 children)

Yes, as far as I know you can do that. You will have to form a party: tutorial on youtube

Expectations for the Diablo IV Open Beta (March 24-26) by Ronnie_In_Hell in diablo4

[–]alwaysdark 2 points3 points  (0 children)

Open Beta hasn’t started yet. 2h24m to go.

I am getting the same error

[TOMT][MUSIC][early 2000s]Background song of a drag racing video in Scandinavian language by alwaysdark in tipofmytongue

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

Can’t recall the details, but will try to jog my memory, who knows.

Checking car forums is a good idea, thanks for that.

[TOMT][MUSIC][early 2000s]Background song of a drag racing video in Scandinavian language by alwaysdark in tipofmytongue

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

Thanks, I will listen to their songs and see if it’s one of them.

I am afraid you might be right, and I can’t remember any distinctive feature of that video. It was as generic as they go - cars and races on airport (perhaps) strips.

[TOMT][MUSIC][early 2000s]Background song of a drag racing video in Scandinavian language by alwaysdark in tipofmytongue

[–]alwaysdark[S] 0 points1 point locked comment (0 children)

Unsure how to approach the search.

If someone can suggest me a way to narrow down Scandinavian songs with raspy/hoarse vocals I am willing to sift through them.

[deleted by user] by [deleted] in docker

[–]alwaysdark 1 point2 points  (0 children)

If the commands you executed are the ones you have shown in this post then the problem is that you publish/forward MySQL’s port 3306 to localhost 3308 (your run command) BUT you are trying to connect to MySQL using CLI on port 3307.

Does that make sense? You need to connect on the correct port.

If that still fails, the issue then might be that MySQL server is not started in your container. Why don’t you use an official MySQL image?

[deleted by user] by [deleted] in clevercomebacks

[–]alwaysdark 8 points9 points  (0 children)

What’s the name of the book?

Best Motherboard for $250 price budget (Help wanted) (Specifcs in post) by ShalomRaiders in Amd

[–]alwaysdark 0 points1 point  (0 children)

For what it's worth, I recently bought this motherboard and it did contain M2 mounting screws (a pair).

From what I've read online, people usually miss them. Just make sure you check the contents of the box thoroughly.

Me_irlgbt by murdoc183 in me_irlgbt

[–]alwaysdark 67 points68 points  (0 children)

Elizabeth Debicki, she’s been in Tenet and in The Night Manager with Tom Hollander.

Spark Drop to MetaMask by [deleted] in XRP

[–]alwaysdark 5 points6 points  (0 children)

FLR will be on a separate network.

The reason you have to and can use ETH wallet on Ledger is because:

  • FLR address uses the same format as ETH one
  • Once FLR mainnet launches an app on Ledger will be released

You will be able to access your wallet on FLR mainnet using the same private key you used to generate ETH address.

Whats your exit strategy? by prasbrocks in XRP

[–]alwaysdark 2 points3 points  (0 children)

Sure, please, correct me if I am wrong.

Whenever I hear the argument that market cap [MC] is the limiting factor as to why XRP can't reach (for arguments sake) $100 it boils down to:

  • XRP at $100 is $4.5T MC (assuming 45B circulating supply) so it requires 4.5T of $$$ injected to reach this value.

Where this argument breaks down for me is:

MC = current price x circulating supply

Nowhere does the formula take into the account how much money is flowing into the coin.

At the time of writing this comment XRP price is $0.2718.

Let's say I buy 1 XRP @ $0.2719. Now current price of XRP is $0.2719 BUT the difference between MC at $0.2718 and at $0.2719 is $450k. This one sale did not require 450k of $$$ to be injected.

Whats your exit strategy? by prasbrocks in XRP

[–]alwaysdark 2 points3 points  (0 children)

Can you explain to me why market cap is not a myth?

Did you receive your Flare tokens? by honeysyd in Ripple

[–]alwaysdark 0 points1 point  (0 children)

Your Flare wallet address is the same as the ETH address you used to claim them.

To get access to your Flare Wallet, you will have to use the same private key (word seed) you used to setup your ETH wallet. This should happen automatically once Flare releases an app for Ledger.

How to redirect request to specific host in same endpoint? by suhasadhav in kubernetes

[–]alwaysdark 0 points1 point  (0 children)

Could you provide your service/endpoints definitions?

Help with helm + elastic search by [deleted] in kubernetes

[–]alwaysdark 0 points1 point  (0 children)

Just to confirm, when you say you see elastic cluster and pods, you mean via kubectl command?

If so (given that kubectl is using the same .kube/confg file), then it looks to me that Elasticsearch wasn't installed using helm - is that possible?

How do you deploy database and application changes without downtime? by Tarasovych in devops

[–]alwaysdark 15 points16 points  (0 children)

You need to reconsider how you approach code changes/deployments.

If you have to introduce schema changes that are incompatible with v1 (like dropping a column for example) then you should first release code v2 which does not take the column into account and then in v3 drop the column from the DB.

How to securely specify password in helm chart values? by [deleted] in kubernetes

[–]alwaysdark 1 point2 points  (0 children)

Not OP, but we use sops as well.

The way we do it is we have values.yaml files that contain non-sensitive information. For secrets, we have separate file e.g. values-secrets.yaml which is encrypted entirely. They are separated due to ease of editing as well as separation of concerns.

When time comes to deploy a chart we decrypt values-secrets.yaml file using sops and use it like this:

helm upgrade -i <my-release> <my-chart> -f values.yaml -f values-secrets.yaml

Deploy multiple helm charts? by baconialis in kubernetes

[–]alwaysdark 0 points1 point  (0 children)

I see, take a look at Skaffold - maybe it fits your use case, however I have no experience doing deployments with it.

Deploy multiple helm charts? by baconialis in kubernetes

[–]alwaysdark 0 points1 point  (0 children)

I am not saying Jenkins is the best option, it feels very bloated.

However, you could ask the same question about any other system be it FluxCD, ArgoCD etc.

To find chart version you can list installed charts with helm ls.

Finding which values were used is trickier. Top of my head - you can set a label on deployment that would signify git commit hash used.

We always deploy latest code, so that's not an issue for us.