In our projet, which has a local, dev and prod environment, we want to deploy a file ourKeystore.p12. This file must be present in those 3 environments, with th
In Julia, how can I check an English word is a meaningful word? Suppose I want to know whether "Hello" is meaningful or not. In Python, one can use the enchant
I am using react-native and I want to get specific data so I used a query, the problem is that it didn't work, but if I remove the where and do an if statement
When I do this: std::vector<int> hello; Everything works great. However, when I make it a vector of references instead: std::vector<int &> h
I am trying to install PostgreSQL with helm chart dependencies in my Kubernetes cluster. But it failed in installation. chart.yml dependencies: - name: postgres
I am trying to create a simple and silly game of cards. For that, I created 4 different classes: Card: class card(): def __init__(self, n
I have char* str1 and char* str2 I wanna concatenate like this res = str1 + str2 strcat(str1, str2) change value of str1, it is not what i need How to get this