Posts by Vitor Schweder • 131 points
7 posts
-
0
votes1
answer96
viewsQ: Create Mongodb database and user via shell
I need to create database and Mongodb user, but all via shell. I found something about --Eval and --shell, but I couldn’t make it work, I’m trying it that way: mongo mongodb://11.11.123.321:27017…
-
0
votes1
answer69
viewsQ: How to remove external js cache?
I added on a website an external lib that called via inclusion of script, ie a js that made the communication with the services that this company offered. After this inclusion they would add the…
-
1
votes1
answer83
viewsQ: Doubt use of GIT
My question is limited to whether the way I did it is correct to use Git within the company I work for. I know Git is decentralized, but since we have a network local code server I chose to do it…
gitasked Vitor Schweder 131 -
1
votes1
answer356
viewsQ: Configuring git for local network
I have a machine here at the company where the source code is, that would be our local server. We have 2 programmers, who have access to the source that shares this machine. In the GIT settings on…
gitasked Vitor Schweder 131 -
2
votes1
answer57
viewsQ: GIT central repository + external server communication
Good morning I have a question, here in the company where I work we think about creating a shared local server that will be the central repository and all will clone and give the push. So far so…
-
0
votes2
answers438
viewsQ: GET request via AJAX only works by entering the address bar
Good morning, It’s kind of crazy what’s happening, but I’m making a request via AJAX sending a GET and the return is ok, it’s all right, but this return is a url that after the request should allow…
-
8
votes2
answers903
viewsQ: How to force the download of an AWS Bucket S3 object with PHP?
I know how to upload an object to the AWS S3 Bucket this way: try { $oClientAws->putObject(array( 'Bucket' => 'bucket_test', 'Key' => 'fileName.jpg', 'Body' =>…